From f7c2602d411081262b0fb258bc628b29b2db5878 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Tue, 13 Dec 2022 22:04:58 +0900 Subject: [PATCH] splitmuxsrc: Proxy latency query to part reader splitmuxsrc can respond to the latency query Part-of: --- subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsrc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsrc.c b/subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsrc.c index 92d6ddb79a..1b1359efc5 100644 --- a/subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsrc.c +++ b/subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsrc.c @@ -1480,7 +1480,8 @@ splitmux_src_pad_query (GstPad * pad, GstObject * parent, GstQuery * query) " on %" GST_PTR_FORMAT, query, pad); switch (GST_QUERY_TYPE (query)) { case GST_QUERY_CAPS: - case GST_QUERY_POSITION:{ + case GST_QUERY_POSITION: + case GST_QUERY_LATENCY:{ GstSplitMuxPartReader *part; SplitMuxSrcPad *anypad;