2018-02-22 10:40:16 +00:00
|
|
|
From 06ca82cad9898f5df40011fe0614ee1dfd89f1ae Mon Sep 17 00:00:00 2001
|
2013-01-19 17:32:51 +00:00
|
|
|
From: Bastien Nocera <hadess@hadess.net>
|
|
|
|
Date: Fri, 3 Aug 2012 17:50:24 +0100
|
2018-02-22 10:40:16 +00:00
|
|
|
Subject: [PATCH 1/2] missing-plugins: Remove the mpegaudioversion field
|
2013-01-19 17:32:51 +00:00
|
|
|
|
|
|
|
From missing plugins requests as it's a duplicate of mpegversion
|
|
|
|
and its presence would break codec discovery when using RPM.
|
|
|
|
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=680809
|
|
|
|
---
|
2018-02-22 10:40:16 +00:00
|
|
|
gst-libs/gst/pbutils/missing-plugins.c | 3 +++
|
2013-01-19 17:32:51 +00:00
|
|
|
1 file changed, 3 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/gst-libs/gst/pbutils/missing-plugins.c b/gst-libs/gst/pbutils/missing-plugins.c
|
2018-02-22 10:40:16 +00:00
|
|
|
index a08803b18..cdce4bf05 100644
|
2013-01-19 17:32:51 +00:00
|
|
|
--- a/gst-libs/gst/pbutils/missing-plugins.c
|
|
|
|
+++ b/gst-libs/gst/pbutils/missing-plugins.c
|
2018-02-22 10:40:16 +00:00
|
|
|
@@ -151,6 +151,9 @@ copy_and_clean_caps (const GstCaps * caps)
|
2013-01-19 17:32:51 +00:00
|
|
|
gst_structure_remove_field (s, "play-speed");
|
|
|
|
gst_structure_remove_field (s, "play-scale");
|
|
|
|
gst_structure_remove_field (s, "dynamic_range");
|
|
|
|
+ /* mpegaudioversion is a duplicate for mpegversion
|
|
|
|
+ * https://bugzilla.redhat.com/show_bug.cgi?id=680809 */
|
|
|
|
+ gst_structure_remove_field (s, "mpegaudioversion");
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
--
|
2018-02-22 10:40:16 +00:00
|
|
|
2.14.3
|
2013-01-19 17:32:51 +00:00
|
|
|
|