OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
3 // LICENSE file. | 3 // LICENSE file. |
4 | 4 |
5 #include "media/filters/ffmpeg_audio_decoder.h" | 5 #include "media/filters/ffmpeg_audio_decoder.h" |
6 | 6 |
7 namespace media { | 7 namespace media { |
8 | 8 |
9 FFmpegAudioDecoder::FFmpegAudioDecoder() | 9 FFmpegAudioDecoder::FFmpegAudioDecoder() |
10 : DecoderBase<AudioDecoder, Buffer>(NULL) { | 10 : DecoderBase<AudioDecoder, Buffer>(NULL) { |
11 NOTIMPLEMENTED(); | 11 NOTIMPLEMENTED(); |
12 } | 12 } |
13 | 13 |
14 FFmpegAudioDecoder::~FFmpegAudioDecoder() { | 14 FFmpegAudioDecoder::~FFmpegAudioDecoder() { |
15 NOTIMPLEMENTED(); | 15 NOTIMPLEMENTED(); |
16 } | 16 } |
17 | 17 |
18 // static | 18 // static |
19 bool FFmpegAudioDecoder::IsMediaFormatSupported(const MediaFormat* format) { | 19 bool FFmpegAudioDecoder::IsMediaFormatSupported(const MediaFormat& format) { |
20 NOTIMPLEMENTED(); | 20 NOTIMPLEMENTED(); |
21 return false; | 21 return false; |
22 } | 22 } |
23 | 23 |
24 bool FFmpegAudioDecoder::OnInitialize(DemuxerStream* demuxer_stream) { | 24 bool FFmpegAudioDecoder::OnInitialize(DemuxerStream* demuxer_stream) { |
25 NOTIMPLEMENTED(); | 25 NOTIMPLEMENTED(); |
26 return false; | 26 return false; |
27 } | 27 } |
28 | 28 |
29 void FFmpegAudioDecoder::OnDecode(Buffer* input) { | 29 void FFmpegAudioDecoder::OnDecode(Buffer* input) { |
30 NOTIMPLEMENTED(); | 30 NOTIMPLEMENTED(); |
31 } | 31 } |
32 | 32 |
33 } // namespace | 33 } // namespace |
OLD | NEW |