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

Unified Diff: ppapi/api/dev/ppp_video_decoder_dev.idl

Issue 104373006: Remove deprecated video decode interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « no previous file | ppapi/c/dev/ppp_video_decoder_dev.h » ('j') | ppapi/c/dev/ppp_video_decoder_dev.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/dev/ppp_video_decoder_dev.idl
diff --git a/ppapi/api/dev/ppp_video_decoder_dev.idl b/ppapi/api/dev/ppp_video_decoder_dev.idl
index 1f6d8c66c441174936f0e229e7d0133b67114e29..32f10fcd862742523b162d6552a1137b8b58cb37 100644
--- a/ppapi/api/dev/ppp_video_decoder_dev.idl
+++ b/ppapi/api/dev/ppp_video_decoder_dev.idl
@@ -33,28 +33,8 @@ interface PPP_VideoDecoder_Dev {
* |decoder| the PPB_VideoDecoder_Dev resource.
* |req_num_of_bufs| tells how many buffers are needed by the decoder.
* |dimensions| tells the dimensions of the buffer to allocate.
- */
- [deprecate=0.11]
- void ProvidePictureBuffers(
- [in] PP_Instance instance,
- [in] PP_Resource decoder,
- [in] uint32_t req_num_of_bufs,
- [in] PP_Size dimensions);
-
- /**
- * Callback function to provide buffers for the decoded output pictures. If
- * succeeds plugin must provide buffers through AssignPictureBuffers function
- * to the API. If |req_num_of_bufs| matching exactly the specification
- * given in the parameters cannot be allocated decoder should be destroyed.
- *
- * Decoding will not proceed until buffers have been provided.
- *
- * Parameters:
- * |instance| the plugin instance to which the callback is responding.
- * |decoder| the PPB_VideoDecoder_Dev resource.
- * |req_num_of_bufs| tells how many buffers are needed by the decoder.
- * |dimensions| tells the dimensions of the buffer to allocate.
- * |texture_target| the type of texture used.
+ * |texture_target| the type of texture used. Sample targets in use are
+ * TEXTURE_2D (most platforms) and TEXTURE_EXTERNAL_OES (on ARM).
*/
[version=0.11]
void ProvidePictureBuffers(
@@ -94,20 +74,6 @@ interface PPP_VideoDecoder_Dev {
[in] PP_Picture_Dev picture);
/**
- * Callback function to tell the plugin that decoder has decoded end of stream
- * marker and output all the pictures that should be displayed from the
- * stream.
- *
- * Parameters:
- * |instance| the plugin instance to which the callback is responding.
- * |decoder| the PPB_VideoDecoder_Dev resource.
- */
- [deprecate=0.10]
- void EndOfStream(
- [in] PP_Instance instance,
- [in] PP_Resource decoder);
-
- /**
* Error handler callback for decoder to deliver information about detected
* errors to the plugin.
*
« no previous file with comments | « no previous file | ppapi/c/dev/ppp_video_decoder_dev.h » ('j') | ppapi/c/dev/ppp_video_decoder_dev.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698