Mercurial > libavcodec.hg
changeset 4394:182949fbc53e libavcodec
explicit values for all enums
author | michael |
---|---|
date | Wed, 24 Jan 2007 11:01:17 +0000 |
parents | 5187883df562 |
children | b0bfea78ca13 |
files | bmp.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/bmp.c Wed Jan 24 10:41:03 2007 +0000 +++ b/bmp.c Wed Jan 24 11:01:17 2007 +0000 @@ -28,10 +28,10 @@ } 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))