| Index: media/filters/ffmpeg_audio_decoder.cc
|
| diff --git a/media/filters/ffmpeg_audio_decoder.cc b/media/filters/ffmpeg_audio_decoder.cc
|
| index 92c851f98f1b9c623dcc8eab5de5f0524c248308..62c31399670e323d45167eeadefee8b8242349db 100644
|
| --- a/media/filters/ffmpeg_audio_decoder.cc
|
| +++ b/media/filters/ffmpeg_audio_decoder.cc
|
| @@ -41,6 +41,7 @@ FFmpegAudioDecoder::FFmpegAudioDecoder(
|
| const scoped_refptr<base::MessageLoopProxy>& message_loop)
|
| : message_loop_(message_loop),
|
| weak_factory_(this),
|
| + demuxer_stream_(NULL),
|
| codec_context_(NULL),
|
| bits_per_channel_(0),
|
| channel_layout_(CHANNEL_LAYOUT_NONE),
|
| @@ -54,7 +55,7 @@ FFmpegAudioDecoder::FFmpegAudioDecoder(
|
| }
|
|
|
| void FFmpegAudioDecoder::Initialize(
|
| - const scoped_refptr<DemuxerStream>& stream,
|
| + DemuxerStream* stream,
|
| const PipelineStatusCB& status_cb,
|
| const StatisticsCB& statistics_cb) {
|
| DCHECK(message_loop_->BelongsToCurrentThread());
|
|
|