mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 14:32:31 +00:00
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:
parent
17cdb54aa4
commit
c7e93ad043
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
GST_PAD_ALWAYS,
|
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);
|
static GType test_mpeg_audio_parse_get_type (void);
|
||||||
|
|
Loading…
Reference in a new issue