set dvbaudiosink caps to support mpeg 4 profile LC and apply relevant patches.
[vuplus_openvuplus_3.0] / meta-openvuplus / recipes-multimedia / gstreamer / gst-plugins-bad-0.10.23 / Lower-rank-of-faad-to-prevent-using-it-if-not-necess.patch
1 From bf4042d879346bb90814856b7eb023706d1a8e15 Mon Sep 17 00:00:00 2001
2 From: betacentauri <@>
3 Date: Sat, 29 Jun 2013 14:33:34 +0200
4 Subject: [PATCH] Lower rank of faad to prevent using it if not necessary
5
6 ---
7  ext/faad/gstfaad.c |    2 +-
8  1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c
11 index e106da9..82fd547 100644
12 --- a/ext/faad/gstfaad.c
13 +++ b/ext/faad/gstfaad.c
14 @@ -893,7 +893,7 @@ gst_faad_close_decoder (GstFaad * faad)
15  static gboolean
16  plugin_init (GstPlugin * plugin)
17  {
18 -  return gst_element_register (plugin, "faad", GST_RANK_PRIMARY, GST_TYPE_FAAD);
19 +  return gst_element_register (plugin, "faad", GST_RANK_SECONDARY, GST_TYPE_FAAD);
20  }
21  
22  GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
23 -- 
24 1.7.9.5
25