summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-01-27 22:22:01 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-01-27 22:22:01 +0000
commit881b5b80da6bf63d01db5baa1db602a20f64b12c (patch)
tree6c9e08f51133975e29c1dba7630ffe0538f93fb8 /libavcodec/svq3.c
parente3d88073155f24d87eb998064026cf1d23621ab0 (diff)
Fix svq3_* function declarations.
Patch by Rafaël Carré, rafael D carre A gmail Originally committed as revision 21489 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 5d16c3b2d3..b367a7f272 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -126,7 +126,7 @@ static const uint32_t svq3_dequant_coeff[32] = {
};
-void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp)
+void ff_svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp)
{
const int qmul = svq3_dequant_coeff[qp];
#define stride 16
@@ -163,7 +163,7 @@ void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp)
}
#undef stride
-void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp,
+void ff_svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp,
int dc)
{
const int qmul = svq3_dequant_coeff[qp];