[FFmpeg-cvslog] lavc/on2avc: silent warnings about const params

Lukasz Marek git at videolan.org
Sun May 11 06:45:05 CEST 2014


ffmpeg | branch: master | Lukasz Marek <lukasz.m.luki2 at gmail.com> | Sun May 11 06:21:25 2014 +0200| [ab57cbb7b10fb2e26c3de17d5fe963025d502ce5] | committer: Michael Niedermayer

lavc/on2avc: silent warnings about const params

Signed-off-by: Lukasz Marek <lukasz.m.luki2 at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ab57cbb7b10fb2e26c3de17d5fe963025d502ce5
---

 libavcodec/on2avc.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/on2avc.c b/libavcodec/on2avc.c
index 9378391..ed212f1 100644
--- a/libavcodec/on2avc.c
+++ b/libavcodec/on2avc.c
@@ -314,7 +314,7 @@ static void zero_head_and_tail(float *src, int len, int order0, int order1)
 }
 
 static void pretwiddle(float *src, float *dst, int dst_len, int tab_step,
-                       int step, int order0, int order1, const double **tabs)
+                       int step, int order0, int order1, const double * const *tabs)
 {
     float *src2, *out;
     const double *tab;
@@ -342,7 +342,7 @@ static void pretwiddle(float *src, float *dst, int dst_len, int tab_step,
 
 static void twiddle(float *src1, float *src2, int src2_len,
                     const double *tab, int tab_len, int step,
-                    int order0, int order1, const double **tabs)
+                    int order0, int order1, const double * const *tabs)
 {
     int steps;
     int mask;



More information about the ffmpeg-cvslog mailing list