comparison libswscale/swscale.c @ 30307:63ff519cc9f1

Remove inline from initFilter() It makes no sense having that function inlined.
author mru
date Sun, 17 Jan 2010 14:25:17 +0000
parents e054adfb8849
children b33880a47b41
comparison
equal deleted inserted replaced
30306:d0b5ec16fb23 30307:63ff519cc9f1
1347 c + 3.0*d, 1347 c + 3.0*d,
1348 -b- 3.0*c - 6.0*d, 1348 -b- 3.0*c - 6.0*d,
1349 dist-1.0); 1349 dist-1.0);
1350 } 1350 }
1351 1351
1352 static inline int initFilter(int16_t **outFilter, int16_t **filterPos, int *outFilterSize, int xInc, 1352 static int initFilter(int16_t **outFilter, int16_t **filterPos, int *outFilterSize, int xInc,
1353 int srcW, int dstW, int filterAlign, int one, int flags, 1353 int srcW, int dstW, int filterAlign, int one, int flags,
1354 SwsVector *srcFilter, SwsVector *dstFilter, double param[2]) 1354 SwsVector *srcFilter, SwsVector *dstFilter, double param[2])
1355 { 1355 {
1356 int i; 1356 int i;
1357 int filterSize; 1357 int filterSize;