| Index: content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| diff --git a/content/common/gpu/client/gpu_video_decode_accelerator_host.cc b/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| index 8b714b9e19d34dedfddaff1eff60f277e7d24401..b57c7e87eb668f181bd4f714ea4c72775370cc97 100644
|
| --- a/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| +++ b/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
|
| @@ -230,12 +230,13 @@ void GpuVideoDecodeAcceleratorHost::OnDismissPictureBuffer(
|
| client_->DismissPictureBuffer(picture_buffer_id);
|
| }
|
|
|
| -void GpuVideoDecodeAcceleratorHost::OnPictureReady(
|
| - int32 picture_buffer_id, int32 bitstream_buffer_id) {
|
| +void GpuVideoDecodeAcceleratorHost::OnPictureReady(int32 picture_buffer_id,
|
| + int32 bitstream_buffer_id,
|
| + const gfx::Size& size) {
|
| DCHECK(CalledOnValidThread());
|
| if (!client_)
|
| return;
|
| - media::Picture picture(picture_buffer_id, bitstream_buffer_id);
|
| + media::Picture picture(picture_buffer_id, bitstream_buffer_id, size);
|
| client_->PictureReady(picture);
|
| }
|
|
|
|
|