mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 12:55:16 +00:00
97e5f304ce
to avoid clashing with external libdvdread. (Sync with libdvdread r1122) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27498 b3059339-0415-0410-9bf9-f77b7e298cf2
17 lines
279 B
C
17 lines
279 B
C
#ifndef DVDREAD_BSWAP_H
|
|
#define DVDREAD_BSWAP_H
|
|
|
|
#include "libavutil/bswap.h"
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
#define B2N_16(x)
|
|
#define B2N_32(x)
|
|
#define B2N_64(x)
|
|
#else
|
|
#define B2N_16(x) x = bswap_16(x)
|
|
#define B2N_32(x) x = bswap_32(x)
|
|
#define B2N_64(x) x = bswap_64(x)
|
|
#endif
|
|
|
|
#endif
|