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

Unified Diff: media/video/video_decode_accelerator.h

Issue 7065010: Add initialization callback support for Video Decoder PPAPI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Delete TODO and bump up the ppb version Created 9 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: media/video/video_decode_accelerator.h
diff --git a/media/video/video_decode_accelerator.h b/media/video/video_decode_accelerator.h
index 46c6d873371658dc92b04c96cfa7afbe3ff14b12..5cf5c53080b91ea8bcf90ac759d00bb2eb5069ca 100644
--- a/media/video/video_decode_accelerator.h
+++ b/media/video/video_decode_accelerator.h
@@ -189,6 +189,9 @@ class VideoDecodeAccelerator {
// Callback to deliver decoded pictures ready to be displayed.
virtual void PictureReady(const Picture& picture) = 0;
+ // Callback to notify client that decoder has been initialized.
Ami GONE FROM CHROMIUM 2011/05/23 21:39:02 Move above PPB?
+ virtual void NotifyInitializeDone() = 0;
+
// Callback to notify that decoder has decoded end of stream marker and has
// outputted all displayable pictures.
virtual void NotifyEndOfStream() = 0;

Powered by Google App Engine
This is Rietveld 408576698