diff raw.c @ 8023:76f6a08c9fe6 libavcodec

Fix some icc warnings by using enum PixelFormat instead of int where appropriate.
author cehoyos
date Mon, 13 Oct 2008 07:42:11 +0000
parents 6b8daf48b82f
children 765685da1483
line wrap: on
line diff
--- a/raw.c	Mon Oct 13 00:10:53 2008 +0000
+++ b/raw.c	Mon Oct 13 07:42:11 2008 +0000
@@ -52,7 +52,7 @@
     { 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)