mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
alsasrc: style fix
Use timestamp==0 instead of mixing it with !timestamp style checks.
This commit is contained in:
parent
8154b69112
commit
f70ca6d4cb
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 */
|
/* get high resolution time stamp from driver */
|
||||||
snd_pcm_status_get_htstamp (status, &htstamp);
|
snd_pcm_status_get_htstamp (status, &htstamp);
|
||||||
timestamp = GST_TIMESPEC_TO_TIME (htstamp);
|
timestamp = GST_TIMESPEC_TO_TIME (htstamp);
|
||||||
if (!timestamp) {
|
if (timestamp == 0) {
|
||||||
GST_INFO_OBJECT (src,
|
GST_INFO_OBJECT (src,
|
||||||
"This alsa source does support high resolution timestamps");
|
"This alsa source does support high resolution timestamps");
|
||||||
snd_pcm_status_get_tstamp (status, &tstamp);
|
snd_pcm_status_get_tstamp (status, &tstamp);
|
||||||
timestamp = GST_TIMEVAL_TO_TIME (tstamp);
|
timestamp = GST_TIMEVAL_TO_TIME (tstamp);
|
||||||
if (!timestamp) {
|
if (timestamp == 0) {
|
||||||
GST_INFO_OBJECT (src,
|
GST_INFO_OBJECT (src,
|
||||||
"This alsa source does support low resolution timestamps");
|
"This alsa source does support low resolution timestamps");
|
||||||
timestamp = gst_util_get_timestamp ();
|
timestamp = gst_util_get_timestamp ();
|
||||||
|
|
Loading…
Reference in a new issue