diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 12:10:21 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:38 +0200 |
commit | 3e2efacdd8a3ffb5d1c9004f112492b946284f9b (patch) | |
tree | 11532872d32b303c6654955f4b0a1355a17e22e9 /libavcodec/jfdctfst.c | |
parent | 9cf0841ef35239660fc313314778414e2828f025 (diff) | |
download | ffmpeg-3e2efacdd8a3ffb5d1c9004f112492b946284f9b.tar.gz |
libavcodec: Prefix fdct_ifast, fdct_ifast248
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/jfdctfst.c')
-rw-r--r-- | libavcodec/jfdctfst.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/jfdctfst.c b/libavcodec/jfdctfst.c index b8dc407f7b..3e30e5d535 100644 --- a/libavcodec/jfdctfst.c +++ b/libavcodec/jfdctfst.c @@ -205,7 +205,7 @@ static av_always_inline void row_fdct(DCTELEM * data){ */ GLOBAL(void) -fdct_ifast (DCTELEM * data) +ff_fdct_ifast (DCTELEM * data) { int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; int tmp10, tmp11, tmp12, tmp13; @@ -271,7 +271,7 @@ fdct_ifast (DCTELEM * data) */ GLOBAL(void) -fdct_ifast248 (DCTELEM * data) +ff_fdct_ifast248 (DCTELEM * data) { int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; int tmp10, tmp11, tmp12, tmp13; |