rtpdec: Fix the minimum packet length for RTCP SR packets
We actually read 20 bytes of these packets. Signed-off-by: Martin Storsjö <martin@martin.st> (cherry picked from commit 5d6ecf5345c0913e2b66427ea062e7989201a139) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5ae87280e2
commit
d398d042c1
@ -114,7 +114,7 @@ static int rtcp_parse_packet(RTPDemuxContext *s, const unsigned char *buf, int l
|
|||||||
while (len >= 2) {
|
while (len >= 2) {
|
||||||
switch (buf[1]) {
|
switch (buf[1]) {
|
||||||
case RTCP_SR:
|
case RTCP_SR:
|
||||||
if (len < 16) {
|
if (len < 20) {
|
||||||
av_log(NULL, AV_LOG_ERROR, "Invalid length for RTCP SR packet\n");
|
av_log(NULL, AV_LOG_ERROR, "Invalid length for RTCP SR packet\n");
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user