Browse Source

lavc/on2avc: silent warnings about const params

Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Lukasz Marek Michael Niedermayer 11 years ago
parent
commit
ab57cbb7b1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/on2avc.c

+ 2
- 2
libavcodec/on2avc.c View File

@@ -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;


Loading…
Cancel
Save