mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
d6c410b54c
Change #include lines for libavutil/intreadwrite.h, libavutil/bswap.h and libavutil/x86_cpu.h to use the MPlayer file under ffmpeg_files/ instead.
13 lines
236 B
C
13 lines
236 B
C
#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 */
|