diff --git a/libavformat/rtp_mpv.c b/libavformat/rtp_mpv.c index d42f2e770ccaf6df94880326f9eb1083bb942cd7..061eb351924fb1bbd525e4ff7e36e4e1e258762e 100644 --- a/libavformat/rtp_mpv.c +++ b/libavformat/rtp_mpv.c @@ -76,7 +76,7 @@ void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size) } r1 = r; } else { - if (r - r1 < max_packet_size) { + if (r - r1 < max_packet_size - 4) { len = r1 - buf1 - 4; end_of_slice = 1; }