]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/svq3.c
Indeo 5 decoder
[ffmpeg] / libavcodec / svq3.c
index 5d16c3b2d37e9ad9ed6626daec9b989d837abee8..b367a7f272a811b1aecf68b4fdd50e9cc1b90e1a 100644 (file)
@@ -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];