Browse Source

changed BGRA32 to RGBA32. XXX: clarify expected behaviour on big endian cpu

Originally committed as revision 1432 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Fabrice Bellard 23 years ago
parent
commit
0b2612b1cd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/huffyuv.c

+ 1
- 1
libavcodec/huffyuv.c View File

@@ -403,7 +403,7 @@ s->bgr32=1;
case 24:
case 32:
if(s->bgr32){
avctx->pix_fmt = PIX_FMT_BGRA32;
avctx->pix_fmt = PIX_FMT_RGBA32;
}else{
avctx->pix_fmt = PIX_FMT_BGR24;
}


Loading…
Cancel
Save