mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-16 12:21:18 +00:00
rtpdec_xiph: Correct the bitmask for num_pkts
Originally committed as revision 24696 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
49d63851cb
commit
737b3972b5
@ -85,7 +85,7 @@ static int xiph_handle_packet(AVFormatContext * ctx,
|
|||||||
ident = AV_RB24(buf);
|
ident = AV_RB24(buf);
|
||||||
fragmented = buf[3] >> 6;
|
fragmented = buf[3] >> 6;
|
||||||
tdt = (buf[3] >> 4) & 3;
|
tdt = (buf[3] >> 4) & 3;
|
||||||
num_pkts = buf[3] & 7;
|
num_pkts = buf[3] & 0xf;
|
||||||
pkt_len = AV_RB16(buf + 4);
|
pkt_len = AV_RB16(buf + 4);
|
||||||
|
|
||||||
if (pkt_len > len - 6) {
|
if (pkt_len > len - 6) {
|
||||||
|
Loading…
Reference in New Issue
Block a user