Mercurial > mplayer.hg
annotate libaf/af_format.h @ 14471:6cdd5669e930
Here is an updated draft with the bits discussed previously merged:
- short startcode removed
- QT/Microsoft codec_specific_data removed, reverted to a neutral format
- meta packet removed, merged in the info packet.
- stream class simplified, added metadata stream
patch by (Luca Barbato <lu_zero gentoo org>)
author | michael |
---|---|
date | Wed, 12 Jan 2005 11:54:30 +0000 |
parents | 8380694ba14f |
children | cae0dbeb44bb |
rev | line source |
---|---|
8167 | 1 /* The sample format system used lin libaf is based on bitmasks. The |
2 format definition only refers to the storage format not the | |
3 resolution. */ | |
14245 | 4 #ifndef __af_format_h__ |
5 #define __af_format_h__ | |
8167 | 6 |
7 // Endianess | |
8 #define AF_FORMAT_BE (0<<0) // Big Endian | |
9 #define AF_FORMAT_LE (1<<0) // Little Endian | |
10 #define AF_FORMAT_END_MASK (1<<0) | |
11 | |
12 #if WORDS_BIGENDIAN // Native endian of cpu | |
13 #define AF_FORMAT_NE AF_FORMAT_BE | |
14 #else | |
15 #define AF_FORMAT_NE AF_FORMAT_LE | |
16 #endif | |
17 | |
18 // Signed/unsigned | |
14245 | 19 #define AF_FORMAT_SI (0<<1) // Signed |
20 #define AF_FORMAT_US (1<<1) // Unsigned | |
8167 | 21 #define AF_FORMAT_SIGN_MASK (1<<1) |
22 | |
13550
81e62cbe57d9
reimplementation of the pl_extrastereo and pl_volnorm plugins
alex
parents:
8994
diff
changeset
|
23 // Fixed or floating point |
8167 | 24 #define AF_FORMAT_I (0<<2) // Int |
25 #define AF_FORMAT_F (1<<2) // Foating point | |
26 #define AF_FORMAT_POINT_MASK (1<<2) | |
27 | |
14245 | 28 // Bits used |
29 #define AF_FORMAT_8BIT (0<<3) | |
30 #define AF_FORMAT_16BIT (1<<3) | |
31 #define AF_FORMAT_24BIT (2<<3) | |
32 #define AF_FORMAT_32BIT (3<<3) | |
33 #define AF_FORMAT_40BIT (4<<3) | |
34 #define AF_FORMAT_48BIT (5<<3) | |
35 #define AF_FORMAT_BITS_MASK (7<<3) | |
36 | |
8167 | 37 // Special flags refering to non pcm data |
14245 | 38 #define AF_FORMAT_MU_LAW (1<<6) |
39 #define AF_FORMAT_A_LAW (2<<6) | |
40 #define AF_FORMAT_MPEG2 (3<<6) // MPEG(2) audio | |
41 #define AF_FORMAT_AC3 (4<<6) // Dolby Digital AC3 | |
42 #define AF_FORMAT_IMA_ADPCM (5<<6) | |
43 #define AF_FORMAT_SPECIAL_MASK (7<<6) | |
44 | |
45 // PREDEFINED formats | |
46 | |
47 #define AF_FORMAT_U8 (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_8BIT|AF_FORMAT_NE) | |
48 #define AF_FORMAT_S8 (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_8BIT|AF_FORMAT_NE) | |
49 #define AF_FORMAT_U16_LE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_16BIT|AF_FORMAT_LE) | |
50 #define AF_FORMAT_U16_BE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_16BIT|AF_FORMAT_BE) | |
51 #define AF_FORMAT_S16_LE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_16BIT|AF_FORMAT_LE) | |
52 #define AF_FORMAT_S16_BE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_16BIT|AF_FORMAT_BE) | |
53 #define AF_FORMAT_U24_LE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_24BIT|AF_FORMAT_LE) | |
54 #define AF_FORMAT_U24_BE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_24BIT|AF_FORMAT_BE) | |
55 #define AF_FORMAT_S24_LE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_24BIT|AF_FORMAT_LE) | |
56 #define AF_FORMAT_S24_BE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_24BIT|AF_FORMAT_BE) | |
57 #define AF_FORMAT_U32_LE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_32BIT|AF_FORMAT_LE) | |
58 #define AF_FORMAT_U32_BE (AF_FORMAT_I|AF_FORMAT_US|AF_FORMAT_32BIT|AF_FORMAT_BE) | |
59 #define AF_FORMAT_S32_LE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_32BIT|AF_FORMAT_LE) | |
60 #define AF_FORMAT_S32_BE (AF_FORMAT_I|AF_FORMAT_SI|AF_FORMAT_32BIT|AF_FORMAT_BE) | |
8994 | 61 |
14245 | 62 #define AF_FORMAT_FLOAT_LE (AF_FORMAT_F|AF_FORMAT_32BIT|AF_FORMAT_LE) |
63 #define AF_FORMAT_FLOAT_BE (AF_FORMAT_F|AF_FORMAT_32BIT|AF_FORMAT_BE) | |
8994 | 64 |
14245 | 65 #ifdef WORDS_BIGENDIAN |
66 #define AF_FORMAT_U16_NE AF_FORMAT_U16_BE | |
67 #define AF_FORMAT_S16_NE AF_FORMAT_S16_BE | |
68 #define AF_FORMAT_U24_NE AF_FORMAT_U24_BE | |
69 #define AF_FORMAT_S24_NE AF_FORMAT_S24_BE | |
70 #define AF_FORMAT_U32_NE AF_FORMAT_U32_BE | |
71 #define AF_FORMAT_S32_NE AF_FORMAT_S32_BE | |
72 #define AF_FORMAT_FLOAT_NE AF_FORMAT_FLOAT_BE | |
73 #else | |
74 #define AF_FORMAT_U16_NE AF_FORMAT_U16_LE | |
75 #define AF_FORMAT_S16_NE AF_FORMAT_S16_LE | |
76 #define AF_FORMAT_U24_NE AF_FORMAT_U24_LE | |
77 #define AF_FORMAT_S24_NE AF_FORMAT_S24_LE | |
78 #define AF_FORMAT_U32_NE AF_FORMAT_U32_LE | |
79 #define AF_FORMAT_S32_NE AF_FORMAT_S32_LE | |
80 #define AF_FORMAT_FLOAT_NE AF_FORMAT_FLOAT_LE | |
81 #endif | |
82 | |
83 extern int af_str2fmt(char *str); | |
14335
8380694ba14f
af_bits2fmt and af_str2fmt_short, also removed the extra FORMAT_BPS control in format.c
alex
parents:
14263
diff
changeset
|
84 extern int af_str2fmt_short(char *str); |
14245 | 85 extern int af_fmt2bits(int format); |
14335
8380694ba14f
af_bits2fmt and af_str2fmt_short, also removed the extra FORMAT_BPS control in format.c
alex
parents:
14263
diff
changeset
|
86 extern int af_bits2fmt(int bits); |
14245 | 87 extern char* af_fmt2str(int format, char* str, int size); |
14263 | 88 extern char* af_fmt2str_short(int format); |
14245 | 89 |
90 #endif /* __af_format_h__ */ |