summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorChristian Schaller <christian.schaller@collabora.co.uk>2009-05-07 17:53:42 +0100
committerChristian Schaller <christian.schaller@collabora.co.uk>2009-05-07 17:53:42 +0100
commit67dd3c11f47f1afd3508e3b45a3023ce9612fe67 (patch)
tree9f66f46d6d305af66d88e82e39924e82e6c24c07 /ext
parentab77d5092bc1362548758e7f6ab7f817aa9ad846 (diff)
downloadgst-plugins-bad-67dd3c11f47f1afd3508e3b45a3023ce9612fe67.tar.gz
gst-plugins-bad-67dd3c11f47f1afd3508e3b45a3023ce9612fe67.tar.bz2
gst-plugins-bad-67dd3c11f47f1afd3508e3b45a3023ce9612fe67.zip
Add ranks to various muxers and encoders in -bad
Diffstat (limited to 'ext')
-rw-r--r--ext/faac/gstfaac.c3
-rw-r--r--ext/mpeg2enc/gstmpeg2enc.cc2
-rw-r--r--ext/x264/gstx264enc.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/ext/faac/gstfaac.c b/ext/faac/gstfaac.c
index 638e65b1..0dc8a42a 100644
--- a/ext/faac/gstfaac.c
+++ b/ext/faac/gstfaac.c
@@ -806,7 +806,8 @@ gst_faac_change_state (GstElement * element, GstStateChange transition)
static gboolean
plugin_init (GstPlugin * plugin)
{
- return gst_element_register (plugin, "faac", GST_RANK_NONE, GST_TYPE_FAAC);
+ return gst_element_register (plugin, "faac", GST_RANK_SECONDARY,
+ GST_TYPE_FAAC);
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
diff --git a/ext/mpeg2enc/gstmpeg2enc.cc b/ext/mpeg2enc/gstmpeg2enc.cc
index 21be81fb..64008b16 100644
--- a/ext/mpeg2enc/gstmpeg2enc.cc
+++ b/ext/mpeg2enc/gstmpeg2enc.cc
@@ -717,7 +717,7 @@ plugin_init (GstPlugin * plugin)
mjpeg_default_handler_verbosity (0);
return gst_element_register (plugin, "mpeg2enc",
- GST_RANK_NONE, GST_TYPE_MPEG2ENC);
+ GST_RANK_SECONDARY, GST_TYPE_MPEG2ENC);
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
diff --git a/ext/x264/gstx264enc.c b/ext/x264/gstx264enc.c
index 37f53cce..fcafdd3d 100644
--- a/ext/x264/gstx264enc.c
+++ b/ext/x264/gstx264enc.c
@@ -1303,7 +1303,7 @@ plugin_init (GstPlugin * plugin)
"h264 encoding element");
return gst_element_register (plugin, "x264enc",
- GST_RANK_NONE, GST_TYPE_X264_ENC);
+ GST_RANK_PRIMARY, GST_TYPE_X264_ENC);
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,