mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-17 21:14:47 +00:00
rtmp: handle bytes read reports
0x03 (bytes read report) is a known type and should be safely ignored beside in debug situations.
This commit is contained in:
parent
fe5fba44c5
commit
fb96c1c5fe
@ -1200,6 +1200,9 @@ static int rtmp_parse_result(URLContext *s, RTMPContext *rt, RTMPPacket *pkt)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
switch (pkt->type) {
|
switch (pkt->type) {
|
||||||
|
case RTMP_PT_BYTES_READ:
|
||||||
|
av_dlog(s, "received bytes read report\n");
|
||||||
|
break;
|
||||||
case RTMP_PT_CHUNK_SIZE:
|
case RTMP_PT_CHUNK_SIZE:
|
||||||
if ((ret = handle_chunk_size(s, pkt)) < 0)
|
if ((ret = handle_chunk_size(s, pkt)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user