diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-20 10:48:40 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-29 10:23:52 +0200 |
commit | 3aa682f25324d811ec284edc808eb71a46eae950 (patch) | |
tree | 6a2f304fc442c60cd07aec8ae1c25d6bdd6c6392 /libswscale/swscale_unscaled.c | |
parent | c2503d9c8ab42ea55922e9f5a10c8bfbbbfeaf19 (diff) | |
download | ffmpeg-3aa682f25324d811ec284edc808eb71a46eae950.tar.gz |
swscale: consistent names for arch-specific acceleration functions
Diffstat (limited to 'libswscale/swscale_unscaled.c')
-rw-r--r-- | libswscale/swscale_unscaled.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale_unscaled.c b/libswscale/swscale_unscaled.c index 88bd3802aa..7333d5fd0b 100644 --- a/libswscale/swscale_unscaled.c +++ b/libswscale/swscale_unscaled.c @@ -1090,9 +1090,9 @@ void ff_get_unscaled_swscale(SwsContext *c) } if (ARCH_BFIN) - ff_bfin_get_unscaled_swscale(c); + ff_get_unscaled_swscale_bfin(c); if (ARCH_PPC) - ff_swscale_get_unscaled_ppc(c); + ff_get_unscaled_swscale_ppc(c); } static void reset_ptr(const uint8_t *src[], int format) |