From e8f7171a342efe3b067c3a3c474dd73b531fd6fc Mon Sep 17 00:00:00 2001
From: Carl Eugen Hoyos <ceffmpeg@gmail.com>
Date: Mon, 8 Jan 2018 13:20:13 +0100
Subject: [PATCH] lavf/oggparseogm: Remove an unneeded assert.

Suggested-by: Reimar
---
 libavformat/oggparseogm.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libavformat/oggparseogm.c b/libavformat/oggparseogm.c
index fad093b629a..3c5c7abbda7 100644
--- a/libavformat/oggparseogm.c
+++ b/libavformat/oggparseogm.c
@@ -106,7 +106,6 @@ ogm_header(AVFormatContext *s, int idx)
                 size -= 4;
             }
             if (size > 52) {
-                av_assert0(AV_INPUT_BUFFER_PADDING_SIZE <= 52);
                 size -= 52;
                 if (bytestream2_get_bytes_left(&p) < size)
                     return AVERROR_INVALIDDATA;
-- 
GitLab