Browse Source

Fixed decoding of 410p ffv1 files patch by (Milan Cutka <cutka szm sk>)

Originally committed as revision 3964 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Milan Cutka Michael Niedermayer 21 years ago
parent
commit
d6c80d3633
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ffv1.c

+ 1
- 1
libavcodec/ffv1.c View File

@@ -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;


Loading…
Cancel
Save