mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
audioparsers: enable accept-template flag
Do a quick check with the pad template caps as it is enough. Users should have figured the appropriate full caps on a previous caps query https://bugzilla.gnome.org/show_bug.cgi?id=753623
This commit is contained in:
parent
e2f2f087ec
commit
9523fb23ed
8 changed files with 8 additions and 0 deletions
|
@ -144,6 +144,7 @@ gst_aac_parse_init (GstAacParse * aacparse)
|
|||
{
|
||||
GST_DEBUG ("initialized");
|
||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (aacparse));
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (aacparse));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -224,6 +224,7 @@ gst_ac3_parse_init (GstAc3Parse * ac3parse)
|
|||
ac3parse->baseparse_chainfunc =
|
||||
GST_BASE_PARSE_SINK_PAD (GST_BASE_PARSE (ac3parse))->chainfunc;
|
||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (ac3parse));
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (ac3parse));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -133,6 +133,7 @@ gst_amr_parse_init (GstAmrParse * amrparse)
|
|||
gst_base_parse_set_min_frame_size (GST_BASE_PARSE (amrparse), 62);
|
||||
GST_DEBUG ("initialized");
|
||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (amrparse));
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (amrparse));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -139,6 +139,7 @@ gst_dca_parse_init (GstDcaParse * dcaparse)
|
|||
GST_BASE_PARSE_SINK_PAD (GST_BASE_PARSE (dcaparse))->chainfunc;
|
||||
|
||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (dcaparse));
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (dcaparse));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -258,6 +258,7 @@ gst_flac_parse_init (GstFlacParse * flacparse)
|
|||
{
|
||||
flacparse->check_frame_checksums = DEFAULT_CHECK_FRAME_CHECKSUMS;
|
||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (flacparse));
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (flacparse));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -227,6 +227,7 @@ gst_mpeg_audio_parse_init (GstMpegAudioParse * mp3parse)
|
|||
{
|
||||
gst_mpeg_audio_parse_reset (mp3parse);
|
||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (mp3parse));
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (mp3parse));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -125,6 +125,7 @@ gst_sbc_parse_init (GstSbcParse * sbcparse)
|
|||
{
|
||||
gst_sbc_parse_reset (sbcparse);
|
||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (sbcparse));
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (sbcparse));
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
|
@ -124,6 +124,7 @@ gst_wavpack_parse_init (GstWavpackParse * wvparse)
|
|||
{
|
||||
gst_wavpack_parse_reset (wvparse);
|
||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (wvparse));
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (wvparse));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue