diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-10-13 07:42:11 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-10-13 07:42:11 +0000 |
commit | 95240bf3e3887cf4c04a27f9bd5831051a73d55b (patch) | |
tree | 20fe48b29bfc6753e7577883a3674ab07679cbef /libavcodec/raw.h | |
parent | 40056c32df9fb6db2774dcc0d4f87cbfd759058e (diff) | |
download | ffmpeg-95240bf3e3887cf4c04a27f9bd5831051a73d55b.tar.gz |
Fix some icc warnings by using enum PixelFormat instead of int where appropriate.
Originally committed as revision 15611 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/raw.h')
-rw-r--r-- | libavcodec/raw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/raw.h b/libavcodec/raw.h index e600dca395..2fbf2d6605 100644 --- a/libavcodec/raw.h +++ b/libavcodec/raw.h @@ -30,7 +30,7 @@ #include "avcodec.h" typedef struct PixelFormatTag { - int pix_fmt; + enum PixelFormat pix_fmt; unsigned int fourcc; } PixelFormatTag; |