mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
rtmpsrc: Fix position querying
It's the position we're querying, not the duration :)
This commit is contained in:
parent
9538651a20
commit
3cb5bc8868
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ gst_rtmp_src_query (GstBaseSrc * basesrc, GstQuery * query)
|
|||
|
||||
gst_query_parse_position (query, &format, NULL);
|
||||
if (format == GST_FORMAT_TIME) {
|
||||
gst_query_set_duration (query, format, src->last_timestamp);
|
||||
gst_query_set_position (query, format, src->last_timestamp);
|
||||
ret = TRUE;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue