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

Side by Side Diff: media/filters/ffmpeg_audio_decoder.cc

Issue 42635: Lots of files touched for a very simple change. Everywhere we used a const M... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 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 | Annotate | Revision Log
« no previous file with comments | « media/filters/ffmpeg_audio_decoder.h ('k') | media/filters/ffmpeg_demuxer.h » ('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) 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
OLDNEW
« no previous file with comments | « media/filters/ffmpeg_audio_decoder.h ('k') | media/filters/ffmpeg_demuxer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698