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

Unified Diff: ppapi/cpp/dev/video_decoder_client_dev.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 side-by-side diff with in-line comments
Download patch
Index: ppapi/cpp/dev/video_decoder_client_dev.h
diff --git a/ppapi/cpp/dev/video_decoder_client_dev.h b/ppapi/cpp/dev/video_decoder_client_dev.h
index d598b40e5036ec36084a62562b54ce2824cee3f7..7f1a0eeb4da7058e2d38a8bbb7e74cdf5ecf386b 100644
--- a/ppapi/cpp/dev/video_decoder_client_dev.h
+++ b/ppapi/cpp/dev/video_decoder_client_dev.h
@@ -24,9 +24,11 @@ class VideoDecoderClient_Dev {
virtual ~VideoDecoderClient_Dev();
// Callback to provide buffers for the decoded output pictures.
- virtual void ProvidePictureBuffers(PP_Resource decoder,
- uint32_t req_num_of_bufs,
- const PP_Size& dimensions) = 0;
+ virtual void ProvidePictureBuffers(
+ PP_Resource decoder,
+ uint32_t req_num_of_bufs,
+ const PP_Size& dimensions,
+ PP_VideoDecoder_TextureTarget_Dev texture_target) = 0;
// Callback for decoder to deliver unneeded picture buffers back to the
// plugin.

Powered by Google App Engine
This is Rietveld 408576698