[PATCH 1/4] winegstreamer: Use the "filesize" field in push_data().

Zebediah Figura z.figura12 at gmail.com
Wed Jan 27 16:18:44 CST 2021


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/winegstreamer/gstdemux.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c
index 5c6266f4bd0..9b47bf4f88c 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -823,10 +823,10 @@ static gboolean event_sink(GstPad *pad, GstObject *parent, GstEvent *event)
 
 static DWORD CALLBACK push_data(LPVOID iface)
 {
-    LONGLONG maxlen, curlen;
     struct parser *This = iface;
     GstMapInfo mapping;
     GstBuffer *buffer;
+    LONGLONG maxlen;
     HRESULT hr;
 
     if (!(buffer = gst_buffer_new_allocate(NULL, 16384, NULL)))
@@ -837,10 +837,7 @@ static DWORD CALLBACK push_data(LPVOID iface)
 
     IBaseFilter_AddRef(&This->filter.IBaseFilter_iface);
 
-    if (!This->stop)
-        IAsyncReader_Length(This->reader, &maxlen, &curlen);
-    else
-        maxlen = This->stop;
+    maxlen = This->stop ? This->stop : This->filesize;
 
     TRACE("Starting..\n");
     for (;;) {
-- 
2.30.0




More information about the wine-devel mailing list