| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_FILTERS_VPX_VIDEO_DECODER_H_ | 5 #ifndef MEDIA_FILTERS_VPX_VIDEO_DECODER_H_ |
| 6 #define MEDIA_FILTERS_VPX_VIDEO_DECODER_H_ | 6 #define MEDIA_FILTERS_VPX_VIDEO_DECODER_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/threading/thread_checker.h" | 10 #include "base/threading/thread_checker.h" |
| 11 #include "media/base/decode_capabilities.h" |
| 11 #include "media/base/demuxer_stream.h" | 12 #include "media/base/demuxer_stream.h" |
| 12 #include "media/base/video_decoder.h" | 13 #include "media/base/video_decoder.h" |
| 13 #include "media/base/video_decoder_config.h" | 14 #include "media/base/video_decoder_config.h" |
| 14 #include "media/base/video_frame.h" | 15 #include "media/base/video_frame.h" |
| 15 #include "media/base/video_frame_pool.h" | 16 #include "media/base/video_frame_pool.h" |
| 16 | 17 |
| 17 struct vpx_codec_ctx; | 18 struct vpx_codec_ctx; |
| 18 struct vpx_image; | 19 struct vpx_image; |
| 19 | 20 |
| 20 namespace base { | 21 namespace base { |
| 21 class SingleThreadTaskRunner; | 22 class SingleThreadTaskRunner; |
| 22 } | 23 } |
| 23 | 24 |
| 24 namespace media { | 25 namespace media { |
| 25 | 26 |
| 26 // Libvpx video decoder wrapper. | 27 // Libvpx video decoder wrapper. |
| 27 // Note: VpxVideoDecoder accepts only YV12A VP8 content or VP9 content. This is | 28 // Note: VpxVideoDecoder accepts only YV12A VP8 content or VP9 content. This is |
| 28 // done to avoid usurping FFmpeg for all VP8 decoding, because the FFmpeg VP8 | 29 // done to avoid usurping FFmpeg for all VP8 decoding, because the FFmpeg VP8 |
| 29 // decoder is faster than the libvpx VP8 decoder. | 30 // decoder is faster than the libvpx VP8 decoder. |
| 30 // Alpha channel, if any, is sent in the DecoderBuffer's side_data() as a frame | 31 // Alpha channel, if any, is sent in the DecoderBuffer's side_data() as a frame |
| 31 // on its own of which the Y channel is taken [1]. | 32 // on its own of which the Y channel is taken [1]. |
| 32 // [1] http://wiki.webmproject.org/alpha-channel | 33 // [1] http://wiki.webmproject.org/alpha-channel |
| 33 class MEDIA_EXPORT VpxVideoDecoder : public VideoDecoder { | 34 class MEDIA_EXPORT VpxVideoDecoder : public VideoDecoder { |
| 34 public: | 35 public: |
| 35 VpxVideoDecoder(); | 36 VpxVideoDecoder(); |
| 36 ~VpxVideoDecoder() override; | 37 ~VpxVideoDecoder() override; |
| 37 | 38 |
| 39 static bool IsVideoConfigSupported(const VideoConfig& config); |
| 40 |
| 38 // VideoDecoder implementation. | 41 // VideoDecoder implementation. |
| 39 std::string GetDisplayName() const override; | 42 std::string GetDisplayName() const override; |
| 40 void Initialize(const VideoDecoderConfig& config, | 43 void Initialize(const VideoDecoderConfig& config, |
| 41 bool low_delay, | 44 bool low_delay, |
| 42 CdmContext* cdm_context, | 45 CdmContext* cdm_context, |
| 43 const InitCB& init_cb, | 46 const InitCB& init_cb, |
| 44 const OutputCB& output_cb) override; | 47 const OutputCB& output_cb) override; |
| 45 void Decode(const scoped_refptr<DecoderBuffer>& buffer, | 48 void Decode(const scoped_refptr<DecoderBuffer>& buffer, |
| 46 const DecodeCB& decode_cb) override; | 49 const DecodeCB& decode_cb) override; |
| 47 void Reset(const base::Closure& closure) override; | 50 void Reset(const base::Closure& closure) override; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 scoped_refptr<base::SingleThreadTaskRunner> offload_task_runner_; | 116 scoped_refptr<base::SingleThreadTaskRunner> offload_task_runner_; |
| 114 | 117 |
| 115 VideoFramePool frame_pool_; | 118 VideoFramePool frame_pool_; |
| 116 | 119 |
| 117 DISALLOW_COPY_AND_ASSIGN(VpxVideoDecoder); | 120 DISALLOW_COPY_AND_ASSIGN(VpxVideoDecoder); |
| 118 }; | 121 }; |
| 119 | 122 |
| 120 } // namespace media | 123 } // namespace media |
| 121 | 124 |
| 122 #endif // MEDIA_FILTERS_VPX_VIDEO_DECODER_H_ | 125 #endif // MEDIA_FILTERS_VPX_VIDEO_DECODER_H_ |
| OLD | NEW |