diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-11-26 18:59:36 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-11-26 18:59:36 +0000 |
commit | 5bc8ebd3eaa2f6f11e9fad9beeddf98c28fd45de (patch) | |
tree | 4a802cbaf1c67558331a43520492469fe4acf6e9 /libavfilter/avfilter.c | |
parent | 2a023c36eae7f6a150c42ecbdb67e9383b59fcb8 (diff) | |
download | ffmpeg-5bc8ebd3eaa2f6f11e9fad9beeddf98c28fd45de.tar.gz |
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
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index d6f07a9ed6..218a83bfb3 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -90,7 +90,7 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad, link->dst = dst; link->srcpad = srcpad; link->dstpad = dstpad; - link->format = -1; + link->format = PIX_FMT_NONE; return 0; } |