yading@10
|
1 /*
|
yading@10
|
2 * This file is part of MPlayer.
|
yading@10
|
3 *
|
yading@10
|
4 * MPlayer is free software; you can redistribute it and/or modify
|
yading@10
|
5 * it under the terms of the GNU General Public License as published by
|
yading@10
|
6 * the Free Software Foundation; either version 2 of the License, or
|
yading@10
|
7 * (at your option) any later version.
|
yading@10
|
8 *
|
yading@10
|
9 * MPlayer is distributed in the hope that it will be useful,
|
yading@10
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
yading@10
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
yading@10
|
12 * GNU General Public License for more details.
|
yading@10
|
13 *
|
yading@10
|
14 * You should have received a copy of the GNU General Public License along
|
yading@10
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
yading@10
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
yading@10
|
17 */
|
yading@10
|
18
|
yading@10
|
19 #ifndef MPLAYER_MPBSWAP_H
|
yading@10
|
20 #define MPLAYER_MPBSWAP_H
|
yading@10
|
21
|
yading@10
|
22 #include <sys/types.h>
|
yading@10
|
23 #include "config.h"
|
yading@10
|
24 #include "libavutil/bswap.h"
|
yading@10
|
25
|
yading@10
|
26 #define bswap_16(v) av_bswap16(v)
|
yading@10
|
27 #define bswap_32(v) av_bswap32(v)
|
yading@10
|
28 #define le2me_16(v) av_le2ne16(v)
|
yading@10
|
29 #define le2me_32(v) av_le2ne32(v)
|
yading@10
|
30 #define le2me_64(v) av_le2ne64(v)
|
yading@10
|
31 #define be2me_16(v) av_be2ne16(v)
|
yading@10
|
32 #define be2me_32(v) av_be2ne32(v)
|
yading@10
|
33
|
yading@10
|
34 #endif /* MPLAYER_MPBSWAP_H */
|