diff options
author | Bastien Nocera <hadess@hadess.net> | 2012-08-03 17:50:24 +0100 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2015-06-23 10:17:13 +0200 |
commit | b0f043b13c5049a017af7c8d739e92fcbd0d7756 (patch) | |
tree | 4dd0b5a9ad9d9a8884fe55331a3b511612291b75 | |
parent | 094f90c4c55da9017decb80b922e48cda77a93c6 (diff) |
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
-rw-r--r-- | gst-libs/gst/pbutils/missing-plugins.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst-libs/gst/pbutils/missing-plugins.c b/gst-libs/gst/pbutils/missing-plugins.c index 7d7f2f4f9..57be6d54d 100644 --- a/gst-libs/gst/pbutils/missing-plugins.c +++ b/gst-libs/gst/pbutils/missing-plugins.c @@ -152,6 +152,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; } |