diff options
author | Edward Hervey <bilboed@bilboed.com> | 2009-03-04 19:50:10 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-03-04 20:02:04 +0100 |
commit | 6a91eb2f48a44c96dc7e14a4dab7c112c8e4b0c9 (patch) | |
tree | aa69a47ead4ccafaf5539bdfe6f344110d2072e9 /gst | |
parent | 1f42ece99f0b10cf161a67dbc06d157ec3a0432f (diff) | |
download | gstreamer-plugins-bad-6a91eb2f48a44c96dc7e14a4dab7c112c8e4b0c9.tar.gz |
gsreal: bring down the rank of the real decoders to MARGINAL.
Basically, at this point, the ffmpeg equivalent decoders perform way
better, so we'll make the ffmpeg equivalents PRIMARY and these
MARGINAL.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/real/gstreal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/real/gstreal.c b/gst/real/gstreal.c index 80595a90a..33ea4c5f2 100644 --- a/gst/real/gstreal.c +++ b/gst/real/gstreal.c @@ -29,10 +29,10 @@ static gboolean plugin_init (GstPlugin * p) { - if (!gst_element_register (p, "realvideodec", GST_RANK_PRIMARY, + if (!gst_element_register (p, "realvideodec", GST_RANK_MARGINAL, GST_TYPE_REAL_VIDEO_DEC)) return FALSE; - if (!gst_element_register (p, "realaudiodec", GST_RANK_SECONDARY, + if (!gst_element_register (p, "realaudiodec", GST_RANK_MARGINAL, GST_TYPE_REAL_AUDIO_DEC)) return FALSE; |