1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

Make sws_dcVec static: It is only used inside libswscale/utils.c.

Originally committed as revision 30787 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Carl Eugen Hoyos 2010-02-28 02:18:16 +00:00
parent dda8fc6a09
commit 627686e635

View File

@ -1311,7 +1311,7 @@ SwsVector *sws_getIdentityVec(void)
return sws_getConstVec(1.0, 1);
}
double sws_dcVec(SwsVector *a)
static double sws_dcVec(SwsVector *a)
{
int i;
double sum=0;