All of lore.kernel.org
 help / color / mirror / Atom feed
* usage of snd_seq_queue_status_get_real_time()
@ 2005-04-08  0:51 Steve deRosier
  2005-04-08  6:54 ` Clemens Ladisch
  0 siblings, 1 reply; 6+ messages in thread
From: Steve deRosier @ 2005-04-08  0:51 UTC (permalink / raw)
  To: Alsa-Devel

All,

I'm trying to use the snd_seq_queue_status_get_real_time() call to retrieve the current time on the queue so I can compare it to the events I'm pushing into the queue (in order to track down a possible synchronization bug).  But every call I do ends up outputting the same data.

Here's the relevant code snippets:

const snd_seq_real_time_t * CMIDIPort::GetRealQueueTime( void )
{
  snd_seq_queue_status_t * qs;

  snd_seq_queue_status_alloca( &qs );
  snd_seq_get_queue_status( hSeq, mQueue, qs );
  return snd_seq_queue_status_get_real_time( qs );
}

Caller:
// snip
  const snd_seq_real_time_t * CurTime = mMIDIPort.GetRealQueueTime();
  Debugger->DebugMsg( this, "MIDI clock time %d.%d", (int) CurTime->tv_sec, (int) CurTime->tv_nsec );
// snip


and the output:
...
[CAlsaSender | 15:19:22] MIDI clock time 28.-1086326380
[CAlsaSender | 15:19:22] MIDI clock time 28.-1086326380
[CAlsaSender | 15:19:22] MIDI clock time 28.-1086326380
[CAlsaSender | 15:19:35] MIDI clock time 28.-1086326380
[CAlsaSender | 15:19:35] MIDI clock time 28.-1086326380
[CAlsaSender | 15:19:35] MIDI clock time 28.-1086326380
...

I'm sure it's obvious, but I just don't see what the problem is.
/proc/asound/seq/queues shows me the time is continually incrementing.

Thanks,
- Steve



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-04-13  8:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-08  0:51 usage of snd_seq_queue_status_get_real_time() Steve deRosier
2005-04-08  6:54 ` Clemens Ladisch
2005-04-08 15:47   ` Steve deRosier
2005-04-11  8:47     ` Clemens Ladisch
2005-04-12 19:15       ` Steve deRosier
2005-04-13  8:10         ` Clemens Ladisch

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.