From: Takashi Iwai Date: Tue, 7 May 2002 12:20:19 +0000 (+0000) Subject: fixed the format of 16bit-au file. X-Git-Tag: v1.0.3~136 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=b9f9453a9a768a1d0a20d121921a219c5e5bc297;p=alsa-utils.git fixed the format of 16bit-au file. --- diff --git a/aplay/aplay.c b/aplay/aplay.c index 5748547..a910a46 100644 --- a/aplay/aplay.c +++ b/aplay/aplay.c @@ -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;