]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/wsddec.c
avformat/matroskadec: Typos, nits and cosmetics
[ffmpeg] / libavformat / wsddec.c
index dfa8014b1c6a7dd0d2f355c4c815b522dfdc2cff..574addf620733546a938a7cb8a058d9954860b27 100644 (file)
@@ -137,7 +137,7 @@ static int wsd_read_header(AVFormatContext *s)
     if (!(channel_assign & 1)) {
         int i;
         for (i = 1; i < 32; i++)
-            if (channel_assign & (1 << i))
+            if ((channel_assign >> i) & 1)
                 st->codecpar->channel_layout |= wsd_to_av_channel_layoyt(s, i);
     }