| Index: content/renderer/media/rtc_video_decoder.cc
|
| diff --git a/content/renderer/media/rtc_video_decoder.cc b/content/renderer/media/rtc_video_decoder.cc
|
| index 0e9086fdd5fe9a11785444a14fe3ab0275056463..5195e380f0fc2c8864a90b5288810165778382d6 100644
|
| --- a/content/renderer/media/rtc_video_decoder.cc
|
| +++ b/content/renderer/media/rtc_video_decoder.cc
|
| @@ -291,11 +291,6 @@ int32_t RTCVideoDecoder::Reset() {
|
| return WEBRTC_VIDEO_CODEC_OK;
|
| }
|
|
|
| -void RTCVideoDecoder::NotifyInitializeDone() {
|
| - DVLOG(2) << "NotifyInitializeDone";
|
| - NOTREACHED();
|
| -}
|
| -
|
| void RTCVideoDecoder::ProvidePictureBuffers(uint32 count,
|
| const gfx::Size& size,
|
| uint32 texture_target) {
|
| @@ -672,7 +667,7 @@ void RTCVideoDecoder::ReusePictureBuffer(
|
| void RTCVideoDecoder::CreateVDA(media::VideoCodecProfile profile,
|
| base::WaitableEvent* waiter) {
|
| DCHECK(vda_task_runner_->BelongsToCurrentThread());
|
| - vda_ = factories_->CreateVideoDecodeAccelerator(profile);
|
| + vda_ = factories_->CreateVideoDecodeAccelerator();
|
| if (vda_ && !vda_->Initialize(profile, this))
|
| vda_.release()->Destroy();
|
| waiter->Signal();
|
|
|