diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-09 21:05:42 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-11 00:03:26 +0200 |
commit | aa909d300f1be6bfa2db66aa1b3e73cf6fc9231f (patch) | |
tree | b71728cbbd23e7cd2e590e744a0b655bcdf096e2 /libavcodec | |
parent | 1e97700fbaecc0262f654e0c8f75ee32590d721b (diff) | |
download | ffmpeg-aa909d300f1be6bfa2db66aa1b3e73cf6fc9231f.tar.gz |
tiff: prefer enum TiffCompr over int for TiffContext.compr
Help debugging, safer.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/tiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 09e9564c50..f252913b62 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -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; |