[PATCH v2 4/5] winegstreamer: Set MF_PD_DURATION on source's presentation descriptor.

Derek Lesho dlesho at codeweavers.com
Mon Nov 2 13:34:55 CST 2020


Signed-off-by: Derek Lesho <dlesho at codeweavers.com>
---
v2: Address nits.
---
 dlls/winegstreamer/media_source.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/dlls/winegstreamer/media_source.c b/dlls/winegstreamer/media_source.c
index e1b23c1e92d..7755282c01f 100644
--- a/dlls/winegstreamer/media_source.c
+++ b/dlls/winegstreamer/media_source.c
@@ -1237,6 +1237,7 @@ static HRESULT media_source_constructor(IMFByteStream *bytestream, struct media_
 
     struct media_source *object = heap_alloc_zero(sizeof(*object));
     IMFStreamDescriptor **descriptors = NULL;
+    gint64 total_pres_time = 0;
     DWORD bytestream_caps;
     unsigned int i;
     HRESULT hr;
@@ -1354,6 +1355,25 @@ static HRESULT media_source_constructor(IMFByteStream *bytestream, struct media_
     heap_free(descriptors);
     descriptors = NULL;
 
+    for (i = 0; i < object->stream_count; i++)
+    {
+        gint64 stream_pres_time;
+        if (gst_pad_query_duration(object->streams[i]->their_src, GST_FORMAT_TIME, &stream_pres_time))
+        {
+            TRACE("Stream %u has duration %llu\n", i, (unsigned long long int) stream_pres_time);
+
+            if (stream_pres_time > total_pres_time)
+                total_pres_time = stream_pres_time;
+        }
+        else
+        {
+            WARN("Unable to get presentation time of stream %u\n", i);
+        }
+    }
+
+    if (object->stream_count)
+        IMFPresentationDescriptor_SetUINT64(object->pres_desc, &MF_PD_DURATION, total_pres_time / 100);
+
     object->state = SOURCE_STOPPED;
 
     *out_media_source = object;
-- 
2.28.0




More information about the wine-devel mailing list