diff zmbvenc.c @ 6788:e1302edb0f69 libavcodec

Replace some occurrences of -1 with PIX_FMT_NONE. Fixes icc warning #188: enumerated type mixed with another type
author cehoyos
date Sun, 11 May 2008 22:28:43 +0000
parents 99966715fe75
children 0f70462b5c21
line wrap: on
line diff
--- a/zmbvenc.c	Sun May 11 20:26:35 2008 +0000
+++ b/zmbvenc.c	Sun May 11 22:28:43 2008 +0000
@@ -329,6 +329,6 @@
     encode_init,
     encode_frame,
     encode_end,
-    .pix_fmts = (enum PixelFormat[]){PIX_FMT_PAL8, -1},
+    .pix_fmts = (enum PixelFormat[]){PIX_FMT_PAL8, PIX_FMT_NONE},
     .long_name = "Zip Motion Blocks Video",
 };