Browse Source

Replace an occurence of -1 by PIX_FMT_NONE, fixes icc warning #188:

enumerated type mixed with another type

Originally committed as revision 19283 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Carl Eugen Hoyos 16 years ago
parent
commit
a10de6dc4b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/v210enc.c

+ 1
- 1
libavcodec/v210enc.c View File

@@ -124,6 +124,6 @@ AVCodec v210_encoder = {
encode_init,
encode_frame,
encode_close,
.pix_fmts = (enum PixelFormat[]){PIX_FMT_YUV422P16, -1},
.pix_fmts = (enum PixelFormat[]){PIX_FMT_YUV422P16, PIX_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
};

Loading…
Cancel
Save