comparison imgresample.c @ 8313:2eaafc02cd3d libavcodec

Add img_convert() to imgconvert.h and #include it from imgresample.c. This fixes an implicit declaration of img_convert() warning. taken from a patchset from Anders Gr?nberg, galileo.m2 gmail com
author diego
date Sat, 13 Dec 2008 12:56:29 +0000
parents 0d108ec85620
children 589f9a71df95
comparison
equal deleted inserted replaced
8312:87ae12cd9db0 8313:2eaafc02cd3d
24 * High quality image resampling with polyphase filters . 24 * High quality image resampling with polyphase filters .
25 */ 25 */
26 26
27 #include "avcodec.h" 27 #include "avcodec.h"
28 #include "dsputil.h" 28 #include "dsputil.h"
29 #include "imgconvert.h"
29 #include "libswscale/swscale.h" 30 #include "libswscale/swscale.h"
30 31
31 #ifdef HAVE_ALTIVEC 32 #ifdef HAVE_ALTIVEC
32 #include "ppc/imgresample_altivec.h" 33 #include "ppc/imgresample_altivec.h"
33 #endif 34 #endif