# HG changeset patch # User michael # Date 1108666992 0 # Node ID a7779d61c8cef179c6fd9bb4e0218de4ea21eef2 # Parent 366e8a09eb6e2c827d28e4e9c43dcf6226e39c11 Fixed decoding of 410p ffv1 files patch by (Milan Cutka ) diff -r 366e8a09eb6e -r a7779d61c8ce ffv1.c --- a/ffv1.c Thu Feb 17 19:00:42 2005 +0000 +++ b/ffv1.c Thu Feb 17 19:03:12 2005 +0000 @@ -889,7 +889,7 @@ 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;