diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-17 12:46:54 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-17 12:46:54 +0000 |
commit | 9b98f084607bc1e9185be7f29b52f1e4c0fa498d (patch) | |
tree | 1a742541920858a5cc1d1bb8399a218f53e73392 /chrome/renderer/gpu_video_decoder_host.h | |
parent | d63b5215c206da43ed352ff09459a0ba3622b727 (diff) | |
download | chromium_src-9b98f084607bc1e9185be7f29b52f1e4c0fa498d.zip chromium_src-9b98f084607bc1e9185be7f29b52f1e4c0fa498d.tar.gz chromium_src-9b98f084607bc1e9185be7f29b52f1e4c0fa498d.tar.bz2 |
GpuVideoDecoder to use GpuVideoDevice and IPC messages to complete VideoFrame allocation
GpuVideoDecedoer now sends IPC messages to allocation GL textures. It also uses
GpuVideoDevice to create VideoFrames from the GL textures. These GL textures
are passed into VideoDecodeEngine.
BUG=53714
TEST=Tree is green
Review URL: http://codereview.chromium.org/3335019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59784 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/gpu_video_decoder_host.h')
-rw-r--r-- | chrome/renderer/gpu_video_decoder_host.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chrome/renderer/gpu_video_decoder_host.h b/chrome/renderer/gpu_video_decoder_host.h index 02f8fc8..1255bf5 100644 --- a/chrome/renderer/gpu_video_decoder_host.h +++ b/chrome/renderer/gpu_video_decoder_host.h @@ -112,7 +112,6 @@ class GpuVideoDecoderHost // Transfer buffers for both input and output. // TODO(jiesun): remove output buffer when hardware composition is ready. scoped_ptr<base::SharedMemory> input_transfer_buffer_; - scoped_ptr<base::SharedMemory> output_transfer_buffer_; DISALLOW_COPY_AND_ASSIGN(GpuVideoDecoderHost); }; |