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

Side by Side Diff: webrtc/test/configurable_frame_size_encoder.h

Issue 2510583002: Reland #2 of Issue 2434073003: Extract bitrate allocation ... (Closed)
Patch Set: Addressed comments Created 4 years, 1 month 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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 21 matching lines...) Expand all
32 const CodecSpecificInfo* codec_specific_info, 32 const CodecSpecificInfo* codec_specific_info,
33 const std::vector<FrameType>* frame_types) override; 33 const std::vector<FrameType>* frame_types) override;
34 34
35 int32_t RegisterEncodeCompleteCallback( 35 int32_t RegisterEncodeCompleteCallback(
36 EncodedImageCallback* callback) override; 36 EncodedImageCallback* callback) override;
37 37
38 int32_t Release() override; 38 int32_t Release() override;
39 39
40 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override; 40 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override;
41 41
42 int32_t SetRates(uint32_t new_bit_rate, uint32_t frame_rate) override; 42 int32_t SetRateAllocation(const BitrateAllocation& allocation,
43 uint32_t framerate) override;
43 44
44 int32_t SetPeriodicKeyFrames(bool enable) override; 45 int32_t SetPeriodicKeyFrames(bool enable) override;
45 46
46 int32_t SetFrameSize(size_t size); 47 int32_t SetFrameSize(size_t size);
47 48
48 private: 49 private:
49 EncodedImageCallback* callback_; 50 EncodedImageCallback* callback_;
50 const size_t max_frame_size_; 51 const size_t max_frame_size_;
51 size_t current_frame_size_; 52 size_t current_frame_size_;
52 std::unique_ptr<uint8_t[]> buffer_; 53 std::unique_ptr<uint8_t[]> buffer_;
53 }; 54 };
54 55
55 } // namespace test 56 } // namespace test
56 } // namespace webrtc 57 } // namespace webrtc
57 58
58 #endif // WEBRTC_TEST_CONFIGURABLE_FRAME_SIZE_ENCODER_H_ 59 #endif // WEBRTC_TEST_CONFIGURABLE_FRAME_SIZE_ENCODER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/video_sender_unittest.cc ('k') | webrtc/test/configurable_frame_size_encoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698