decodebin: Fix MP3 parser unit test

The MP3 parser required fields on its caps that it
didn't need and never got from (e.g.) typefind.
This commit is contained in:
Sebastian Dröge 2013-02-13 11:25:02 +01:00
parent 17cdb54aa4
commit c7e93ad043

View file

@ -213,7 +213,7 @@ static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/mpeg, mpegversion=1, parsed=(bool) { false, true }")
GST_STATIC_CAPS ("audio/mpeg, mpegversion=1")
);
static GType test_mpeg_audio_parse_get_type (void);