Commit a940f915 authored by cehoyos's avatar cehoyos

Use PIX_FMT_NONE to silence icc warning #188:

enumerated type mixed with another type


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15942 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8bde7da1
...@@ -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;
} }
......
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