mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-12-23 03:46:31 +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;
|
hwparams.format = SND_PCM_FORMAT_U8;
|
||||||
break;
|
break;
|
||||||
case AU_FMT_LIN16:
|
case AU_FMT_LIN16:
|
||||||
hwparams.format = SND_PCM_FORMAT_U16_LE;
|
hwparams.format = SND_PCM_FORMAT_S16_BE;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in a new issue