| Index: media/filters/vpx_video_decoder.cc
|
| diff --git a/media/filters/vpx_video_decoder.cc b/media/filters/vpx_video_decoder.cc
|
| index 79a57f934c8af93314150444b5c50f546bb0c365..3e111cdd6986813d451f17d8d79070becdcf5dbf 100644
|
| --- a/media/filters/vpx_video_decoder.cc
|
| +++ b/media/filters/vpx_video_decoder.cc
|
| @@ -61,6 +61,7 @@ VpxVideoDecoder::VpxVideoDecoder(
|
| : message_loop_(message_loop),
|
| weak_factory_(this),
|
| state_(kUninitialized),
|
| + demuxer_stream_(NULL),
|
| vpx_codec_(NULL),
|
| vpx_codec_alpha_(NULL) {
|
| }
|
| @@ -71,7 +72,7 @@ VpxVideoDecoder::~VpxVideoDecoder() {
|
| }
|
|
|
| void VpxVideoDecoder::Initialize(
|
| - const scoped_refptr<DemuxerStream>& stream,
|
| + DemuxerStream* stream,
|
| const PipelineStatusCB& status_cb,
|
| const StatisticsCB& statistics_cb) {
|
| DCHECK(message_loop_->BelongsToCurrentThread());
|
|
|