blob: 46da22c744221a8b32f2207f7a53c20d6ec3948b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "config.h"
/* system has no swab. emulate via bswap */
#include "mpbswap.h"
#include <unistd.h>
void swab(const void *from, void *to, ssize_t n) {
const int16_t *in = (int16_t*)from;
int16_t *out = (int16_t*)to;
int i;
n /= 2;
for (i = 0 ; i < n; i++) {
out[i] = bswap_16(in[i]);
}
}
|