Browse Source

set pix_fmt properly depending on version

Originally committed as revision 10095 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 18 years ago
parent
commit
cf786021a6
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/4xm.c

+ 2
- 1
libavcodec/4xm.c View File

@@ -787,7 +787,8 @@ static int decode_init(AVCodecContext *avctx){
common_init(avctx);
init_vlcs(f);

avctx->pix_fmt= PIX_FMT_RGB565;
if(f->version) avctx->pix_fmt= PIX_FMT_RGB565;
else avctx->pix_fmt= PIX_FMT_RGB555;

return 0;
}


Loading…
Cancel
Save