diff options
Diffstat (limited to 'gst')
-rw-r--r-- | gst/cdxaparse/gstcdxaparse.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/cdxaparse/gstcdxaparse.c b/gst/cdxaparse/gstcdxaparse.c index 36ebc335..d0029dff 100644 --- a/gst/cdxaparse/gstcdxaparse.c +++ b/gst/cdxaparse/gstcdxaparse.c @@ -69,7 +69,8 @@ static GstStaticPadTemplate sink_templ = GST_STATIC_PAD_TEMPLATE ("sink", static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, 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); @@ -316,7 +317,7 @@ plugin_init (GstPlugin * plugin) if (!gst_library_load ("gstbytestream")) return FALSE; - if (!gst_element_register (plugin, "cdxaparse", GST_RANK_NONE, + if (!gst_element_register (plugin, "cdxaparse", GST_RANK_SECONDARY, GST_TYPE_CDXA_PARSE)) return FALSE; |