mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
pulsesrc: don't fail when not negotiated yet
When get_time is called but we are not yet negotiated, return 0 instead of posting an error. It's possible that the base class is still negotiating when our get_time is called.
This commit is contained in:
parent
497ff16355
commit
619b2bd1a9
1 changed files with 4 additions and 3 deletions
|
@ -1721,10 +1721,11 @@ gst_pulsesrc_get_time (GstClock * clock, GstPulseSrc * src)
|
|||
pa_usec_t time = 0;
|
||||
|
||||
pa_threaded_mainloop_lock (src->mainloop);
|
||||
|
||||
if (gst_pulsesrc_is_dead (src, TRUE)) {
|
||||
if (!src->stream)
|
||||
goto unlock_and_out;
|
||||
|
||||
if (gst_pulsesrc_is_dead (src, TRUE))
|
||||
goto unlock_and_out;
|
||||
}
|
||||
|
||||
if (pa_stream_get_time (src->stream, &time) < 0) {
|
||||
GST_DEBUG_OBJECT (src, "could not get time");
|
||||
|
|
Loading…
Reference in a new issue