From 7682a9c35a5e9acae738974ea3a73a4ca7796323 Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Fri, 28 Sep 2012 11:32:16 -0700 Subject: [PATCH] Add a way to configure an OMX encoder to emit SPS/PPS before IDR frames. Change-Id: I71ce254533c8e99bc54d199d8a9828397fe3d99d related-to-bug: 7245308 --- include/media/hardware/HardwareAPI.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/media/hardware/HardwareAPI.h b/include/media/hardware/HardwareAPI.h index 6d5b72796..cc43bf691 100644 --- a/include/media/hardware/HardwareAPI.h +++ b/include/media/hardware/HardwareAPI.h @@ -105,6 +105,16 @@ struct GetAndroidNativeBufferUsageParams { // colorformat will be relayed by the GRalloc Buffers. // OMX_COLOR_FormatAndroidOpaque = 0x7F000001, +// A pointer to this struct is passed to OMX_SetParameter when the extension +// index for the 'OMX.google.android.index.prependSPSPPSToIDRFrames' extension +// is given. +// A successful result indicates that future IDR frames will be prefixed by +// SPS/PPS. +struct PrependSPSPPSToIDRFramesParams { + OMX_U32 nSize; + OMX_VERSIONTYPE nVersion; + OMX_BOOL bEnable; +}; } // namespace android