diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-03-20 23:59:26 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-21 03:03:33 +0100 |
commit | 841e669a39ce83a5b96b51b5774ebda7f216d326 (patch) | |
tree | ffca8ff517625a40c48c19faa23811d2d47aead7 /libavcodec/cdxl.c | |
parent | 3eaf7120534122a651b8ddeebe3af79786337bed (diff) | |
download | ffmpeg-841e669a39ce83a5b96b51b5774ebda7f216d326.tar.gz |
cdxl: swap CHUNKY and BYTE_PLANAR
This is how it is defined in Amiga Developer CD from year 1992 and
is consistent with files created with ADPro.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/cdxl.c')
-rw-r--r-- | libavcodec/cdxl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cdxl.c b/libavcodec/cdxl.c index f0b278cfb4..37018912e9 100644 --- a/libavcodec/cdxl.c +++ b/libavcodec/cdxl.c @@ -25,8 +25,8 @@ #include "get_bits.h" #define BIT_PLANAR 0x00 -#define BYTE_PLANAR 0x20 -#define CHUNKY 0x40 +#define CHUNKY 0x20 +#define BYTE_PLANAR 0x40 #define BIT_LINE 0x80 #define BYTE_LINE 0xC0 |