Flatpak: increase max matroska block size limit

This limit should be probably removed completely, but I am increasing it for the time being to avoid problems with detecting attached subtitles in matroska files.
This commit is contained in:
Rafostar
2021-01-10 23:10:06 +01:00
parent 64a31718c0
commit ac065e0b6b

View File

@@ -21,7 +21,7 @@ index 4d0234743..ce906e5a3 100644
#define GST_FLOW_OVERFLOW GST_FLOW_CUSTOM_ERROR
-
-#define MAX_BLOCK_SIZE (15 * 1024 * 1024)
+#define MAX_BLOCK_SIZE (30 * 1024 * 1024)
+#define MAX_BLOCK_SIZE (60 * 1024 * 1024)
static inline GstFlowReturn
gst_matroska_demux_check_read_size (GstMatroskaDemux * demux, guint64 bytes)