mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
omx: The hack to disable usage of EOS buffers is not necessary anymore on RPi
This commit is contained in:
parent
ec687f1414
commit
5bab4a05f0
2 changed files with 6 additions and 6 deletions
|
@ -5,7 +5,7 @@ component-name=OMX.broadcom.video_decode
|
||||||
rank=256
|
rank=256
|
||||||
in-port-index=130
|
in-port-index=130
|
||||||
out-port-index=131
|
out-port-index=131
|
||||||
hacks=no-empty-eos-buffer;no-component-role
|
hacks=no-component-role
|
||||||
|
|
||||||
[omxh264dec]
|
[omxh264dec]
|
||||||
type-name=GstOMXH264Dec
|
type-name=GstOMXH264Dec
|
||||||
|
@ -14,7 +14,7 @@ component-name=OMX.broadcom.video_decode
|
||||||
rank=256
|
rank=256
|
||||||
in-port-index=130
|
in-port-index=130
|
||||||
out-port-index=131
|
out-port-index=131
|
||||||
hacks=no-empty-eos-buffer;no-component-role
|
hacks=no-component-role
|
||||||
|
|
||||||
[omxmpeg2dec]
|
[omxmpeg2dec]
|
||||||
type-name=GstOMXMPEG2Dec
|
type-name=GstOMXMPEG2Dec
|
||||||
|
@ -23,7 +23,7 @@ component-name=OMX.broadcom.video_decode
|
||||||
rank=256
|
rank=256
|
||||||
in-port-index=130
|
in-port-index=130
|
||||||
out-port-index=131
|
out-port-index=131
|
||||||
hacks=no-empty-eos-buffer;no-component-role
|
hacks=no-component-role
|
||||||
|
|
||||||
[omxmpeg4videoenc]
|
[omxmpeg4videoenc]
|
||||||
type-name=GstOMXMPEG4VideoEnc
|
type-name=GstOMXMPEG4VideoEnc
|
||||||
|
@ -32,7 +32,7 @@ component-name=OMX.broadcom.video_encode
|
||||||
rank=256
|
rank=256
|
||||||
in-port-index=200
|
in-port-index=200
|
||||||
out-port-index=201
|
out-port-index=201
|
||||||
hacks=no-empty-eos-buffer;no-component-role
|
hacks=no-component-role
|
||||||
|
|
||||||
[omxh264enc]
|
[omxh264enc]
|
||||||
type-name=GstOMXH264Enc
|
type-name=GstOMXH264Enc
|
||||||
|
@ -41,5 +41,5 @@ component-name=OMX.broadcom.video_encode
|
||||||
rank=256
|
rank=256
|
||||||
in-port-index=200
|
in-port-index=200
|
||||||
out-port-index=201
|
out-port-index=201
|
||||||
hacks=no-empty-eos-buffer;no-component-role
|
hacks=no-component-role
|
||||||
|
|
||||||
|
|
|
@ -2404,7 +2404,7 @@ gst_omx_error_to_string (OMX_ERRORTYPE err)
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(USE_OMX_TARGET_RPI)
|
#if defined(USE_OMX_TARGET_RPI)
|
||||||
#define DEFAULT_HACKS (GST_OMX_HACK_NO_EMPTY_EOS_BUFFER | GST_OMX_HACK_NO_COMPONENT_ROLE)
|
#define DEFAULT_HACKS (GST_OMX_HACK_NO_COMPONENT_ROLE)
|
||||||
#else
|
#else
|
||||||
#define DEFAULT_HACKS (0)
|
#define DEFAULT_HACKS (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue