| Index: media/filters/vpx_video_decoder.h
|
| diff --git a/media/filters/vpx_video_decoder.h b/media/filters/vpx_video_decoder.h
|
| index b003248f40c0d65c29065364969e7abc226320af..28f2e85095ace6ee8d1378c25e4796af538b42d1 100644
|
| --- a/media/filters/vpx_video_decoder.h
|
| +++ b/media/filters/vpx_video_decoder.h
|
| @@ -27,7 +27,7 @@ class MEDIA_EXPORT VpxVideoDecoder : public VideoDecoder {
|
| virtual ~VpxVideoDecoder();
|
|
|
| // VideoDecoder implementation.
|
| - virtual void Initialize(const scoped_refptr<DemuxerStream>& stream,
|
| + virtual void Initialize(DemuxerStream* stream,
|
| const PipelineStatusCB& status_cb,
|
| const StatisticsCB& statistics_cb) OVERRIDE;
|
| virtual void Read(const ReadCB& read_cb) OVERRIDE;
|
| @@ -76,7 +76,7 @@ class MEDIA_EXPORT VpxVideoDecoder : public VideoDecoder {
|
| base::Closure reset_cb_;
|
|
|
| // Pointer to the demuxer stream that will feed us compressed buffers.
|
| - scoped_refptr<DemuxerStream> demuxer_stream_;
|
| + DemuxerStream* demuxer_stream_;
|
|
|
| vpx_codec_ctx* vpx_codec_;
|
| vpx_codec_ctx* vpx_codec_alpha_;
|
|
|