diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-26 23:49:17 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-26 23:49:17 +0200 |
commit | 701012d676042608cd6ec3317c1936a246f436d7 (patch) | |
tree | d1e30fcc9dcb633b317febeb2d3785856e1b5730 /libavcodec | |
parent | a138121bf1f952073914d493c099ebfea22ac5f7 (diff) | |
download | ffmpeg-701012d676042608cd6ec3317c1936a246f436d7.tar.gz |
Fix 32bit rawvideo in avi on big-endian.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/rawdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 9702f98918..f8e119b017 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -56,7 +56,7 @@ static const PixelFormatTag pix_fmt_bps_avi[] = { { PIX_FMT_RGB555, 15 }, { PIX_FMT_RGB555, 16 }, { PIX_FMT_BGR24, 24 }, - { PIX_FMT_RGB32, 32 }, + { PIX_FMT_BGRA, 32 }, { PIX_FMT_NONE, 0 }, }; |