mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:15:43 +01:00
aplay: Use standard endian convesions
asm/*.h stuff shouldn't be used directly from the user-space apps. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
ce2d64b48a
commit
36d642f448
1 changed files with 5 additions and 5 deletions
|
@ -48,7 +48,7 @@
|
|||
#include <sys/signal.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <asm/byteorder.h>
|
||||
#include <endian.h>
|
||||
#include "aconfig.h"
|
||||
#include "gettext.h"
|
||||
#include "formats.h"
|
||||
|
@ -1508,9 +1508,9 @@ static void compute_max_peak(u_char *data, size_t count)
|
|||
c = 0;
|
||||
while (count-- > 0) {
|
||||
if (format_little_endian)
|
||||
sval = __le16_to_cpu(*valp);
|
||||
sval = le16toh(*valp);
|
||||
else
|
||||
sval = __be16_to_cpu(*valp);
|
||||
sval = be16toh(*valp);
|
||||
sval = abs(sval) ^ mask;
|
||||
if (max_peak[c] < sval)
|
||||
max_peak[c] = sval;
|
||||
|
@ -1553,9 +1553,9 @@ static void compute_max_peak(u_char *data, size_t count)
|
|||
c = 0;
|
||||
while (count-- > 0) {
|
||||
if (format_little_endian)
|
||||
val = __le32_to_cpu(*valp);
|
||||
val = le32toh(*valp);
|
||||
else
|
||||
val = __be32_to_cpu(*valp);
|
||||
val = be32toh(*valp);
|
||||
val = abs(val) ^ mask;
|
||||
if (max_peak[c] < val)
|
||||
max_peak[c] = val;
|
||||
|
|
Loading…
Reference in a new issue