From 5a84d3bef7341b8bf8ef1cae8a24107f2e5dd057 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Fri, 5 Jan 2018 23:18:52 +1100 Subject: [PATCH] [client] h264: don't treat parse failure as fatal --- client/decoders/h264.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/decoders/h264.c b/client/decoders/h264.c index a5435b42..434bcac9 100644 --- a/client/decoders/h264.c +++ b/client/decoders/h264.c @@ -618,8 +618,8 @@ static bool lgd_h264_decode(void * opaque, const uint8_t * src, size_t srcSize) if (!nal_parse(this->nal, src, srcSize)) { - DEBUG_ERROR("Failed to parse required information"); - return false; + DEBUG_WARN("nal_parse, perhaps mid stream"); + return true; } uint8_t pic_type;