diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-11 00:13:18 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-11 00:13:18 +0000 |
commit | 0b2612b1cd0f197f150b6093ca42b09ee256b771 (patch) | |
tree | 7bf64140b874196c190a3ce039d37324cbae1115 /libavcodec/huffyuv.c | |
parent | 524c6b6342e4d8bcc4dcc582b4056003d165eb20 (diff) | |
download | ffmpeg-0b2612b1cd0f197f150b6093ca42b09ee256b771.tar.gz |
changed BGRA32 to RGBA32. XXX: clarify expected behaviour on big endian cpu
Originally committed as revision 1432 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r-- | libavcodec/huffyuv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c index 0eb701037d..bb2f83cee0 100644 --- a/libavcodec/huffyuv.c +++ b/libavcodec/huffyuv.c @@ -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; } |