Index: media/base/video_decoder.h |
diff --git a/media/base/video_decoder.h b/media/base/video_decoder.h |
index 5111f53e9fbceef9f81d0a83b8575e3b4f9e8614..55594b4ad39d7a2e421a8afbb5b2a9fd41224f74 100644 |
--- a/media/base/video_decoder.h |
+++ b/media/base/video_decoder.h |
@@ -29,7 +29,9 @@ class MEDIA_EXPORT VideoDecoder { |
kDecryptError // Decrypting error happened. |
}; |
- // Callback to return decode frames. |
+ // Callback for VideoDecoder to return a decoded frame whenever it becomes |
+ // available. Only valid frames should be returned via this callback. EOS |
+ // frames should not be returned via this callback. |
Sergey Ulanov
2014/06/16 23:49:32
same here as in audio_decoder.h
xhwang
2014/06/17 18:56:35
Done.
|
typedef base::Callback<void(const scoped_refptr<VideoFrame>&)> OutputCB; |
// Callback type for Decode(). Called after the decoder has completed decoding |