qtdemux: allow larger files
authorMichael Olbrich <m.olbrich@pengutronix.de>
Wed, 22 Mar 2017 14:25:17 +0000 (15:25 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Thu, 10 Aug 2017 13:17:56 +0000 (16:17 +0300)
For really long files such as contiguous recordings of a whole day, the
50MB limit is not sufficient.

https://bugzilla.gnome.org/show_bug.cgi?id=781458

gst/isomp4/qtdemux.c

index 7e0d47c..be362a6 100644 (file)
@@ -86,7 +86,7 @@
 #define QTDEMUX_MAX_ATOM_SIZE (25*1024*1024)
 
 /* if the sample index is larger than this, something is likely wrong */
-#define QTDEMUX_MAX_SAMPLE_INDEX_SIZE (50*1024*1024)
+#define QTDEMUX_MAX_SAMPLE_INDEX_SIZE (200*1024*1024)
 
 /* For converting qt creation times to unix epoch times */
 #define QTDEMUX_SECONDS_PER_DAY (60 * 60 * 24)