diff svq3.c @ 11031:b37a53d101c3 libavcodec

Fix svq3_* function declarations. Patch by Rafa¸«³l Carr¸«±, rafael D carre A gmail
author cehoyos
date Wed, 27 Jan 2010 22:22:01 +0000
parents fb2dcafa2db3
children 85f994215e24
line wrap: on
line diff
--- a/svq3.c	Wed Jan 27 21:31:19 2010 +0000
+++ b/svq3.c	Wed Jan 27 22:22:01 2010 +0000
@@ -126,7 +126,7 @@
 };
 
 
-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 @@
 }
 #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];