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

Side by Side Diff: media/filters/vpx_video_decoder.h

Issue 2803823003: Query LibVPX for VP9 profile support.
Patch Set: Created 3 years, 8 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
« no previous file with comments | « media/base/mime_util_unittest.cc ('k') | media/filters/vpx_video_decoder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « media/base/mime_util_unittest.cc ('k') | media/filters/vpx_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698