Commit 317aefe0 authored by michael's avatar michael

explicit values for all enums


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7683 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e8fcd4a4
...@@ -28,10 +28,10 @@ typedef struct BMPContext { ...@@ -28,10 +28,10 @@ typedef struct BMPContext {
} BMPContext; } BMPContext;
typedef enum { typedef enum {
BMP_RGB=0, BMP_RGB =0,
BMP_RLE8, BMP_RLE8 =1,
BMP_RLE4, BMP_RLE4 =2,
BMP_BITFIELDS, BMP_BITFIELDS =3,
} BiCompression; } BiCompression;
#define read16(bits) bswap_16(get_bits(bits, 16)) #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