diff --git a/libavformat/rtpenc_h264.c b/libavformat/rtpenc_h264.c index 0f8850ee77..11074d0d51 100644 --- a/libavformat/rtpenc_h264.c +++ b/libavformat/rtpenc_h264.c @@ -40,7 +40,7 @@ static const uint8_t *avc_mp4_find_startcode(const uint8_t *start, const uint8_t res = (res << 8) | *start++; } - if (res + start > end) { + if (end - start < res) { return NULL; }