| Index: media/filters/gpu_video_decoder.cc
|
| diff --git a/media/filters/gpu_video_decoder.cc b/media/filters/gpu_video_decoder.cc
|
| index 54845214bb138195a69ba075b5582318230d2f2f..11bfc4d0a5292adc9f7b03a75b16948391584df8 100644
|
| --- a/media/filters/gpu_video_decoder.cc
|
| +++ b/media/filters/gpu_video_decoder.cc
|
| @@ -190,7 +190,7 @@ void GpuVideoDecoder::Initialize(const VideoDecoderConfig& config,
|
| return;
|
| }
|
|
|
| - vda_ = factories_->CreateVideoDecodeAccelerator(config.profile()).Pass();
|
| + vda_ = factories_->CreateVideoDecodeAccelerator().Pass();
|
| if (!vda_ || !vda_->Initialize(config.profile(), this)) {
|
| status_cb.Run(DECODER_ERROR_NOT_SUPPORTED);
|
| return;
|
| @@ -349,10 +349,6 @@ bool GpuVideoDecoder::CanReadWithoutStalling() const {
|
| available_pictures_ > 0 || !ready_video_frames_.empty();
|
| }
|
|
|
| -void GpuVideoDecoder::NotifyInitializeDone() {
|
| - NOTREACHED() << "GpuVideoDecodeAcceleratorHost::Initialize is synchronous!";
|
| -}
|
| -
|
| void GpuVideoDecoder::ProvidePictureBuffers(uint32 count,
|
| const gfx::Size& size,
|
| uint32 texture_target) {
|
|
|