From ec1ff94e7bdf1a9964a8d6807251caa53b37fe64 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 4 Mar 2009 20:04:25 +0100 Subject: [PATCH] gstffmpegdec: Bring the real decoders up to GST_RANK_PRIMARY. They have proven by now that they're more reliable than the -bad real wrapper plugins. --- ext/ffmpeg/gstffmpegdec.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ext/ffmpeg/gstffmpegdec.c b/ext/ffmpeg/gstffmpegdec.c index 8b451a429f..0bd5879245 100644 --- a/ext/ffmpeg/gstffmpegdec.c +++ b/ext/ffmpeg/gstffmpegdec.c @@ -2600,6 +2600,12 @@ gst_ffmpegdec_register (GstPlugin * plugin) case CODEC_ID_MPEG4: case CODEC_ID_MSMPEG4V3: case CODEC_ID_H264: + case CODEC_ID_RA_144: + case CODEC_ID_RA_288: + case CODEC_ID_RV10: + case CODEC_ID_RV20: + case CODEC_ID_RV30: + case CODEC_ID_RV40: case CODEC_ID_COOK: rank = GST_RANK_PRIMARY; break;