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

Side by Side Diff: media/mojo/services/mojo_video_decoder.h

Issue 1800953002: Add MojoVideoDecoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanups. Created 4 years, 9 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_MOJO_SERVICES_MOJO_AUDIO_DECODER_H_ 5 #ifndef MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_H_
6 #define MEDIA_MOJO_SERVICES_MOJO_AUDIO_DECODER_H_ 6 #define MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "media/base/audio_decoder.h" 10 #include "media/base/video_decoder.h"
11 11
12 namespace base { 12 namespace base {
13 class SingleThreadTaskRunner; 13 class SingleThreadTaskRunner;
14 } 14 }
15 15
16 namespace media { 16 namespace media {
17 17
18 // An AudioDecoder that proxies to a interfaces::AudioDecoder. 18 // A VideoDecoder that proxies to a interfaces::VideoDecoder.
xhwang 2016/03/15 05:13:18 s/a/an, please help fix the audio one as well. tha
sandersd (OOO until July 31) 2016/03/15 18:31:02 Done.
19 class MojoAudioDecoder : public AudioDecoder { 19 class MojoVideoDecoder : public VideoDecoder {
20 public: 20 public:
21 MojoAudioDecoder(); 21 MojoVideoDecoder();
22 ~MojoAudioDecoder() final; 22 ~MojoVideoDecoder() final;
23 23
24 // AudioDecoder implementation. 24 // VideoDecoder implementation.
25 std::string GetDisplayName() const final; 25 std::string GetDisplayName() const final;
26 void Initialize(const AudioDecoderConfig& config, 26 void Initialize(const VideoDecoderConfig& config,
27 bool low_delay,
27 CdmContext* cdm_context, 28 CdmContext* cdm_context,
28 const InitCB& init_cb, 29 const InitCB& init_cb,
29 const OutputCB& output_cb) final; 30 const OutputCB& output_cb) final;
30 void Decode(const scoped_refptr<DecoderBuffer>& buffer, 31 void Decode(const scoped_refptr<DecoderBuffer>& buffer,
31 const DecodeCB& decode_cb) final; 32 const DecodeCB& decode_cb) final;
32 void Reset(const base::Closure& closure) final; 33 void Reset(const base::Closure& closure) final;
33 bool NeedsBitstreamConversion() const final; 34 bool NeedsBitstreamConversion() const final;
35 bool CanReadWithoutStalling() const final;
36 int GetMaxDecodeRequests() const final;
34 37
35 private: 38 private:
36 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; 39 scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
37 40
38 DISALLOW_COPY_AND_ASSIGN(MojoAudioDecoder); 41 DISALLOW_COPY_AND_ASSIGN(MojoVideoDecoder);
39 }; 42 };
40 43
41 } // namespace media 44 } // namespace media
42 45
43 #endif // MEDIA_MOJO_SERVICES_MOJO_AUDIO_DECODER_H_ 46 #endif // MEDIA_MOJO_SERVICES_MOJO_VIDEO_DECODER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698