Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: webrtc/modules/video_coding/video_coding_impl.h

Issue 1765443002: Added log messages for important call setup events: first packet sent/received (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Moved first packet logging from rtp_receiver_impl.cc to rtp_receiver_audio/video.cc Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 bool drop_frames_until_keyframe_ GUARDED_BY(process_crit_sect_); 212 bool drop_frames_until_keyframe_ GUARDED_BY(process_crit_sect_);
213 size_t max_nack_list_size_ GUARDED_BY(process_crit_sect_); 213 size_t max_nack_list_size_ GUARDED_BY(process_crit_sect_);
214 214
215 VCMCodecDataBase _codecDataBase GUARDED_BY(_receiveCritSect); 215 VCMCodecDataBase _codecDataBase GUARDED_BY(_receiveCritSect);
216 EncodedImageCallback* pre_decode_image_callback_ GUARDED_BY(_receiveCritSect); 216 EncodedImageCallback* pre_decode_image_callback_ GUARDED_BY(_receiveCritSect);
217 217
218 VCMProcessTimer _receiveStatsTimer; 218 VCMProcessTimer _receiveStatsTimer;
219 VCMProcessTimer _retransmissionTimer; 219 VCMProcessTimer _retransmissionTimer;
220 VCMProcessTimer _keyRequestTimer; 220 VCMProcessTimer _keyRequestTimer;
221 QpParser qp_parser_; 221 QpParser qp_parser_;
222 bool received_first_frame_;
222 }; 223 };
223 224
224 } // namespace vcm 225 } // namespace vcm
225 } // namespace webrtc 226 } // namespace webrtc
226 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ 227 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698