rtpdec_xiph: Correct the bitmask for num_pkts
authorMartin Storsjö <martin@martin.st>
Wed, 4 Aug 2010 17:22:25 +0000 (17:22 +0000)
committerMartin Storsjö <martin@martin.st>
Wed, 4 Aug 2010 17:22:25 +0000 (17:22 +0000)
Originally committed as revision 24696 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rtpdec_xiph.c

index 4c44c8a..9b5e3e3 100644 (file)
@@ -85,7 +85,7 @@ static int xiph_handle_packet(AVFormatContext * ctx,
     ident       = AV_RB24(buf);
     fragmented  = buf[3] >> 6;
     tdt         = (buf[3] >> 4) & 3;
-    num_pkts    = buf[3] & 7;
+    num_pkts    = buf[3] & 0xf;
     pkt_len     = AV_RB16(buf + 4);
 
     if (pkt_len > len - 6) {