diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-18 08:06:08 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-18 08:06:08 +0000 |
commit | 780daf2b095286f480a1302c87223c78dd3dd0a1 (patch) | |
tree | 4e20a8af32ff8e8a821f98a63c915010c24124ea /libswscale/swscale_template.c | |
parent | fa3f2a351396e9d6469cf0e6f7a19380b852f38f (diff) | |
download | ffmpeg-780daf2b095286f480a1302c87223c78dd3dd0a1.tar.gz |
Consistently use ff_ prefixes for internal symbols.
Originally committed as revision 28988 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale_template.c')
-rw-r--r-- | libswscale/swscale_template.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index 80704f6eb6..f08fcf5bf0 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -1160,14 +1160,14 @@ static inline void RENAME(yuv2packedX)(SwsContext *c, int16_t *lumFilter, int16_ #endif /* HAVE_MMX */ #if HAVE_ALTIVEC /* The following list of supported dstFormat values should - match what's found in the body of altivec_yuv2packedX() */ + match what's found in the body of ff_yuv2packedX_altivec() */ if (!(c->flags & SWS_BITEXACT) && (c->dstFormat==PIX_FMT_ABGR || c->dstFormat==PIX_FMT_BGRA || c->dstFormat==PIX_FMT_BGR24 || c->dstFormat==PIX_FMT_RGB24 || c->dstFormat==PIX_FMT_RGBA || c->dstFormat==PIX_FMT_ARGB)) - altivec_yuv2packedX (c, lumFilter, lumSrc, lumFilterSize, - chrFilter, chrSrc, chrFilterSize, - dest, dstW, dstY); + ff_yuv2packedX_altivec(c, lumFilter, lumSrc, lumFilterSize, + chrFilter, chrSrc, chrFilterSize, + dest, dstW, dstY); else #endif yuv2packedXinC(c, lumFilter, lumSrc, lumFilterSize, |