Commit cf786021 authored by Michael Niedermayer's avatar Michael Niedermayer

set pix_fmt properly depending on version

Originally committed as revision 10095 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 70bbeb6f
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment