mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 22:15:42 +01:00
fixed the format of 16bit-au file.
This commit is contained in:
parent
2ebe53c082
commit
b9f9453a9a
1 changed files with 1 additions and 1 deletions
|
@ -702,7 +702,7 @@ static int test_au(int fd, void *buffer)
|
|||
hwparams.format = SND_PCM_FORMAT_U8;
|
||||
break;
|
||||
case AU_FMT_LIN16:
|
||||
hwparams.format = SND_PCM_FORMAT_U16_LE;
|
||||
hwparams.format = SND_PCM_FORMAT_S16_BE;
|
||||
break;
|
||||
default:
|
||||
return -1;
|
||||
|
|
Loading…
Reference in a new issue