Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Side by Side Diff: content/common/gpu/media/gpu_video_decode_accelerator.h

Issue 10392141: Plumb texture target to VideoDecodeAccelerator::Client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_GPU_MEDIA_GPU_VIDEO_DECODE_ACCELERATOR_H_ 5 #ifndef CONTENT_COMMON_GPU_MEDIA_GPU_VIDEO_DECODE_ACCELERATOR_H_
6 #define CONTENT_COMMON_GPU_MEDIA_GPU_VIDEO_DECODE_ACCELERATOR_H_ 6 #define CONTENT_COMMON_GPU_MEDIA_GPU_VIDEO_DECODE_ACCELERATOR_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 12 matching lines...) Expand all
23 GpuVideoDecodeAccelerator(IPC::Message::Sender* sender, 23 GpuVideoDecodeAccelerator(IPC::Message::Sender* sender,
24 int32 host_route_id, 24 int32 host_route_id,
25 GpuCommandBufferStub* stub); 25 GpuCommandBufferStub* stub);
26 virtual ~GpuVideoDecodeAccelerator(); 26 virtual ~GpuVideoDecodeAccelerator();
27 27
28 // IPC::Channel::Listener implementation. 28 // IPC::Channel::Listener implementation.
29 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 29 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
30 30
31 // media::VideoDecodeAccelerator::Client implementation. 31 // media::VideoDecodeAccelerator::Client implementation.
32 virtual void ProvidePictureBuffers( 32 virtual void ProvidePictureBuffers(
33 uint32 requested_num_of_buffers, const gfx::Size& dimensions) OVERRIDE; 33 uint32 requested_num_of_buffers,
34 const gfx::Size& dimensions,
35 media::VideoDecodeAccelerator::TextureTarget texture_target) OVERRIDE;
34 virtual void DismissPictureBuffer(int32 picture_buffer_id) OVERRIDE; 36 virtual void DismissPictureBuffer(int32 picture_buffer_id) OVERRIDE;
35 virtual void PictureReady(const media::Picture& picture) OVERRIDE; 37 virtual void PictureReady(const media::Picture& picture) OVERRIDE;
36 virtual void NotifyInitializeDone() OVERRIDE; 38 virtual void NotifyInitializeDone() OVERRIDE;
37 virtual void NotifyError(media::VideoDecodeAccelerator::Error error) OVERRIDE; 39 virtual void NotifyError(media::VideoDecodeAccelerator::Error error) OVERRIDE;
38 virtual void NotifyEndOfBitstreamBuffer(int32 bitstream_buffer_id) OVERRIDE; 40 virtual void NotifyEndOfBitstreamBuffer(int32 bitstream_buffer_id) OVERRIDE;
39 virtual void NotifyFlushDone() OVERRIDE; 41 virtual void NotifyFlushDone() OVERRIDE;
40 virtual void NotifyResetDone() OVERRIDE; 42 virtual void NotifyResetDone() OVERRIDE;
41 43
42 // Function to delegate sending to actual sender. 44 // Function to delegate sending to actual sender.
43 virtual bool Send(IPC::Message* message) OVERRIDE; 45 virtual bool Send(IPC::Message* message) OVERRIDE;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 // Unowned pointer to the underlying GpuCommandBufferStub. 81 // Unowned pointer to the underlying GpuCommandBufferStub.
80 GpuCommandBufferStub* stub_; 82 GpuCommandBufferStub* stub_;
81 83
82 // Pointer to the underlying VideoDecodeAccelerator. 84 // Pointer to the underlying VideoDecodeAccelerator.
83 scoped_refptr<media::VideoDecodeAccelerator> video_decode_accelerator_; 85 scoped_refptr<media::VideoDecodeAccelerator> video_decode_accelerator_;
84 86
85 DISALLOW_IMPLICIT_CONSTRUCTORS(GpuVideoDecodeAccelerator); 87 DISALLOW_IMPLICIT_CONSTRUCTORS(GpuVideoDecodeAccelerator);
86 }; 88 };
87 89
88 #endif // CONTENT_COMMON_GPU_MEDIA_GPU_VIDEO_DECODE_ACCELERATOR_H_ 90 #endif // CONTENT_COMMON_GPU_MEDIA_GPU_VIDEO_DECODE_ACCELERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698