| OLD | NEW |
| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 bool drop_frames_until_keyframe_ GUARDED_BY(process_crit_sect_); | 209 bool drop_frames_until_keyframe_ GUARDED_BY(process_crit_sect_); |
| 210 size_t max_nack_list_size_ GUARDED_BY(process_crit_sect_); | 210 size_t max_nack_list_size_ GUARDED_BY(process_crit_sect_); |
| 211 | 211 |
| 212 VCMCodecDataBase _codecDataBase GUARDED_BY(_receiveCritSect); | 212 VCMCodecDataBase _codecDataBase GUARDED_BY(_receiveCritSect); |
| 213 EncodedImageCallback* pre_decode_image_callback_ GUARDED_BY(_receiveCritSect); | 213 EncodedImageCallback* pre_decode_image_callback_ GUARDED_BY(_receiveCritSect); |
| 214 | 214 |
| 215 VCMProcessTimer _receiveStatsTimer; | 215 VCMProcessTimer _receiveStatsTimer; |
| 216 VCMProcessTimer _retransmissionTimer; | 216 VCMProcessTimer _retransmissionTimer; |
| 217 VCMProcessTimer _keyRequestTimer; | 217 VCMProcessTimer _keyRequestTimer; |
| 218 QpParser qp_parser_; | 218 QpParser qp_parser_; |
| 219 bool received_first_frame_; |
| 219 }; | 220 }; |
| 220 | 221 |
| 221 } // namespace vcm | 222 } // namespace vcm |
| 222 } // namespace webrtc | 223 } // namespace webrtc |
| 223 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ | 224 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ |
| OLD | NEW |