[alsa-devel] [PATCH] alsa-utils: fix timespec to msec conversion
Takashi Iwai
tiwai at suse.de
Wed Jan 22 08:06:29 CET 2014
At Tue, 21 Jan 2014 15:25:12 -0500,
Olivier Langlois wrote:
>
> There is 1M nsec in a msec.
>
> Signed-off-by: Olivier Langlois <olivier at trillion01.com>
Applied, thanks.
Takashi
> ---
> aplay/aplay.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/aplay/aplay.c b/aplay/aplay.c
> index 69e8bda..33a8ed5 100644
> --- a/aplay/aplay.c
> +++ b/aplay/aplay.c
> @@ -1509,7 +1509,7 @@ static void xrun(void)
> timermsub(&now, &tstamp, &diff);
> fprintf(stderr, _("%s!!! (at least %.3f ms long)\n"),
> stream == SND_PCM_STREAM_PLAYBACK ? _("underrun") : _("overrun"),
> - diff.tv_sec * 1000 + diff.tv_nsec / 10000000.0);
> + diff.tv_sec * 1000 + diff.tv_nsec / 1000000.0);
> #else
> fprintf(stderr, "%s !!!\n", _("underrun"));
> #endif
> --
> 1.8.5.3
>
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel at alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
More information about the Alsa-devel
mailing list