diff options
author | Måns Rullgård <mans@mansr.com> | 2009-01-18 05:52:17 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-01-18 05:52:17 +0000 |
commit | 179c56b87987139f20ff9c2838bbe15a0a3b1872 (patch) | |
tree | ccad3532cb77e7d36893a49f6d8d2f238b133e08 /libavcodec/alpha/simple_idct_alpha.c | |
parent | 7d95741f839f1bfe0ee24612a7673cce8becc421 (diff) | |
download | ffmpeg-179c56b87987139f20ff9c2838bbe15a0a3b1872.tar.gz |
Alpha: add ff_ prefix to idct functions
Originally committed as revision 16668 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alpha/simple_idct_alpha.c')
-rw-r--r-- | libavcodec/alpha/simple_idct_alpha.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/alpha/simple_idct_alpha.c b/libavcodec/alpha/simple_idct_alpha.c index 8c63f1f3ec..45e70dcf2d 100644 --- a/libavcodec/alpha/simple_idct_alpha.c +++ b/libavcodec/alpha/simple_idct_alpha.c @@ -255,7 +255,7 @@ static inline void idct_col2(DCTELEM *col) stq(l, col + 14 * 4); stq(r, col + 15 * 4); } -void simple_idct_axp(DCTELEM *block) +void ff_simple_idct_axp(DCTELEM *block) { int i; @@ -295,14 +295,14 @@ void simple_idct_axp(DCTELEM *block) } } -void simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block) +void ff_simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block) { - simple_idct_axp(block); + ff_simple_idct_axp(block); put_pixels_clamped_axp_p(block, dest, line_size); } -void simple_idct_add_axp(uint8_t *dest, int line_size, DCTELEM *block) +void ff_simple_idct_add_axp(uint8_t *dest, int line_size, DCTELEM *block) { - simple_idct_axp(block); + ff_simple_idct_axp(block); add_pixels_clamped_axp_p(block, dest, line_size); } |