From c98c263266cd1f3d285c1780b55d04fc3e37d2ec Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Sun, 8 Sep 2019 13:55:05 -0500 Subject: [PATCH] winegstreamer: Get rid of the unused "discont" field from GstImpl. Signed-off-by: Zebediah Figura Signed-off-by: Alexandre Julliard --- dlls/winegstreamer/gstdemux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c index 3761dbcdfcc..41afc222775 100644 --- a/dlls/winegstreamer/gstdemux.c +++ b/dlls/winegstreamer/gstdemux.c @@ -60,7 +60,7 @@ typedef struct GSTImpl { LONGLONG filesize; - BOOL discont, initial, ignore_flush; + BOOL initial, ignore_flush; GstElement *container; GstPad *my_src, *their_sink; GstBus *bus; @@ -1123,7 +1123,7 @@ static HRESULT GST_Connect(GSTImpl *This, IPin *pConnectPin, ALLOCATOR_PROPERTIE This->start = This->nextofs = This->nextpullofs = This->stop = 0; /* Add initial pins */ - This->initial = This->discont = TRUE; + This->initial = TRUE; ResetEvent(This->no_more_pads_event); gst_element_set_state(This->container, GST_STATE_PLAYING); ret = gst_element_get_state(This->container, NULL, NULL, -1);