Commit 28c4165c authored by cehoyos's avatar cehoyos

Replace one more occurrence of -1 with PIX_FMT_NONE.

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13136 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3a9fdb3a
...@@ -845,6 +845,6 @@ AVCodec dnxhd_encoder = { ...@@ -845,6 +845,6 @@ AVCodec dnxhd_encoder = {
dnxhd_encode_init, dnxhd_encode_init,
dnxhd_encode_picture, dnxhd_encode_picture,
dnxhd_encode_end, 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", .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