mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
rtmp: do not warn about receiving metadata packets
They are managed in get_packet() Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
8728b381cb
commit
9c9c21eaa1
@ -1114,7 +1114,8 @@ static int rtmp_parse_result(URLContext *s, RTMPContext *rt, RTMPPacket *pkt)
|
||||
break;
|
||||
case RTMP_PT_VIDEO:
|
||||
case RTMP_PT_AUDIO:
|
||||
/* Audio and Video packets are parsed in get_packet() */
|
||||
case RTMP_PT_METADATA:
|
||||
/* Audio, Video and Metadata packets are parsed in get_packet() */
|
||||
break;
|
||||
default:
|
||||
av_log(s, AV_LOG_VERBOSE, "Unknown packet type received 0x%02X\n", pkt->type);
|
||||
|
Loading…
Reference in New Issue
Block a user