OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 int Decode(const EncodedImage& input_image, | 142 int Decode(const EncodedImage& input_image, |
143 bool missing_frames, | 143 bool missing_frames, |
144 const RTPFragmentationHeader* fragmentation, | 144 const RTPFragmentationHeader* fragmentation, |
145 const CodecSpecificInfo* codec_specific_info, | 145 const CodecSpecificInfo* codec_specific_info, |
146 int64_t /*render_time_ms*/) override; | 146 int64_t /*render_time_ms*/) override; |
147 | 147 |
148 int RegisterDecodeCompleteCallback(DecodedImageCallback* callback) override; | 148 int RegisterDecodeCompleteCallback(DecodedImageCallback* callback) override; |
149 | 149 |
150 int Release() override; | 150 int Release() override; |
151 | 151 |
152 int Reset() override; | |
153 | |
154 const char* ImplementationName() const override; | 152 const char* ImplementationName() const override; |
155 | 153 |
156 private: | 154 private: |
157 int ReturnFrame(const vpx_image_t* img, uint32_t timeStamp); | 155 int ReturnFrame(const vpx_image_t* img, uint32_t timeStamp); |
158 | 156 |
159 // Memory pool used to share buffers between libvpx and webrtc. | 157 // Memory pool used to share buffers between libvpx and webrtc. |
160 Vp9FrameBufferPool frame_buffer_pool_; | 158 Vp9FrameBufferPool frame_buffer_pool_; |
161 DecodedImageCallback* decode_complete_callback_; | 159 DecodedImageCallback* decode_complete_callback_; |
162 bool inited_; | 160 bool inited_; |
163 vpx_codec_ctx_t* decoder_; | 161 vpx_codec_ctx_t* decoder_; |
164 VideoCodec codec_; | 162 VideoCodec codec_; |
165 bool key_frame_required_; | 163 bool key_frame_required_; |
166 }; | 164 }; |
167 } // namespace webrtc | 165 } // namespace webrtc |
168 | 166 |
169 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP9_VP9_IMPL_H_ | 167 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP9_VP9_IMPL_H_ |
OLD | NEW |