From 1cd4baa16a52d191739deff5b38bc88da67972cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 28 Sep 2015 18:03:51 +0200 Subject: [PATCH] matroskademux: Remove leftover assertion from 0.10 We now allocate memory via GstAllocator and as such can handle arbitrary alignments, not only <= G_MEM_ALIGN. https://bugzilla.gnome.org/show_bug.cgi?id=755708 --- gst/matroska/matroska-demux.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 0937fb75d5..6612107b5e 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -3701,7 +3701,6 @@ gst_matroska_demux_parse_blockgroup_or_simpleblock (GstMatroskaDemux * demux, for 32 bit samples, etc), or bad things will happen downstream as elements typically assume minimal alignment. Therefore, create an aligned copy if necessary. */ - g_assert (stream->alignment <= G_MEM_ALIGN); sub = gst_matroska_demux_align_buffer (demux, sub, stream->alignment); if (GST_BUFFER_PTS_IS_VALID (sub)) {