mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
parent
21b252727d
commit
6d167abdfa
1 changed files with 2 additions and 2 deletions
|
@ -278,12 +278,12 @@ gst_alsasrc_get_timestamp (GstAlsaSrc * src)
|
|||
/* get high resolution time stamp from driver */
|
||||
snd_pcm_status_get_htstamp (status, &htstamp);
|
||||
timestamp = GST_TIMESPEC_TO_TIME (htstamp);
|
||||
if (timestamp == 0) {
|
||||
if (!timestamp) {
|
||||
GST_INFO_OBJECT (src,
|
||||
"This alsa source does support high resolution timestamps");
|
||||
snd_pcm_status_get_tstamp (status, &tstamp);
|
||||
timestamp = GST_TIMEVAL_TO_TIME (tstamp);
|
||||
if (timestamp == 0) {
|
||||
if (!timestamp) {
|
||||
GST_INFO_OBJECT (src,
|
||||
"This alsa source does support low resolution timestamps");
|
||||
timestamp = gst_util_get_timestamp ();
|
||||
|
|
Loading…
Reference in a new issue