yading@10: /* yading@10: * This file is part of MPlayer. yading@10: * yading@10: * MPlayer is free software; you can redistribute it and/or modify yading@10: * it under the terms of the GNU General Public License as published by yading@10: * the Free Software Foundation; either version 2 of the License, or yading@10: * (at your option) any later version. yading@10: * yading@10: * MPlayer is distributed in the hope that it will be useful, yading@10: * but WITHOUT ANY WARRANTY; without even the implied warranty of yading@10: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the yading@10: * GNU General Public License for more details. yading@10: * yading@10: * You should have received a copy of the GNU General Public License along yading@10: * with MPlayer; if not, write to the Free Software Foundation, Inc., yading@10: * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. yading@10: */ yading@10: yading@10: #ifndef MPLAYER_MPBSWAP_H yading@10: #define MPLAYER_MPBSWAP_H yading@10: yading@10: #include yading@10: #include "config.h" yading@10: #include "libavutil/bswap.h" yading@10: yading@10: #define bswap_16(v) av_bswap16(v) yading@10: #define bswap_32(v) av_bswap32(v) yading@10: #define le2me_16(v) av_le2ne16(v) yading@10: #define le2me_32(v) av_le2ne32(v) yading@10: #define le2me_64(v) av_le2ne64(v) yading@10: #define be2me_16(v) av_be2ne16(v) yading@10: #define be2me_32(v) av_be2ne32(v) yading@10: yading@10: #endif /* MPLAYER_MPBSWAP_H */