mirror of https://git.ffmpeg.org/ffmpeg.git
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
This commit is contained in:
parent
06be9d9d8e
commit
a10de6dc4b
|
@ -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…
Reference in New Issue