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

Unified Diff: content/common/gpu/gpu_messages.h

Issue 10392141: Plumb texture target to VideoDecodeAccelerator::Client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win build Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/gpu_messages.h
diff --git a/content/common/gpu/gpu_messages.h b/content/common/gpu/gpu_messages.h
index cd8a7b53cd3f888c44c50c72a85ca71839d87618..1b5746c7f0b5b3d97d1d4ecffb10c333f4c97ceb 100644
--- a/content/common/gpu/gpu_messages.h
+++ b/content/common/gpu/gpu_messages.h
@@ -517,9 +517,11 @@ IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_BitstreamBufferProcessed,
int32) /* Processed buffer ID */
// Allocate video frames for output of the hardware video decoder.
-IPC_MESSAGE_ROUTED2(AcceleratedVideoDecoderHostMsg_ProvidePictureBuffers,
- int32, /* Number of video frames to generate */
- gfx::Size) /* Requested size of buffer */
+IPC_MESSAGE_ROUTED3(
+ AcceleratedVideoDecoderHostMsg_ProvidePictureBuffers,
+ int32, /* Number of video frames to generate */
+ gfx::Size, /* Requested size of buffer */
+ uint32 ) /* Texture target */
// Decoder reports that a picture is ready and buffer does not need to be passed
// back to the decoder.

Powered by Google App Engine
This is Rietveld 408576698