Browse Source

libswr/rematrix: add braces to silence a warning.

Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Nicolas George Michael Niedermayer 13 years ago
parent
commit
80287854c2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libswresample/rematrix.c

+ 1
- 1
libswresample/rematrix.c View File

@@ -83,7 +83,7 @@ static int sane_layout(int64_t layout){

int swr_rematrix_init(SwrContext *s){
int i, j, in_i, out_i;
double matrix[64][64]={0};
double matrix[64][64]={{0}};
int64_t unaccounted= s->in_ch_layout & ~s->out_ch_layout;
double maxcoef=0;



Loading…
Cancel
Save