summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2018-01-08 13:20:13 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2018-01-08 13:20:13 +0100
commite8f7171a342efe3b067c3a3c474dd73b531fd6fc (patch)
tree193d8a5d468993844932ec52d5222b2ae09396ca
parent3f234a0b22bc19c45bb5b6ed3e663d081a0ea1ae (diff)
lavf/oggparseogm: Remove an unneeded assert.
Suggested-by: Reimar
-rw-r--r--libavformat/oggparseogm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/oggparseogm.c b/libavformat/oggparseogm.c
index fad093b629..3c5c7abbda 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;