From 54a951ff153281e83a49a990dc6e4fdfee42b21b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 26 Nov 2011 16:06:59 +0000 Subject: [PATCH] matroskademux: initialise seen_markup_tag field on subtitle stream context --- gst/matroska/matroska-ids.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/matroska/matroska-ids.c b/gst/matroska/matroska-ids.c index 5bed5e6dd3..8e6239594a 100644 --- a/gst/matroska/matroska-ids.c +++ b/gst/matroska/matroska-ids.c @@ -107,6 +107,7 @@ gst_matroska_track_init_subtitle_context (GstMatroskaTrackContext ** p_context) (*p_context)->type = GST_MATROSKA_TRACK_TYPE_SUBTITLE; subtitle_context->invalid_utf8 = FALSE; + subtitle_context->seen_markup_tag = FALSE; return TRUE; }