| Index: media/gpu/ipc/service/gpu_video_decode_accelerator.h
|
| diff --git a/media/gpu/ipc/service/gpu_video_decode_accelerator.h b/media/gpu/ipc/service/gpu_video_decode_accelerator.h
|
| index 7165477b5ec7b855256da1b49168c217fc0829bf..c8701add12933001ae6b21b7c032eb8200a93a16 100644
|
| --- a/media/gpu/ipc/service/gpu_video_decode_accelerator.h
|
| +++ b/media/gpu/ipc/service/gpu_video_decode_accelerator.h
|
| @@ -94,7 +94,10 @@ class GpuVideoDecodeAccelerator
|
| void OnDecode(const BitstreamBuffer& bitstream_buffer);
|
| void OnAssignPictureBuffers(
|
| const std::vector<int32_t>& buffer_ids,
|
| - const std::vector<PictureBuffer::TextureIds>& texture_ids);
|
| + const std::vector<PictureBuffer::TextureIds>& texture_ids,
|
| + uint32_t texture_target,
|
| + VideoPixelFormat pixel_format,
|
| + const gfx::Size& dimensions);
|
| void OnReusePictureBuffer(int32_t picture_buffer_id);
|
| void OnFlush();
|
| void OnReset();
|
| @@ -130,12 +133,6 @@ class GpuVideoDecodeAccelerator
|
| // Callback to return a WeakPtr to GLES2Decoder.
|
| GetGLES2DecoderCallback get_gles2_decoder_cb_;
|
|
|
| - // The texture dimensions as requested by ProvidePictureBuffers().
|
| - gfx::Size texture_dimensions_;
|
| -
|
| - // The texture target as requested by ProvidePictureBuffers().
|
| - uint32_t texture_target_;
|
| -
|
| // The number of textures per picture buffer as requests by
|
| // ProvidePictureBuffers()
|
| uint32_t textures_per_buffer_;
|
|
|