diff svq1dec.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 5b3acf9fd50a
children e943e1409077
line wrap: on
line diff
--- a/svq1dec.c	Sun May 11 20:26:35 2008 +0000
+++ b/svq1dec.c	Sun May 11 22:28:43 2008 +0000
@@ -825,6 +825,6 @@
     svq1_decode_frame,
     CODEC_CAP_DR1,
     .flush= ff_mpeg_flush,
-    .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV410P, -1},
+    .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV410P, PIX_FMT_NONE},
     .long_name= "Sorenson Vector Quantizer 1",
 };