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

Side by Side Diff: webrtc/modules/video_coding/codecs/vp8/vp8_impl.h

Issue 2833493003: Don't re-randomize picture_id/tl0_pic_idx when re-initializing internal encoders. (Closed)
Patch Set: Change back TimeMills() -> TimeMicros(). Created 3 years, 7 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 * WEBRTC VP8 wrapper interface 10 * WEBRTC VP8 wrapper interface
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 const bool use_gf_boost_; 93 const bool use_gf_boost_;
94 94
95 EncodedImageCallback* encoded_complete_callback_; 95 EncodedImageCallback* encoded_complete_callback_;
96 VideoCodec codec_; 96 VideoCodec codec_;
97 bool inited_; 97 bool inited_;
98 int64_t timestamp_; 98 int64_t timestamp_;
99 int qp_max_; 99 int qp_max_;
100 int cpu_speed_default_; 100 int cpu_speed_default_;
101 int number_of_cores_; 101 int number_of_cores_;
102 uint32_t rc_max_intra_target_; 102 uint32_t rc_max_intra_target_;
103 std::vector<TemporalLayers*> temporal_layers_; 103 std::vector<std::unique_ptr<TemporalLayers>> temporal_layers_;
104 std::vector<uint16_t> picture_id_; 104 std::vector<uint16_t> picture_id_;
105 std::vector<uint8_t> tl0_pic_idx_;
105 std::vector<bool> key_frame_request_; 106 std::vector<bool> key_frame_request_;
106 std::vector<bool> send_stream_; 107 std::vector<bool> send_stream_;
107 std::vector<int> cpu_speed_; 108 std::vector<int> cpu_speed_;
108 std::vector<vpx_image_t> raw_images_; 109 std::vector<vpx_image_t> raw_images_;
109 std::vector<EncodedImage> encoded_images_; 110 std::vector<EncodedImage> encoded_images_;
110 std::vector<vpx_codec_ctx_t> encoders_; 111 std::vector<vpx_codec_ctx_t> encoders_;
111 std::vector<vpx_codec_enc_cfg_t> configurations_; 112 std::vector<vpx_codec_enc_cfg_t> configurations_;
112 std::vector<vpx_rational_t> downsampling_factors_; 113 std::vector<vpx_rational_t> downsampling_factors_;
113 }; 114 };
114 115
(...skipping 29 matching lines...) Expand all
144 bool inited_; 145 bool inited_;
145 vpx_codec_ctx_t* decoder_; 146 vpx_codec_ctx_t* decoder_;
146 int propagation_cnt_; 147 int propagation_cnt_;
147 int last_frame_width_; 148 int last_frame_width_;
148 int last_frame_height_; 149 int last_frame_height_;
149 bool key_frame_required_; 150 bool key_frame_required_;
150 }; 151 };
151 } // namespace webrtc 152 } // namespace webrtc
152 153
153 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ 154 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc ('k') | webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698