Commit a10de6dc authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

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
parent 06be9d9d
...@@ -124,6 +124,6 @@ AVCodec v210_encoder = { ...@@ -124,6 +124,6 @@ AVCodec v210_encoder = {
encode_init, encode_init,
encode_frame, encode_frame,
encode_close, 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"), .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment