From 6c6d8b0b956d81cb33dcdcf9e53e0359f8162b53 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 15 Nov 2017 08:28:47 +0100 Subject: [PATCH] oggstream: Demote error to warning --- ext/ogg/gstoggstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/ogg/gstoggstream.c b/ext/ogg/gstoggstream.c index 93d97f9832..52135536c7 100644 --- a/ext/ogg/gstoggstream.c +++ b/ext/ogg/gstoggstream.c @@ -1583,7 +1583,7 @@ packet_duration_ogm (GstOggStream * pad, ogg_packet * packet) offset = 1 + (((data[0] & 0xc0) >> 6) | ((data[0] & 0x02) << 1)); if (offset > packet->bytes) { - GST_ERROR ("buffer too small"); + GST_WARNING ("buffer too small"); return -1; }