diff --git a/omx/gstomx.c b/omx/gstomx.c index d20ea688c9..1a262d93e5 100644 --- a/omx/gstomx.c +++ b/omx/gstomx.c @@ -1901,8 +1901,6 @@ gst_omx_parse_hacks (gchar ** hacks) hacks_flags |= GST_OMX_HACK_VIDEO_FRAMERATE_INTEGER; else if (g_str_equal (*hacks, "syncframe-flag-not-used")) hacks_flags |= GST_OMX_HACK_SYNCFRAME_FLAG_NOT_USED; - else if (g_str_equal (*hacks, "no-noffset-reset")) - hacks_flags |= GST_OMX_HACK_NO_NOFFSET_RESET; else if (g_str_equal (*hacks, "no-component-reconfigure")) hacks_flags |= GST_OMX_HACK_NO_COMPONENT_RECONFIGURE; else diff --git a/omx/gstomx.h b/omx/gstomx.h index 640a050403..55efb4b9af 100644 --- a/omx/gstomx.h +++ b/omx/gstomx.h @@ -55,14 +55,10 @@ G_BEGIN_DECLS * Happens with the Bellagio ffmpegdist video encoder. */ #define GST_OMX_HACK_SYNCFRAME_FLAG_NOT_USED G_GUINT64_CONSTANT (0x0000000000000008) -/* If the nOffset field of buffers is not reset in EmptyBufferDone. - * Happens with Qualcomm's OpenMAX implementation. - */ -#define GST_OMX_HACK_NO_NOFFSET_RESET G_GUINT64_CONSTANT (0x0000000000000010) /* If the component needs to be re-created if the caps change. * Happens with Qualcomm's OpenMAX implementation. */ -#define GST_OMX_HACK_NO_COMPONENT_RECONFIGURE G_GUINT64_CONSTANT (0x0000000000000020) +#define GST_OMX_HACK_NO_COMPONENT_RECONFIGURE G_GUINT64_CONSTANT (0x0000000000000010) typedef struct _GstOMXCore GstOMXCore;