From 0424368cfc66445b41a58f805f6f024eb8e20ab7 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Fri, 29 Jul 2011 13:03:55 +0200 Subject: [PATCH] qtdemux: soften assertion check on stream size https://bugzilla.gnome.org/show_bug.cgi?id=655570 --- gst/isomp4/qtdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c index 898fc71f6d..dd6d173f5e 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -7458,7 +7458,7 @@ gst_qtdemux_guess_bitrate (GstQTDemux * qtdemux) /* Subtract the header size */ GST_DEBUG_OBJECT (qtdemux, "Total size %" G_GINT64_FORMAT ", header size %u", size, qtdemux->header_size); - g_assert (size > qtdemux->header_size); + g_assert (size >= qtdemux->header_size); size = size - qtdemux->header_size; if (!gst_qtdemux_get_duration (qtdemux, &duration) ||