diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-12 10:19:19 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-12 10:19:19 +0000 |
commit | cbc28f86f9621ac9a902b0a98d6301b20e46d21d (patch) | |
tree | 47ee1f0aa61f0f0569659b619b124e138ce49fe5 /ext | |
parent | 08e51cbecfe4f509bfa66796eb97fb741d7c0401 (diff) | |
download | gst-plugins-bad-cbc28f86f9621ac9a902b0a98d6301b20e46d21d.tar.gz gst-plugins-bad-cbc28f86f9621ac9a902b0a98d6301b20e46d21d.tar.bz2 gst-plugins-bad-cbc28f86f9621ac9a902b0a98d6301b20e46d21d.zip |
ext/tarkin/gsttarkin.c: - Change RANK from NONE to PRIMARY (decoder)
Original commit message from CVS:
* ext/tarkin/gsttarkin.c :
- Change RANK from NONE to PRIMARY (decoder)
* ext/gdk_pixbuf/gstgdkpixbuf.c :
- Change RANK from NONE to MARGINAL (decoder)
* ext/divx/gstdivxenc.c :
- Change RANK from PRIMARY to NONE (encoder/spider issue)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/divx/gstdivxenc.c | 2 | ||||
-rw-r--r-- | ext/tarkin/gsttarkin.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/divx/gstdivxenc.c b/ext/divx/gstdivxenc.c index c7fd3f5d..3f381930 100644 --- a/ext/divx/gstdivxenc.c +++ b/ext/divx/gstdivxenc.c @@ -517,7 +517,7 @@ plugin_init (GstPlugin * plugin) /* create an elementfactory for the v4lmjpegsrcparse element */ return gst_element_register (plugin, "divxenc", - GST_RANK_PRIMARY, GST_TYPE_DIVXENC); + GST_RANK_NONE, GST_TYPE_DIVXENC); } diff --git a/ext/tarkin/gsttarkin.c b/ext/tarkin/gsttarkin.c index 0e8d859a..f59462a6 100644 --- a/ext/tarkin/gsttarkin.c +++ b/ext/tarkin/gsttarkin.c @@ -31,7 +31,7 @@ plugin_init (GstPlugin * plugin) GST_TYPE_TARKINENC)) return FALSE; - if (!gst_element_register (plugin, "tarkindec", GST_RANK_NONE, + if (!gst_element_register (plugin, "tarkindec", GST_RANK_PRIMARY, GST_TYPE_TARKINDEC)) return FALSE; |