mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
gst/cdxaparse/gstcdxaparse.c: Add mpegversion to CAPS to make it link
Original commit message from CVS: * gst/cdxaparse/gstcdxaparse.c : Add mpegversion to CAPS to make it link Rank is as GST_RANK_SECONDARY instead of NONE
This commit is contained in:
parent
a2fe9a31ac
commit
1bdc31fc05
2 changed files with 9 additions and 2 deletions
|
@ -3,6 +3,12 @@
|
||||||
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
|
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
|
||||||
Use codec_data property instead of flag1 and flag2 for wma
|
Use codec_data property instead of flag1 and flag2 for wma
|
||||||
|
|
||||||
|
2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
|
||||||
|
|
||||||
|
* gst/cdxaparse/gstcdxaparse.c :
|
||||||
|
Add mpegversion to CAPS to make it link
|
||||||
|
Rank is as GST_RANK_SECONDARY instead of NONE
|
||||||
|
|
||||||
2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
||||||
|
|
||||||
* ext/libvisual/visual.c: (gst_visual_getcaps):
|
* ext/libvisual/visual.c: (gst_visual_getcaps):
|
||||||
|
|
|
@ -69,7 +69,8 @@ static GstStaticPadTemplate sink_templ = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src",
|
static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_PAD_SRC,
|
GST_PAD_SRC,
|
||||||
GST_PAD_ALWAYS,
|
GST_PAD_ALWAYS,
|
||||||
GST_STATIC_CAPS ("video/mpeg, " "systemstream = (boolean) TRUE")
|
GST_STATIC_CAPS ("video/mpeg, " "systemstream = (boolean) TRUE, "
|
||||||
|
"mpegversion = (int) 1")
|
||||||
);
|
);
|
||||||
|
|
||||||
static void gst_cdxa_parse_base_init (gpointer g_class);
|
static void gst_cdxa_parse_base_init (gpointer g_class);
|
||||||
|
@ -316,7 +317,7 @@ plugin_init (GstPlugin * plugin)
|
||||||
if (!gst_library_load ("gstbytestream"))
|
if (!gst_library_load ("gstbytestream"))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
if (!gst_element_register (plugin, "cdxaparse", GST_RANK_NONE,
|
if (!gst_element_register (plugin, "cdxaparse", GST_RANK_SECONDARY,
|
||||||
GST_TYPE_CDXA_PARSE))
|
GST_TYPE_CDXA_PARSE))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue