mirror of
https://github.com/mpv-player/mpv
synced 2024-12-17 12:25:03 +00:00
0792780cb7
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26576 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
|