Commit 9ce5f3b7 authored by Michael Niedermayer's avatar Michael Niedermayer

explicit values for all enums

Originally committed as revision 7683 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a20a37e6
......@@ -28,10 +28,10 @@ typedef struct BMPContext {
} BMPContext;
typedef enum {
BMP_RGB=0,
BMP_RLE8,
BMP_RLE4,
BMP_BITFIELDS,
BMP_RGB =0,
BMP_RLE8 =1,
BMP_RLE4 =2,
BMP_BITFIELDS =3,
} BiCompression;
#define read16(bits) bswap_16(get_bits(bits, 16))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment