| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ |
| OLD | NEW |