mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
rtmp: Return an error when the client bandwidth is incorrect
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
be8f949219
commit
abf77a247b
@ -932,8 +932,16 @@ static int handle_client_bw(URLContext *s, RTMPPacket *pkt)
|
||||
pkt->data_size);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
av_log(s, AV_LOG_DEBUG, "Client bandwidth = %d\n", AV_RB32(pkt->data));
|
||||
rt->client_report_size = AV_RB32(pkt->data) >> 1;
|
||||
|
||||
rt->client_report_size = AV_RB32(pkt->data);
|
||||
if (rt->client_report_size <= 0) {
|
||||
av_log(s, AV_LOG_ERROR, "Incorrect client bandwidth %d\n",
|
||||
rt->client_report_size);
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
}
|
||||
av_log(s, AV_LOG_DEBUG, "Client bandwidth = %d\n", rt->client_report_size);
|
||||
rt->client_report_size >>= 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user