From 841e669a39ce83a5b96b51b5774ebda7f216d326 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 20 Mar 2012 23:59:26 +0000 Subject: 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 Signed-off-by: Michael Niedermayer --- libavcodec/cdxl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/cdxl.c') diff --git a/libavcodec/cdxl.c b/libavcodec/cdxl.c index f0b278c..3701891 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 -- cgit v1.1