1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-02 09:19:58 +02:00

tiff: prefer enum TiffCompr over int for TiffContext.compr

Help debugging, safer.
This commit is contained in:
Stefano Sabatini 2011-05-09 21:05:42 +02:00
parent 1e97700fba
commit aa909d300f

View File

@ -40,7 +40,7 @@ typedef struct TiffContext {
int width, height;
unsigned int bpp;
int le;
int compr;
enum TiffCompr compr;
int invert;
int fax_opts;
int predictor;