repo.or.cz
/
mplayer
/
greg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix wrong #endif comment that does not match the #ifdef directive.
[mplayer/greg.git]
/
osdep
/
swab.c
blob
46da22c744221a8b32f2207f7a53c20d6ec3948b
1
#include
"config.h"
2
3
/* system has no swab. emulate via bswap */
4
#include
"mpbswap.h"
5
#include <unistd.h>
6
7
void
swab
(
const void
*
from
,
void
*
to
,
ssize_t n
) {
8
const int16_t
*
in
= (
int16_t
*)
from
;
9
int16_t
*
out
= (
int16_t
*)
to
;
10
int
i
;
11
n
/=
2
;
12
for
(
i
=
0
;
i
<
n
;
i
++) {
13
out
[
i
] =
bswap_16
(
in
[
i
]);
14
}
15
}