From 6b5e95023688decf48b51d70ddd0b08251ecd300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Zanelli?= Date: Thu, 9 Oct 2014 13:11:48 +0200 Subject: [PATCH] vc1parse: set seq_layer_sent to FALSE on reset() https://bugzilla.gnome.org/show_bug.cgi?id=738526 --- gst/videoparsers/gstvc1parse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/videoparsers/gstvc1parse.c b/gst/videoparsers/gstvc1parse.c index 764d8cb796..7c2608b42f 100644 --- a/gst/videoparsers/gstvc1parse.c +++ b/gst/videoparsers/gstvc1parse.c @@ -288,6 +288,7 @@ gst_vc1_parse_reset (GstVC1Parse * vc1parse) gst_buffer_replace (&vc1parse->seq_hdr_buffer, NULL); gst_buffer_replace (&vc1parse->entrypoint_buffer, NULL); + vc1parse->seq_layer_sent = FALSE; vc1parse->frame_layer_first_frame_sent = FALSE; }