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 * WEBRTC VP8 wrapper interface | 10 * WEBRTC VP8 wrapper interface |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 #include "webrtc/common_video/include/i420_buffer_pool.h" | 26 #include "webrtc/common_video/include/i420_buffer_pool.h" |
27 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 27 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
28 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" | 28 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" |
29 #include "webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.h" | 29 #include "webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.h" |
30 #include "webrtc/modules/video_coding/utility/quality_scaler.h" | 30 #include "webrtc/modules/video_coding/utility/quality_scaler.h" |
31 #include "webrtc/video_frame.h" | 31 #include "webrtc/video_frame.h" |
32 | 32 |
33 namespace webrtc { | 33 namespace webrtc { |
34 | 34 |
| 35 class SimulcastRateAllocator; |
35 class TemporalLayers; | 36 class TemporalLayers; |
36 | 37 |
37 class VP8EncoderImpl : public VP8Encoder { | 38 class VP8EncoderImpl : public VP8Encoder { |
38 public: | 39 public: |
39 VP8EncoderImpl(); | 40 VP8EncoderImpl(); |
40 | 41 |
41 virtual ~VP8EncoderImpl(); | 42 virtual ~VP8EncoderImpl(); |
42 | 43 |
43 int Release() override; | 44 int Release() override; |
44 | 45 |
45 int InitEncode(const VideoCodec* codec_settings, | 46 int InitEncode(const VideoCodec* codec_settings, |
46 int number_of_cores, | 47 int number_of_cores, |
47 size_t max_payload_size) override; | 48 size_t max_payload_size) override; |
48 | 49 |
49 int Encode(const VideoFrame& input_image, | 50 int Encode(const VideoFrame& input_image, |
50 const CodecSpecificInfo* codec_specific_info, | 51 const CodecSpecificInfo* codec_specific_info, |
51 const std::vector<FrameType>* frame_types) override; | 52 const std::vector<FrameType>* frame_types) override; |
52 | 53 |
53 int RegisterEncodeCompleteCallback(EncodedImageCallback* callback) override; | 54 int RegisterEncodeCompleteCallback(EncodedImageCallback* callback) override; |
54 | 55 |
55 int SetChannelParameters(uint32_t packet_loss, int64_t rtt) override; | 56 int SetChannelParameters(uint32_t packet_loss, int64_t rtt) override; |
56 | 57 |
57 int SetRateAllocation(const BitrateAllocation& bitrate, | 58 int SetRates(uint32_t new_bitrate_kbit, uint32_t frame_rate) override; |
58 uint32_t new_framerate) override; | |
59 | 59 |
60 void OnDroppedFrame() override; | 60 void OnDroppedFrame() override; |
61 | 61 |
62 const char* ImplementationName() const override; | 62 const char* ImplementationName() const override; |
63 | 63 |
64 private: | 64 private: |
65 void SetupTemporalLayers(int num_streams, | 65 void SetupTemporalLayers(int num_streams, |
66 int num_temporal_layers, | 66 int num_temporal_layers, |
67 const VideoCodec& codec); | 67 const VideoCodec& codec); |
68 | 68 |
(...skipping 18 matching lines...) Expand all Loading... |
87 int GetEncodedPartitions(const VideoFrame& input_image, | 87 int GetEncodedPartitions(const VideoFrame& input_image, |
88 bool only_predicting_from_key_frame); | 88 bool only_predicting_from_key_frame); |
89 | 89 |
90 // Set the stream state for stream |stream_idx|. | 90 // Set the stream state for stream |stream_idx|. |
91 void SetStreamState(bool send_stream, int stream_idx); | 91 void SetStreamState(bool send_stream, int stream_idx); |
92 | 92 |
93 uint32_t MaxIntraTarget(uint32_t optimal_buffer_size); | 93 uint32_t MaxIntraTarget(uint32_t optimal_buffer_size); |
94 | 94 |
95 EncodedImageCallback* encoded_complete_callback_; | 95 EncodedImageCallback* encoded_complete_callback_; |
96 VideoCodec codec_; | 96 VideoCodec codec_; |
| 97 std::unique_ptr<SimulcastRateAllocator> rate_allocator_; |
97 bool inited_; | 98 bool inited_; |
98 int64_t timestamp_; | 99 int64_t timestamp_; |
99 bool feedback_mode_; | 100 bool feedback_mode_; |
100 int qp_max_; | 101 int qp_max_; |
101 int cpu_speed_default_; | 102 int cpu_speed_default_; |
102 int number_of_cores_; | 103 int number_of_cores_; |
103 uint32_t rc_max_intra_target_; | 104 uint32_t rc_max_intra_target_; |
104 int token_partitions_; | 105 int token_partitions_; |
105 ReferencePictureSelection rps_; | 106 ReferencePictureSelection rps_; |
106 std::vector<TemporalLayers*> temporal_layers_; | 107 std::vector<TemporalLayers*> temporal_layers_; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 int image_format_; | 162 int image_format_; |
162 vpx_ref_frame_t* ref_frame_; | 163 vpx_ref_frame_t* ref_frame_; |
163 int propagation_cnt_; | 164 int propagation_cnt_; |
164 int last_frame_width_; | 165 int last_frame_width_; |
165 int last_frame_height_; | 166 int last_frame_height_; |
166 bool key_frame_required_; | 167 bool key_frame_required_; |
167 }; // end of VP8DecoderImpl class | 168 }; // end of VP8DecoderImpl class |
168 } // namespace webrtc | 169 } // namespace webrtc |
169 | 170 |
170 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ | 171 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ |
OLD | NEW |