[FFmpeg-cvslog] r15942 - trunk/libavfilter/avfilter.c
cehoyos
subversion
Wed Nov 26 19:59:37 CET 2008
Author: cehoyos
Date: Wed Nov 26 19:59:36 2008
New Revision: 15942
Log:
Use PIX_FMT_NONE to silence icc warning #188:
enumerated type mixed with another type
Modified:
trunk/libavfilter/avfilter.c
Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c (original)
+++ trunk/libavfilter/avfilter.c Wed Nov 26 19:59:36 2008
@@ -90,7 +90,7 @@ int avfilter_link(AVFilterContext *src,
link->dst = dst;
link->srcpad = srcpad;
link->dstpad = dstpad;
- link->format = -1;
+ link->format = PIX_FMT_NONE;
return 0;
}
More information about the ffmpeg-cvslog
mailing list