| Index: content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| diff --git a/content/common/gpu/media/gpu_video_decode_accelerator.cc b/content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| index 6d9b17f4567bf803acb024e8dae842cdafc10227..5b2ef471d3460792ba192ace60572493893cfa0c 100644
|
| --- a/content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| +++ b/content/common/gpu/media/gpu_video_decode_accelerator.cc
|
| @@ -110,11 +110,9 @@ void GpuVideoDecodeAccelerator::OnChannelError() {
|
| }
|
|
|
| void GpuVideoDecodeAccelerator::ProvidePictureBuffers(
|
| - uint32 requested_num_of_buffers,
|
| - const gfx::Size& dimensions,
|
| - media::VideoDecodeAccelerator::MemoryType type) {
|
| + uint32 requested_num_of_buffers, const gfx::Size& dimensions) {
|
| if (!Send(new AcceleratedVideoDecoderHostMsg_ProvidePictureBuffers(
|
| - host_route_id_, requested_num_of_buffers, dimensions, type))) {
|
| + host_route_id_, requested_num_of_buffers, dimensions))) {
|
| LOG(ERROR) << "Send(AcceleratedVideoDecoderHostMsg_ProvidePictureBuffers) "
|
| << "failed";
|
| }
|
| @@ -135,9 +133,7 @@ void GpuVideoDecodeAccelerator::PictureReady(
|
| if (!Send(new AcceleratedVideoDecoderHostMsg_PictureReady(
|
| host_route_id_,
|
| picture.picture_buffer_id(),
|
| - picture.bitstream_buffer_id(),
|
| - picture.visible_size(),
|
| - picture.decoded_size()))) {
|
| + picture.bitstream_buffer_id()))) {
|
| LOG(ERROR) << "Send(AcceleratedVideoDecoderHostMsg_PictureReady) failed";
|
| }
|
| }
|
|
|