2009-01-05 12:41:40 +00:00
|
|
|
/*
|
|
|
|
* The sample format system used lin libaf is based on bitmasks.
|
|
|
|
* The format definition only refers to the storage format,
|
|
|
|
* not the resolution.
|
|
|
|
*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2008-02-22 09:09:46 +00:00
|
|
|
|
|
|
|
#ifndef MPLAYER_AF_FORMAT_H
|
|
|
|
#define MPLAYER_AF_FORMAT_H
|
2002-11-12 12:33:56 +00:00
|
|
|
|
2008-02-24 23:44:35 +00:00
|
|
|
#include "config.h"
|
2005-01-12 22:00:02 +00:00
|
|
|
|
2007-09-25 16:34:23 +00:00
|
|
|
// Endianness
|
2002-11-12 12:33:56 +00:00
|
|
|
#define AF_FORMAT_BE (0<<0) // Big Endian
|
|
|
|
#define AF_FORMAT_LE (1<<0) // Little Endian
|
|
|
|
#define AF_FORMAT_END_MASK (1<<0)
|
|
|
|
|
2009-07-26 19:53:00 +00:00
|
|
|
#if HAVE_BIGENDIAN // Native endian of cpu
|
2002-11-12 12:33:56 +00:00
|
|
|
#define AF_FORMAT_NE AF_FORMAT_BE
|
|
|
|
#else
|
|
|
|
#define AF_FORMAT_NE AF_FORMAT_LE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Signed/unsigned
|
2004-12-27 17:30:15 +00:00
|
|
|
#define AF_FORMAT_SI (0<<1) // Signed
|
|
|
|
#define AF_FORMAT_US (1<<1) // Unsigned
|
2002-11-12 12:33:56 +00:00
|
|
|
#define AF_FORMAT_SIGN_MASK (1<<1)
|
|
|
|
|
2004-10-04 19:11:05 +00:00
|
|
|
// Fixed or floating point
|
2002-11-12 12:33:56 +00:00
|
|
|
#define AF_FORMAT_I (0<<2) // Int
|
|
|
|
#define AF_FORMAT_F (1<<2) // Foating point
|
|
|
|
#define AF_FORMAT_POINT_MASK (1<<2)
|
|
|
|
|
2004-12-27 17:30:15 +00:00
|
|
|
// Bits used
|
|
|
|
#define AF_FORMAT_8BIT (0<<3)
|
|
|
|
#define AF_FORMAT_16BIT (1<<3)
|
|
|
|
#define AF_FORMAT_24BIT (2<<3)
|
|
|
|
#define AF_FORMAT_32BIT (3<<3)
|
|
|
|
#define AF_FORMAT_40BIT (4<<3)
|
|
|
|
#define AF_FORMAT_48BIT (5<<3)
|
|
|
|
#define AF_FORMAT_BITS_MASK (7<<3)
|
|
|
|
|
2002-11-12 12:33:56 +00:00
|
|
|
// Special flags refering to non pcm data
|
2004-12-27 17:30:15 +00:00
|
|
|
#define AF_FORMAT_MU_LAW (1<<6)
|
|
|
|
#define AF_FORMAT_A_LAW (2<<6)
|
|
|
|
#define AF_FORMAT_MPEG2 (3<<6) // MPEG(2) audio
|
2010-01-11 19:08:15 +00:00
|
|
|
#define AF_FORMAT_AC3 (4<<6) // Dolby Digital AC3
|
2004-12-27 17:30:15 +00:00
|
|
|
#define AF_FORMAT_IMA_ADPCM (5<<6)
|
|
|
|
#define AF_FORMAT_SPECIAL_MASK (7<<6)
|
|
|
|
|
|
|
|
// PREDEFINED formats
|
|
|
|
|
|
|
|
#define AF_FORMAT_U8 (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_8BIT|AF_FORMAT_NE)
|
|
|
|
#define AF_FORMAT_S8 (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_8BIT|AF_FORMAT_NE)
|
|
|
|
#define AF_FORMAT_U16_LE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_16BIT|AF_FORMAT_LE)
|
|
|
|
#define AF_FORMAT_U16_BE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_16BIT|AF_FORMAT_BE)
|
|
|
|
#define AF_FORMAT_S16_LE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_16BIT|AF_FORMAT_LE)
|
|
|
|
#define AF_FORMAT_S16_BE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_16BIT|AF_FORMAT_BE)
|
|
|
|
#define AF_FORMAT_U24_LE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_24BIT|AF_FORMAT_LE)
|
|
|
|
#define AF_FORMAT_U24_BE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_24BIT|AF_FORMAT_BE)
|
|
|
|
#define AF_FORMAT_S24_LE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_24BIT|AF_FORMAT_LE)
|
|
|
|
#define AF_FORMAT_S24_BE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_24BIT|AF_FORMAT_BE)
|
|
|
|
#define AF_FORMAT_U32_LE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_32BIT|AF_FORMAT_LE)
|
|
|
|
#define AF_FORMAT_U32_BE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_32BIT|AF_FORMAT_BE)
|
|
|
|
#define AF_FORMAT_S32_LE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_32BIT|AF_FORMAT_LE)
|
|
|
|
#define AF_FORMAT_S32_BE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_32BIT|AF_FORMAT_BE)
|
|
|
|
|
|
|
|
#define AF_FORMAT_FLOAT_LE (AF_FORMAT_F|AF_FORMAT_32BIT|AF_FORMAT_LE)
|
|
|
|
#define AF_FORMAT_FLOAT_BE (AF_FORMAT_F|AF_FORMAT_32BIT|AF_FORMAT_BE)
|
|
|
|
|
2010-01-11 20:27:52 +00:00
|
|
|
#define AF_FORMAT_AC3_LE (AF_FORMAT_AC3|AF_FORMAT_16BIT|AF_FORMAT_LE)
|
|
|
|
#define AF_FORMAT_AC3_BE (AF_FORMAT_AC3|AF_FORMAT_16BIT|AF_FORMAT_BE)
|
|
|
|
|
2009-07-26 19:53:00 +00:00
|
|
|
#if HAVE_BIGENDIAN
|
2004-12-27 17:30:15 +00:00
|
|
|
#define AF_FORMAT_U16_NE AF_FORMAT_U16_BE
|
|
|
|
#define AF_FORMAT_S16_NE AF_FORMAT_S16_BE
|
|
|
|
#define AF_FORMAT_U24_NE AF_FORMAT_U24_BE
|
|
|
|
#define AF_FORMAT_S24_NE AF_FORMAT_S24_BE
|
|
|
|
#define AF_FORMAT_U32_NE AF_FORMAT_U32_BE
|
|
|
|
#define AF_FORMAT_S32_NE AF_FORMAT_S32_BE
|
|
|
|
#define AF_FORMAT_FLOAT_NE AF_FORMAT_FLOAT_BE
|
2010-01-11 20:27:52 +00:00
|
|
|
#define AF_FORMAT_AC3_NE AF_FORMAT_AC3_BE
|
2004-12-27 17:30:15 +00:00
|
|
|
#else
|
|
|
|
#define AF_FORMAT_U16_NE AF_FORMAT_U16_LE
|
|
|
|
#define AF_FORMAT_S16_NE AF_FORMAT_S16_LE
|
|
|
|
#define AF_FORMAT_U24_NE AF_FORMAT_U24_LE
|
|
|
|
#define AF_FORMAT_S24_NE AF_FORMAT_S24_LE
|
|
|
|
#define AF_FORMAT_U32_NE AF_FORMAT_U32_LE
|
|
|
|
#define AF_FORMAT_S32_NE AF_FORMAT_S32_LE
|
|
|
|
#define AF_FORMAT_FLOAT_NE AF_FORMAT_FLOAT_LE
|
2010-01-11 20:27:52 +00:00
|
|
|
#define AF_FORMAT_AC3_NE AF_FORMAT_AC3_LE
|
2004-12-27 17:30:15 +00:00
|
|
|
#endif
|
2003-01-18 17:31:58 +00:00
|
|
|
|
2006-11-08 18:31:04 +00:00
|
|
|
#define AF_FORMAT_UNKNOWN (-1)
|
|
|
|
|
2010-01-11 19:23:18 +00:00
|
|
|
#define AF_FORMAT_IS_AC3(fmt) (((fmt) & AF_FORMAT_SPECIAL_MASK) == AF_FORMAT_AC3)
|
|
|
|
|
2008-12-03 23:01:03 +00:00
|
|
|
int af_str2fmt(const char *str);
|
|
|
|
int af_str2fmt_short(const char *str);
|
|
|
|
int af_fmt2bits(int format);
|
|
|
|
int af_bits2fmt(int bits);
|
|
|
|
char* af_fmt2str(int format, char* str, int size);
|
|
|
|
const char* af_fmt2str_short(int format);
|
2003-01-18 17:31:58 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_AF_FORMAT_H */
|