Browse Source

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>
tags/n0.11
Paul B Mahol Michael Niedermayer 13 years ago
parent
commit
841e669a39
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/cdxl.c

+ 2
- 2
libavcodec/cdxl.c View File

@@ -25,8 +25,8 @@
#include "get_bits.h" #include "get_bits.h"


#define BIT_PLANAR 0x00 #define BIT_PLANAR 0x00
#define BYTE_PLANAR 0x20
#define CHUNKY 0x40
#define CHUNKY 0x20
#define BYTE_PLANAR 0x40
#define BIT_LINE 0x80 #define BIT_LINE 0x80
#define BYTE_LINE 0xC0 #define BYTE_LINE 0xC0




Loading…
Cancel
Save