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
This commit is contained in:
Carl Eugen Hoyos 2008-05-12 10:31:52 +00:00
parent d9133126d3
commit 88a50f6c92
1 changed files with 1 additions and 1 deletions

View File

@ -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",
};