You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
From cd9358bdbae7e0cbaac4c235dead2e819b033d2f Mon Sep 17 00:00:00 2001
|
|
From: Bastien Nocera <hadess@hadess.net>
|
|
Date: Wed, 17 Jan 2024 16:19:30 +0100
|
|
Subject: [PATCH 1/8] missing-plugins: Remove the mpegaudioversion field
|
|
|
|
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
|
|
---
|
|
.../gst-plugins-base/gst-libs/gst/pbutils/missing-plugins.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/subprojects/gst-plugins-base/gst-libs/gst/pbutils/missing-plugins.c b/subprojects/gst-plugins-base/gst-libs/gst/pbutils/missing-plugins.c
|
|
index 69330b933b..c4fd3e6737 100644
|
|
--- a/subprojects/gst-plugins-base/gst-libs/gst/pbutils/missing-plugins.c
|
|
+++ b/subprojects/gst-plugins-base/gst-libs/gst/pbutils/missing-plugins.c
|
|
@@ -191,6 +191,9 @@ copy_and_clean_caps (const GstCaps * caps)
|
|
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;
|
|
}
|
|
--
|
|
2.47.0
|
|
|