diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-05-12 10:31:52 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-05-12 10:31:52 +0000 |
commit | 88a50f6c929abdd450c8269a49d26dcd1b4a219a (patch) | |
tree | 1f5eda280250d92edb70e755655bd8be9dc30f91 /libavcodec/dnxhdenc.c | |
parent | d9133126d38f426831e2866edaf03c658f41481d (diff) | |
download | ffmpeg-streaming-88a50f6c929abdd450c8269a49d26dcd1b4a219a.zip ffmpeg-streaming-88a50f6c929abdd450c8269a49d26dcd1b4a219a.tar.gz |
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
Diffstat (limited to 'libavcodec/dnxhdenc.c')
-rw-r--r-- | libavcodec/dnxhdenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c index 75cd1c7..f96ed3a 100644 --- a/libavcodec/dnxhdenc.c +++ b/libavcodec/dnxhdenc.c @@ -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", }; |