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.c | |
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.c')
-rw-r--r-- | libavcodec/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index d0cf50d9e8..c88830cafc 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -52,7 +52,7 @@ const PixelFormatTag ff_raw_pixelFormatTags[] = { { PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') }, { PIX_FMT_UYVY422, MKTAG('A', 'V', 'U', 'I') }, /* FIXME merge both fields */ - { -1, 0 }, + { PIX_FMT_NONE, 0 }, }; unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt) |