| Index: media/filters/ffmpeg_audio_decoder.h
|
| diff --git a/media/filters/ffmpeg_audio_decoder.h b/media/filters/ffmpeg_audio_decoder.h
|
| index ea3bc4659562d0d8ce718d73a0559a1855d6119f..89360220f3689122f4458e4bf0447a009d59cf10 100644
|
| --- a/media/filters/ffmpeg_audio_decoder.h
|
| +++ b/media/filters/ffmpeg_audio_decoder.h
|
| @@ -12,6 +12,7 @@
|
| #include "base/time/time.h"
|
| #include "media/base/audio_decoder.h"
|
| #include "media/base/demuxer_stream.h"
|
| +#include "media/base/media_log.h"
|
| #include "media/base/sample_format.h"
|
| #include "media/ffmpeg/ffmpeg_deleters.h"
|
|
|
| @@ -29,8 +30,9 @@ class DecoderBuffer;
|
|
|
| class MEDIA_EXPORT FFmpegAudioDecoder : public AudioDecoder {
|
| public:
|
| - explicit FFmpegAudioDecoder(
|
| - const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
|
| + FFmpegAudioDecoder(
|
| + const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
|
| + const LogCB& log_cb);
|
| virtual ~FFmpegAudioDecoder();
|
|
|
| // AudioDecoder implementation.
|
| @@ -87,6 +89,8 @@ class MEDIA_EXPORT FFmpegAudioDecoder : public AudioDecoder {
|
| // them up.
|
| std::list<scoped_refptr<AudioBuffer> > queued_audio_;
|
|
|
| + LogCB log_cb_;
|
| +
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(FFmpegAudioDecoder);
|
| };
|
|
|
|
|