SVQ3 uses the JPEG variant of YUV 4:2:0.
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 16 Jul 2008 17:48:47 +0000 (17:48 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 16 Jul 2008 17:48:47 +0000 (17:48 +0000)
Fixes issue256

Originally committed as revision 14257 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/h264.c

index a030959..c46b01e 100644 (file)
@@ -2200,6 +2200,10 @@ static av_cold int decode_init(AVCodecContext *avctx){
 //    s->decode_mb= ff_h263_decode_mb;
     s->quarter_sample = 1;
     s->low_delay= 1;
+
+    if(avctx->codec_id == CODEC_ID_SVQ3)
+        avctx->pix_fmt= PIX_FMT_YUVJ420P;
+    else
     avctx->pix_fmt= PIX_FMT_YUV420P;
 
     decode_init_vlc();