Commit 918b4116 authored by Michael Niedermayer's avatar Michael Niedermayer

rtpdec: support CSRC

Untested, due to lack of rtp stream with CSRCs, but the code as
is does not work with multiple CSRCs
Reviewed-by: 's avatarLuca Abeni <lucabe72@email.it>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b7ede94b
......@@ -629,6 +629,10 @@ static int rtp_parse_packet_internal(RTPDemuxContext *s, AVPacket *pkt,
len -= padding;
}
h = buf[0] & 0x0F;
buf += 4*h;
len -= 4*h;
s->seq = seq;
len -= 12;
buf += 12;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment