flvdemux: Query duration upstream first
Upstream elements (like rtmpsrc) might be able to provide the duration more accurately than flvdemux. Especially with index-less vod files
This commit is contained in:
parent
1648e46f86
commit
2b9493b5f0
@ -3136,6 +3136,11 @@ gst_flv_demux_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
||||
{
|
||||
GstFormat format;
|
||||
|
||||
/* Try to push upstream first */
|
||||
res = gst_pad_peer_query (demux->sinkpad, query);
|
||||
if (res)
|
||||
goto beach;
|
||||
|
||||
gst_query_parse_duration (query, &format, NULL);
|
||||
|
||||
/* duration is time only */
|
||||
|
Loading…
x
Reference in New Issue
Block a user