Commit 6ad494d2 authored by cehoyos's avatar cehoyos

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

enumerated type mixed with another type


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19283 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0c1bebdc
......@@ -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"),
};
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