Browse Source

rematrix: use double during init.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 13 years ago
parent
commit
c3c1af6dc6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswresample/rematrix.c

+ 2
- 2
libswresample/rematrix.c View File

@@ -77,9 +77,9 @@ static int sane_layout(int64_t layout){

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

for(i=0; i<64; i++){
if(s->in_ch_layout & s->out_ch_layout & (1LL<<i))


Loading…
Cancel
Save