Revert "omx: use no-component-reconfigure hack on the Raspberry PI"
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Thu, 7 Mar 2013 16:40:21 +0000 (17:40 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Thu, 7 Mar 2013 16:40:21 +0000 (17:40 +0100)
This reverts commit e123b2089f69a413241f30a2428ea6edd8f231e7.

It's not required anymore after the fix from the last commit.

config/rpi/gstomx.conf
omx/gstomx.c

index 6bfb9a5..7f3946d 100644 (file)
@@ -5,7 +5,7 @@ component-name=OMX.broadcom.video_decode
 rank=256
 in-port-index=130
 out-port-index=131
-hacks=no-empty-eos-buffer;no-component-role;no-component-reconfigure
+hacks=no-empty-eos-buffer;no-component-role
 
 [omxh264dec]
 type-name=GstOMXH264Dec
@@ -14,7 +14,7 @@ component-name=OMX.broadcom.video_decode
 rank=256
 in-port-index=130
 out-port-index=131
-hacks=no-empty-eos-buffer;no-component-role;no-component-reconfigure
+hacks=no-empty-eos-buffer;no-component-role
 
 [omxmpeg2dec]
 type-name=GstOMXMPEG2Dec
@@ -23,7 +23,7 @@ component-name=OMX.broadcom.video_decode
 rank=256
 in-port-index=130
 out-port-index=131
-hacks=no-empty-eos-buffer;no-component-role;no-component-reconfigure
+hacks=no-empty-eos-buffer;no-component-role
 
 [omxmpeg4videoenc]
 type-name=GstOMXMPEG4VideoEnc
@@ -32,7 +32,7 @@ component-name=OMX.broadcom.video_encode
 rank=256
 in-port-index=200
 out-port-index=201
-hacks=no-empty-eos-buffer;no-component-role;no-component-reconfigure
+hacks=no-empty-eos-buffer;no-component-role
 
 [omxh264enc]
 type-name=GstOMXH264Enc
@@ -41,5 +41,5 @@ component-name=OMX.broadcom.video_encode
 rank=256
 in-port-index=200
 out-port-index=201
-hacks=no-empty-eos-buffer;no-component-role;no-component-reconfigure
+hacks=no-empty-eos-buffer;no-component-role
 
index 46a2f82..719e5bd 100644 (file)
@@ -2343,7 +2343,7 @@ gst_omx_error_to_string (OMX_ERRORTYPE err)
 }
 
 #if defined(USE_OMX_TARGET_RPI)
-#define DEFAULT_HACKS (GST_OMX_HACK_NO_EMPTY_EOS_BUFFER | GST_OMX_HACK_NO_COMPONENT_ROLE | GST_OMX_HACK_NO_COMPONENT_RECONFIGURE)
+#define DEFAULT_HACKS (GST_OMX_HACK_NO_EMPTY_EOS_BUFFER | GST_OMX_HACK_NO_COMPONENT_ROLE)
 #else
 #define DEFAULT_HACKS (0)
 #endif