gst-fsl-plugin: increment FSL AAC decoder rank
Give priority to FSL AAC decoder over others from the community when using gstreamer's playbin2 or gplay This allows to play some videos that fail otherwise. Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
dab4595df7
commit
2817c51daa
|
|
@ -0,0 +1,27 @@
|
|||
From: Javier Viguera <javier.viguera@digi.com>
|
||||
Date: Mon, 25 Nov 2013 13:59:00 +0100
|
||||
Subject: [PATCH] aac decoder: increase element rank
|
||||
|
||||
Give priority to FSL AAC decoder over others from the community when
|
||||
using gstreamer's playbin2 or gplay
|
||||
|
||||
This allows to play some videos that fail otherwise.
|
||||
|
||||
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
|
||||
---
|
||||
src/audio/aac_dec/src/mfw_gst_aacdec.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/audio/aac_dec/src/mfw_gst_aacdec.c b/src/audio/aac_dec/src/mfw_gst_aacdec.c
|
||||
index 6e8a37b..6103070 100755
|
||||
--- a/src/audio/aac_dec/src/mfw_gst_aacdec.c
|
||||
+++ b/src/audio/aac_dec/src/mfw_gst_aacdec.c
|
||||
@@ -3659,7 +3659,7 @@ IMPORTANT NOTES:
|
||||
static gboolean plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
return gst_element_register (plugin, "mfw_aacdecoder",
|
||||
- GST_RANK_PRIMARY, MFW_GST_TYPE_AACDEC);
|
||||
+ GST_RANK_PRIMARY+1, MFW_GST_TYPE_AACDEC);
|
||||
}
|
||||
|
||||
/*=============================================================================
|
||||
|
|
@ -25,6 +25,7 @@ SRC_URI = " \
|
|||
file://0016-gst-fsl-plugin-Only-call-MXCFB_SET_OVERLAY_POS-with-.patch \
|
||||
file://0017-gst-fsl-plugin-Do-not-blank-the-display-on-device-cl.patch \
|
||||
file://0018-undefined-shm_open.patch \
|
||||
file://0019-aac-decoder-increase-element-rank.patch \
|
||||
"
|
||||
|
||||
do_install_append() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue