Browse Source

tiff: prefer enum TiffCompr over int for TiffContext.compr

Help debugging, safer.
tags/n0.8
Stefano Sabatini 14 years ago
parent
commit
aa909d300f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/tiff.c

+ 1
- 1
libavcodec/tiff.c 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;


Loading…
Cancel
Save