blob: afd1470e772a8c51e6a15736218ccb33a99e82dc (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef MPLAYER_MPBSWAP_H
#define MPLAYER_MPBSWAP_H
#include "libavutil/bswap.h"
#ifndef HAVE_SWAB
void swab(const void *from, void *to, ssize_t n);
#endif
#endif /* MPLAYER_MPBSWAP_H */
|