summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2010-01-25 10:41:35 -0800
committerAndreas Huber <andih@google.com>2010-01-25 11:24:26 -0800
commit213addfaf4b359c69da4e9b4490c511d116845bb (patch)
treea3a46a11cbb8b3a7ed2961a125ce712e52f0e490 /include
parenta826028dc33a83538a2ac6bd13ca46a52de7a9be (diff)
downloadframeworks_av-213addfaf4b359c69da4e9b4490c511d116845bb.zip
frameworks_av-213addfaf4b359c69da4e9b4490c511d116845bb.tar.gz
frameworks_av-213addfaf4b359c69da4e9b4490c511d116845bb.tar.bz2
The qcom OMX video decoders do not allocate output buffer memory at the time OMX_AllocateBuffer is called, wait until we received the first FILL_BUFFER_DONE notification until we rely on the buffer data ptr.
Diffstat (limited to 'include')
-rw-r--r--include/media/IOMX.h1
-rw-r--r--include/media/stagefright/OMXCodec.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/media/IOMX.h b/include/media/IOMX.h
index bb7677d..2f61cbe 100644
--- a/include/media/IOMX.h
+++ b/include/media/IOMX.h
@@ -166,6 +166,7 @@ struct omx_message {
OMX_U32 flags;
OMX_TICKS timestamp;
OMX_PTR platform_private;
+ OMX_PTR data_ptr;
} extended_buffer_data;
} u;
diff --git a/include/media/stagefright/OMXCodec.h b/include/media/stagefright/OMXCodec.h
index ac2f662..82dd2b5 100644
--- a/include/media/stagefright/OMXCodec.h
+++ b/include/media/stagefright/OMXCodec.h
@@ -94,6 +94,7 @@ private:
kRequiresFlushCompleteEmulation = 16,
kRequiresAllocateBufferOnOutputPorts = 32,
kRequiresFlushBeforeShutdown = 64,
+ kDefersOutputBufferAllocation = 128,
};
struct BufferInfo {