Skip to content
Snippets Groups Projects
Commit 5bc8ebd3 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos
Browse files

Use PIX_FMT_NONE to silence icc warning #188:

enumerated type mixed with another type

Originally committed as revision 15942 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2a023c36
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,7 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad, ...@@ -90,7 +90,7 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad,
link->dst = dst; link->dst = dst;
link->srcpad = srcpad; link->srcpad = srcpad;
link->dstpad = dstpad; link->dstpad = dstpad;
link->format = -1; link->format = PIX_FMT_NONE;
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment