Commit 88a50f6c authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Replace one more occurrence of -1 with PIX_FMT_NONE.

Fixes icc warning #188: enumerated type mixed with another type

Originally committed as revision 13136 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d9133126
......@@ -845,6 +845,6 @@ AVCodec dnxhd_encoder = {
dnxhd_encode_init,
dnxhd_encode_picture,
dnxhd_encode_end,
.pix_fmts = (enum PixelFormat[]){PIX_FMT_YUV422P, -1},
.pix_fmts = (enum PixelFormat[]){PIX_FMT_YUV422P, PIX_FMT_NONE},
.long_name = "VC3/DNxHD",
};
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