mirror of https://git.ffmpeg.org/ffmpeg.git
libswr/rematrix: remove unused variable.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
80287854c2
commit
a34869ed7d
|
@ -82,7 +82,7 @@ static int sane_layout(int64_t layout){
|
||||||
}
|
}
|
||||||
|
|
||||||
int swr_rematrix_init(SwrContext *s){
|
int swr_rematrix_init(SwrContext *s){
|
||||||
int i, j, in_i, out_i;
|
int i, j, out_i;
|
||||||
double matrix[64][64]={{0}};
|
double matrix[64][64]={{0}};
|
||||||
int64_t unaccounted= s->in_ch_layout & ~s->out_ch_layout;
|
int64_t unaccounted= s->in_ch_layout & ~s->out_ch_layout;
|
||||||
double maxcoef=0;
|
double maxcoef=0;
|
||||||
|
|
Loading…
Reference in New Issue