Index: ppapi/api/ppb_video_decoder.idl |
diff --git a/ppapi/api/ppb_video_decoder.idl b/ppapi/api/ppb_video_decoder.idl |
index 90a3520fe754c5e00bb036481fb7d703d1b6c9fd..4d120a6132579ec294569f0ef685360eb9ed86d3 100644 |
--- a/ppapi/api/ppb_video_decoder.idl |
+++ b/ppapi/api/ppb_video_decoder.idl |
@@ -91,9 +91,8 @@ interface PPB_VideoDecoder { |
/** |
* Decodes a bitstream buffer. Copies |size| bytes of data from the plugin's |
- * |buffer|. The plugin should maintain the buffer and not call Decode() again |
- * until the decoder signals completion by returning PP_OK or by running |
- * |callback|. |
+ * |buffer|. The plugin should wait until the decoder signals completion by |
+ * returning PP_OK or by running |callback| before calling Decode() again. |
dmichael (off chromium)
2014/05/20 19:47:32
May be worth noting that otherwise it will fail wi
bbudge
2014/05/20 21:04:57
Documented this in the @return section.
|
* |
* In general, each bitstream buffer should contain a demuxed bitstream frame |
* for the selected video codec. For example, H264 decoders expect to receive |