]> git.sesse.net Git - ffmpeg/blobdiff - libswresample/rematrix.c
x86: Fix assembly with NASM
[ffmpeg] / libswresample / rematrix.c
index 72da438e6c917c1b3b6296e92626ce5d4dc9f5cc..3115c99ddeb74542857ea5777c2d526a511c7b87 100644 (file)
@@ -158,7 +158,7 @@ av_cold static int auto_matrix(SwrContext *s)
 
     memset(s->matrix, 0, sizeof(s->matrix));
     for(i=0; i<64; i++){
-        if(in_ch_layout & out_ch_layout & (1LL<<i))
+        if(in_ch_layout & out_ch_layout & (1ULL<<i))
             matrix[i][i]= 1.0;
     }