From d7b736fa1171542ff0d303ebd0050f960beee1af Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Thu, 8 Jun 2017 16:55:29 +0200 Subject: [PATCH] matroskademux: increase chunk size when scanning for cluster --- gst/matroska/matroska-demux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 75606cdf41..7aa885edd7 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -1659,7 +1659,7 @@ gst_matroska_demux_search_cluster (GstMatroskaDemux * demux, gint64 * pos) gint64 newpos = *pos; gint64 orig_offset; GstFlowReturn ret = GST_FLOW_OK; - const guint chunk = 64 * 1024; + const guint chunk = 128 * 1024; GstBuffer *buf = NULL; GstMapInfo map; gpointer data = NULL;