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.

This is safer and helps debugging.

Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
Stefano Sabatini 2011-05-09 21:05:42 +02:00 committed by Diego Biurrun
parent 5f0bb0baef
commit 8102d886be

View File

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