summaryrefslogtreecommitdiffstats
path: root/include/media/stagefright/MediaSource.h
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2009-10-09 14:11:28 -0700
committerAndreas Huber <andih@google.com>2009-10-13 09:46:46 -0700
commit7f281f87670c63775ea1ae8b24af31822d5ad416 (patch)
treec04964f9bc176627df0eec3688b00bc17479bc06 /include/media/stagefright/MediaSource.h
parent0bf3921522461b1c7d321d0c667c1020ab3110bc (diff)
downloadframeworks_av-7f281f87670c63775ea1ae8b24af31822d5ad416.zip
frameworks_av-7f281f87670c63775ea1ae8b24af31822d5ad416.tar.gz
frameworks_av-7f281f87670c63775ea1ae8b24af31822d5ad416.tar.bz2
OMXCodec now notifies the reader of changes in the output format by returning a special result/error code.
Diffstat (limited to 'include/media/stagefright/MediaSource.h')
-rw-r--r--include/media/stagefright/MediaSource.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/media/stagefright/MediaSource.h b/include/media/stagefright/MediaSource.h
index d1fa114..96d57e7 100644
--- a/include/media/stagefright/MediaSource.h
+++ b/include/media/stagefright/MediaSource.h
@@ -51,6 +51,9 @@ struct MediaSource : public RefBase {
// buffer is available, an error is encountered of the end of the stream
// is reached.
// End of stream is signalled by a result of ERROR_END_OF_STREAM.
+ // A result of INFO_FORMAT_CHANGED indicates that the format of this
+ // MediaSource has changed mid-stream, the client can continue reading
+ // but should be prepared for buffers of the new configuration.
virtual status_t read(
MediaBuffer **buffer, const ReadOptions *options = NULL) = 0;