mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
ffmpegdec: sipro decoder should have higher rank than realaudiodec
This commit is contained in:
parent
f9c2467241
commit
dc2efe2d24
1 changed files with 7 additions and 3 deletions
|
@ -2944,10 +2944,14 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
||||||
case CODEC_ID_COOK:
|
case CODEC_ID_COOK:
|
||||||
rank = GST_RANK_PRIMARY;
|
rank = GST_RANK_PRIMARY;
|
||||||
break;
|
break;
|
||||||
|
/* 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.
|
||||||
|
*
|
||||||
|
* SIPR: decoder should have a higher rank than realaudiodec.
|
||||||
|
*/
|
||||||
case CODEC_ID_DVVIDEO:
|
case CODEC_ID_DVVIDEO:
|
||||||
/* we have a good dv decoder, fast on both ppc as well as x86. they say
|
case CODEC_ID_SIPR:
|
||||||
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;
|
rank = GST_RANK_SECONDARY;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue