mirror of
https://gitee.com/openharmony/third_party_alsa-lib
synced 2024-11-27 01:31:08 +00:00
test: audio_time - fix timestamp2ns() and usage()
BugLink: https://github.com/alsa-project/alsa-lib/issues/132 Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
c6e0f24ef9
commit
c71bb0fb39
@ -19,7 +19,6 @@
|
||||
#include <math.h>
|
||||
#include "../include/asoundlib.h"
|
||||
|
||||
static char *command;
|
||||
static char *pcm_name = "hw:0";
|
||||
snd_output_t *output = NULL;
|
||||
|
||||
@ -42,7 +41,7 @@ long long timestamp2ns(snd_htimestamp_t t)
|
||||
{
|
||||
long long nsec;
|
||||
|
||||
nsec = t.tv_sec * 1000000000;
|
||||
nsec = t.tv_sec * 1000000000ULL;
|
||||
nsec += t.tv_nsec;
|
||||
|
||||
return nsec;
|
||||
@ -149,7 +148,7 @@ int main(int argc, char *argv[])
|
||||
while ((c = getopt_long(argc, argv, short_options, long_options, &option_index)) != -1) {
|
||||
switch (c) {
|
||||
case 'h':
|
||||
usage(command);
|
||||
usage(argv[0]);
|
||||
return 0;
|
||||
case 'p':
|
||||
do_playback = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user