mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-30 02:58:24 +00:00
ext/ffmpeg/gstffmpegdec.c (gst_ffmpegdec_register): Up the rank of the dv video decoder.
Original commit message from CVS: 2006-04-21 Andy Wingo <wingo@pobox.com> * ext/ffmpeg/gstffmpegdec.c (gst_ffmpegdec_register): Up the rank of the dv video decoder.
This commit is contained in:
parent
e57701a511
commit
3010963c91
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-04-21 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* ext/ffmpeg/gstffmpegdec.c (gst_ffmpegdec_register): Up the rank
|
||||
of the dv video decoder.
|
||||
|
||||
2006-04-19 J^ <j@bootlab.org>
|
||||
|
||||
reviewed by: Edward Hervey <edward@fluendo.com>
|
||||
|
|
|
@ -1736,6 +1736,12 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
|||
case CODEC_ID_H264:
|
||||
rank = GST_RANK_PRIMARY;
|
||||
break;
|
||||
case CODEC_ID_DVVIDEO:
|
||||
/* we have a good dv decoder, fast on both ppc as well as x86. they say
|
||||
libdv's quality is better though. leave as secondary.
|
||||
note: if you change this, see the code in gstdv.c in good/ext/dv. */
|
||||
rank = GST_RANK_SECONDARY;
|
||||
break;
|
||||
default:
|
||||
rank = GST_RANK_MARGINAL;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue