| Index: content/common/gpu/gpu_command_buffer_stub.cc
|
| diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc
|
| index d2f2849b56865d668f65b5b60a4715c1a9b64941..0d65b7243f78d8c19a722f070f8ead272e5fe604 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.cc
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.cc
|
| @@ -553,6 +553,8 @@ void GpuCommandBufferStub::ReportState() {
|
|
|
| void GpuCommandBufferStub::OnCreateVideoDecoder(
|
| media::VideoCodecProfile profile,
|
| + const gfx::Size& frame_size,
|
| + const std::vector<uint8_t>& extra_data,
|
| IPC::Message* reply_message) {
|
| int decoder_route_id = channel_->GenerateRouteID();
|
| GpuCommandBufferMsg_CreateVideoDecoder::WriteReplyParams(
|
| @@ -561,7 +563,7 @@ void GpuCommandBufferStub::OnCreateVideoDecoder(
|
| new GpuVideoDecodeAccelerator(this, decoder_route_id, this);
|
| video_decoders_.AddWithID(decoder, decoder_route_id);
|
| channel_->AddRoute(decoder_route_id, decoder);
|
| - decoder->Initialize(profile, reply_message);
|
| + decoder->Initialize(profile, frame_size, extra_data, reply_message);
|
| }
|
|
|
| void GpuCommandBufferStub::OnDestroyVideoDecoder(int decoder_route_id) {
|
|
|