/* ==================================================================== * Copyright (c) 1999-2001 Carnegie Mellon University. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * This work was supported in part by funding from the Defense Advanced * Research Projects Agency and the National Science Foundation of the * United States of America, and the CMU Sphinx Speech Consortium. * * THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY * NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * ==================================================================== * */ /* * byteorder.h -- Byte swapping ordering macros. * * ********************************************** * CMU ARPA Speech Project * * Copyright (c) 1996 Carnegie Mellon University. * ALL RIGHTS RESERVED. * ********************************************** * * HISTORY * * 16-May-96 M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * Created from Fil Alleva's original. */ /* in place byte order conversion nothing is promised to be returned currently only works for suns and Vax MIPS machines */ #if defined(mips) || defined(__alpha) || defined(WIN32) || (! __BIG_ENDIAN__) #define SWAPBYTES #define SWAPW(x) *(x) = ((0xff & (*(x))>>8) | (0xff00 & (*(x))<<8)) #define SWAPL(x) *(x) = ((0xff & (*(x))>>24) | (0xff00 & (*(x))>>8) |\ (0xff0000 & (*(x))<<8) | (0xff000000 & (*(x))<<24)) #define SWAPF(x) SWAPL((int *) x) #define SWAPP(x) SWAPL((int *) x) #define SWAPD(x) { int *low = (int *) (x), *high = (int *) (x) + 1,\ temp;\ SWAPL(low); SWAPL(high);\ temp = *low; *low = *high; *high = temp;} /* yes, these "reversed senses" are confusing. FIXME. */ #define SWAP_W(x) #define SWAP_L(x) #else /* don't need byte order conversion, do nothing */ #define SWAPW(x) #define SWAPL(x) #define SWAPF(x) #define SWAPP(x) #define SWAPD(x) /* "reversed senses". FIXME. */ #define SWAP_W(x) x = ( (((x)<<8)&0x0000ff00) | (((x)>>8)&0x00ff) ) #define SWAP_L(x) x = ( (((x)<<24)&0xff000000) | (((x)<<8)&0x00ff0000) | \ (((x)>>8)&0x0000ff00) | (((x)>>24)&0x000000ff) ) #endif