blob: f7e4963e4593e707f3d9eca2efb3c4abcdf497a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MPLAYER_MPBSWAP_H
#define MPLAYER_MPBSWAP_H
#include <sys/types.h>
#include "config.h"
#include "ffmpeg_files/bswap.h"
#ifndef HAVE_SWAB
void swab(const void *from, void *to, ssize_t n);
#endif
#endif /* MPLAYER_MPBSWAP_H */
|