From d6c80d3633b9fe1d0470ab2e060c050a167cfa42 Mon Sep 17 00:00:00 2001 From: Milan Cutka Date: Thu, 17 Feb 2005 19:03:12 +0000 Subject: [PATCH] Fixed decoding of 410p ffv1 files patch by (Milan Cutka ) Originally committed as revision 3964 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ffv1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 737e3f4114..cd1fa73688 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -889,7 +889,7 @@ static int read_header(FFV1Context *f){ case 0x10: f->avctx->pix_fmt= PIX_FMT_YUV422P; break; case 0x11: f->avctx->pix_fmt= PIX_FMT_YUV420P; break; case 0x20: f->avctx->pix_fmt= PIX_FMT_YUV411P; break; - case 0x33: f->avctx->pix_fmt= PIX_FMT_YUV410P; break; + case 0x22: f->avctx->pix_fmt= PIX_FMT_YUV410P; break; default: av_log(f->avctx, AV_LOG_ERROR, "format not supported\n"); return -1;