Request pads don't have a number limit

Original commit message from CVS:
Request pads don't have a number limit
This commit is contained in:
Ronald S. Bultje 2003-06-17 11:42:38 +00:00
parent 4343644704
commit f191f3dd03

View file

@ -259,7 +259,7 @@ gst_ffmpegmux_connect (GstPad *pad,
* our famous codec mapper */
for ( ; caps != NULL; caps = caps->next) {
if (gst_ffmpeg_caps_to_codecid (caps,
&st->codec.codec_id) == CODEC_ID_NONE) {
&st->codec) != CODEC_ID_NONE) {
ffmpegmux->eos[i] = FALSE;
return GST_PAD_LINK_OK;
}
@ -500,13 +500,13 @@ gst_ffmpegmux_register (GstPlugin *plugin)
srccaps, NULL);
gst_element_factory_add_pad_template (factory,
params->srctempl);
params->audiosinktempl = gst_pad_template_new ("audio_%02d",
params->audiosinktempl = gst_pad_template_new ("audio_%d",
GST_PAD_SINK,
GST_PAD_REQUEST,
audiosinkcaps, NULL);
gst_element_factory_add_pad_template (factory,
params->audiosinktempl);
params->videosinktempl = gst_pad_template_new ("video_%02d",
params->videosinktempl = gst_pad_template_new ("video_%d",
GST_PAD_SINK,
GST_PAD_REQUEST,
videosinkcaps, NULL);