Mercurial > libavcodec.hg
annotate pcm.c @ 5944:0203d969bcd5 libavcodec
cosmetics: alignment
| author | aurel |
|---|---|
| date | Tue, 27 Nov 2007 21:30:10 +0000 |
| parents | d63186919b60 |
| children | bd7600c7a061 |
| rev | line source |
|---|---|
| 92 | 1 /* |
| 2 * PCM codecs | |
| 429 | 3 * Copyright (c) 2001 Fabrice Bellard. |
| 92 | 4 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
5 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
6 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
| 429 | 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * License as published by the Free Software Foundation; either | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
| 92 | 11 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
| 92 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 * Lesser General Public License for more details. | |
| 92 | 16 * |
| 429 | 17 * You should have received a copy of the GNU Lesser General Public |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 92 | 20 */ |
| 2967 | 21 |
| 1108 | 22 /** |
| 23 * @file pcm.c | |
| 24 * PCM codecs | |
| 25 */ | |
| 2967 | 26 |
| 92 | 27 #include "avcodec.h" |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
28 #include "bitstream.h" // for ff_reverse |
| 4959 | 29 #include "bytestream.h" |
| 92 | 30 |
|
5940
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
31 #define MAX_CHANNELS 64 |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
32 |
| 92 | 33 /* from g711.c by SUN microsystems (unrestricted use) */ |
| 34 | |
| 2979 | 35 #define SIGN_BIT (0x80) /* Sign bit for a A-law byte. */ |
| 36 #define QUANT_MASK (0xf) /* Quantization field mask. */ | |
| 37 #define NSEGS (8) /* Number of A-law segments. */ | |
| 38 #define SEG_SHIFT (4) /* Left shift for segment number. */ | |
| 39 #define SEG_MASK (0x70) /* Segment field mask. */ | |
| 92 | 40 |
| 2979 | 41 #define BIAS (0x84) /* Bias for linear code. */ |
| 92 | 42 |
| 43 /* | |
| 44 * alaw2linear() - Convert an A-law value to 16-bit linear PCM | |
| 45 * | |
| 46 */ | |
| 2979 | 47 static int alaw2linear(unsigned char a_val) |
| 92 | 48 { |
| 2979 | 49 int t; |
| 50 int seg; | |
| 92 | 51 |
| 2979 | 52 a_val ^= 0x55; |
| 92 | 53 |
| 2979 | 54 t = a_val & QUANT_MASK; |
| 55 seg = ((unsigned)a_val & SEG_MASK) >> SEG_SHIFT; | |
| 56 if(seg) t= (t + t + 1 + 32) << (seg + 2); | |
| 57 else t= (t + t + 1 ) << 3; | |
| 1485 | 58 |
| 2979 | 59 return ((a_val & SIGN_BIT) ? t : -t); |
| 92 | 60 } |
| 61 | |
| 2979 | 62 static int ulaw2linear(unsigned char u_val) |
| 92 | 63 { |
| 2979 | 64 int t; |
| 92 | 65 |
| 2979 | 66 /* Complement to obtain normal u-law value. */ |
| 67 u_val = ~u_val; | |
| 92 | 68 |
| 2979 | 69 /* |
| 70 * Extract and bias the quantization bits. Then | |
| 71 * shift up by the segment number and subtract out the bias. | |
| 72 */ | |
| 73 t = ((u_val & QUANT_MASK) << 3) + BIAS; | |
| 74 t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT; | |
| 92 | 75 |
| 2979 | 76 return ((u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS)); |
| 92 | 77 } |
| 78 | |
| 79 /* 16384 entries per table */ | |
| 4660 | 80 static uint8_t linear_to_alaw[16384]; |
| 81 static uint8_t linear_to_ulaw[16384]; | |
| 92 | 82 |
| 2967 | 83 static void build_xlaw_table(uint8_t *linear_to_xlaw, |
| 92 | 84 int (*xlaw2linear)(unsigned char), |
| 2967 | 85 int mask) |
| 92 | 86 { |
| 87 int i, j, v, v1, v2; | |
| 88 | |
| 89 j = 0; | |
| 90 for(i=0;i<128;i++) { | |
| 91 if (i != 127) { | |
| 92 v1 = xlaw2linear(i ^ mask); | |
| 93 v2 = xlaw2linear((i + 1) ^ mask); | |
| 94 v = (v1 + v2 + 4) >> 3; | |
| 95 } else { | |
| 96 v = 8192; | |
| 97 } | |
| 98 for(;j<v;j++) { | |
| 99 linear_to_xlaw[8192 + j] = (i ^ mask); | |
| 100 if (j > 0) | |
| 101 linear_to_xlaw[8192 - j] = (i ^ (mask ^ 0x80)); | |
| 102 } | |
| 103 } | |
| 104 linear_to_xlaw[0] = linear_to_xlaw[1]; | |
| 105 } | |
| 106 | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
107 static int pcm_encode_init(AVCodecContext *avctx) |
| 92 | 108 { |
| 109 avctx->frame_size = 1; | |
| 110 switch(avctx->codec->id) { | |
| 111 case CODEC_ID_PCM_ALAW: | |
| 4660 | 112 build_xlaw_table(linear_to_alaw, alaw2linear, 0xd5); |
| 92 | 113 break; |
| 114 case CODEC_ID_PCM_MULAW: | |
| 4660 | 115 build_xlaw_table(linear_to_ulaw, ulaw2linear, 0xff); |
| 92 | 116 break; |
| 117 default: | |
| 118 break; | |
| 119 } | |
| 2967 | 120 |
| 2340 | 121 switch(avctx->codec->id) { |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
122 case CODEC_ID_PCM_S32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
123 case CODEC_ID_PCM_S32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
124 case CODEC_ID_PCM_U32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
125 case CODEC_ID_PCM_U32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
126 avctx->block_align = 4 * avctx->channels; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
127 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
128 case CODEC_ID_PCM_S24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
129 case CODEC_ID_PCM_S24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
130 case CODEC_ID_PCM_U24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
131 case CODEC_ID_PCM_U24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
132 case CODEC_ID_PCM_S24DAUD: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
133 avctx->block_align = 3 * avctx->channels; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
134 break; |
| 2340 | 135 case CODEC_ID_PCM_S16LE: |
| 136 case CODEC_ID_PCM_S16BE: | |
| 137 case CODEC_ID_PCM_U16LE: | |
| 138 case CODEC_ID_PCM_U16BE: | |
| 139 avctx->block_align = 2 * avctx->channels; | |
| 140 break; | |
| 141 case CODEC_ID_PCM_S8: | |
| 142 case CODEC_ID_PCM_U8: | |
| 143 case CODEC_ID_PCM_MULAW: | |
| 144 case CODEC_ID_PCM_ALAW: | |
| 145 avctx->block_align = avctx->channels; | |
| 146 break; | |
| 147 default: | |
| 148 break; | |
| 149 } | |
| 150 | |
| 925 | 151 avctx->coded_frame= avcodec_alloc_frame(); |
| 152 avctx->coded_frame->key_frame= 1; | |
| 2967 | 153 |
| 92 | 154 return 0; |
| 155 } | |
| 156 | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
157 static int pcm_encode_close(AVCodecContext *avctx) |
| 92 | 158 { |
| 925 | 159 av_freep(&avctx->coded_frame); |
| 160 | |
| 92 | 161 return 0; |
| 162 } | |
| 163 | |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
164 /** |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
165 * \brief convert samples from 16 bit |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
166 * \param bps byte per sample for the destination format, must be >= 2 |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
167 * \param le 0 for big-, 1 for little-endian |
|
2853
87c11495e393
Document "us" parameter for PCM conversion functions.
reimar
parents:
2852
diff
changeset
|
168 * \param us 0 for signed, 1 for unsigned output |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
169 * \param samples input samples |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
170 * \param dst output samples |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
171 * \param n number of samples in samples buffer. |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
172 */ |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
173 static inline void encode_from16(int bps, int le, int us, |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
174 short **samples, uint8_t **dst, int n) { |
| 4956 | 175 int usum = us ? 0x8000 : 0; |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
176 if (bps > 2) |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
177 memset(*dst, 0, n * bps); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
178 if (le) *dst += bps - 2; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
179 for(;n>0;n--) { |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
180 register int v = *(*samples)++; |
| 4956 | 181 v += usum; |
| 4973 | 182 if (le) AV_WL16(*dst, v); |
| 183 else AV_WB16(*dst, v); | |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
184 *dst += bps; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
185 } |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
186 if (le) *dst -= bps - 2; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
187 } |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
188 |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
189 static int pcm_encode_frame(AVCodecContext *avctx, |
| 2979 | 190 unsigned char *frame, int buf_size, void *data) |
| 92 | 191 { |
| 192 int n, sample_size, v; | |
| 193 short *samples; | |
| 194 unsigned char *dst; | |
| 195 | |
| 196 switch(avctx->codec->id) { | |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
197 case CODEC_ID_PCM_S32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
198 case CODEC_ID_PCM_S32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
199 case CODEC_ID_PCM_U32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
200 case CODEC_ID_PCM_U32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
201 sample_size = 4; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
202 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
203 case CODEC_ID_PCM_S24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
204 case CODEC_ID_PCM_S24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
205 case CODEC_ID_PCM_U24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
206 case CODEC_ID_PCM_U24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
207 case CODEC_ID_PCM_S24DAUD: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
208 sample_size = 3; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
209 break; |
| 92 | 210 case CODEC_ID_PCM_S16LE: |
| 211 case CODEC_ID_PCM_S16BE: | |
| 212 case CODEC_ID_PCM_U16LE: | |
| 213 case CODEC_ID_PCM_U16BE: | |
| 214 sample_size = 2; | |
| 215 break; | |
| 216 default: | |
| 217 sample_size = 1; | |
| 218 break; | |
| 219 } | |
| 220 n = buf_size / sample_size; | |
| 221 samples = data; | |
| 222 dst = frame; | |
| 223 | |
| 224 switch(avctx->codec->id) { | |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
225 case CODEC_ID_PCM_S32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
226 encode_from16(4, 1, 0, &samples, &dst, n); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
227 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
228 case CODEC_ID_PCM_S32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
229 encode_from16(4, 0, 0, &samples, &dst, n); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
230 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
231 case CODEC_ID_PCM_U32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
232 encode_from16(4, 1, 1, &samples, &dst, n); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
233 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
234 case CODEC_ID_PCM_U32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
235 encode_from16(4, 0, 1, &samples, &dst, n); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
236 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
237 case CODEC_ID_PCM_S24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
238 encode_from16(3, 1, 0, &samples, &dst, n); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
239 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
240 case CODEC_ID_PCM_S24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
241 encode_from16(3, 0, 0, &samples, &dst, n); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
242 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
243 case CODEC_ID_PCM_U24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
244 encode_from16(3, 1, 1, &samples, &dst, n); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
245 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
246 case CODEC_ID_PCM_U24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
247 encode_from16(3, 0, 1, &samples, &dst, n); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
248 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
249 case CODEC_ID_PCM_S24DAUD: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
250 for(;n>0;n--) { |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
251 uint32_t tmp = ff_reverse[*samples >> 8] + |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
252 (ff_reverse[*samples & 0xff] << 8); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
253 tmp <<= 4; // sync flags would go here |
| 4959 | 254 bytestream_put_be24(&dst, tmp); |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
255 samples++; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
256 } |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
257 break; |
| 92 | 258 case CODEC_ID_PCM_S16LE: |
| 259 for(;n>0;n--) { | |
| 260 v = *samples++; | |
| 4959 | 261 bytestream_put_le16(&dst, v); |
| 92 | 262 } |
| 263 break; | |
| 264 case CODEC_ID_PCM_S16BE: | |
| 265 for(;n>0;n--) { | |
| 266 v = *samples++; | |
| 4959 | 267 bytestream_put_be16(&dst, v); |
| 92 | 268 } |
| 269 break; | |
| 270 case CODEC_ID_PCM_U16LE: | |
| 271 for(;n>0;n--) { | |
| 272 v = *samples++; | |
| 273 v += 0x8000; | |
| 4959 | 274 bytestream_put_le16(&dst, v); |
| 92 | 275 } |
| 276 break; | |
| 277 case CODEC_ID_PCM_U16BE: | |
| 278 for(;n>0;n--) { | |
| 279 v = *samples++; | |
| 280 v += 0x8000; | |
| 4959 | 281 bytestream_put_be16(&dst, v); |
| 92 | 282 } |
| 283 break; | |
| 284 case CODEC_ID_PCM_S8: | |
| 285 for(;n>0;n--) { | |
| 286 v = *samples++; | |
| 4960 | 287 *dst++ = v >> 8; |
| 92 | 288 } |
| 289 break; | |
| 290 case CODEC_ID_PCM_U8: | |
| 291 for(;n>0;n--) { | |
| 292 v = *samples++; | |
| 4960 | 293 *dst++ = (v >> 8) + 128; |
| 92 | 294 } |
| 295 break; | |
| 5422 | 296 case CODEC_ID_PCM_ZORK: |
| 297 for(;n>0;n--) { | |
| 298 v= *samples++ >> 8; | |
| 299 if(v<0) v = -v; | |
| 300 else v+= 128; | |
| 301 *dst++ = v; | |
| 302 } | |
| 303 break; | |
| 92 | 304 case CODEC_ID_PCM_ALAW: |
| 305 for(;n>0;n--) { | |
| 306 v = *samples++; | |
| 4960 | 307 *dst++ = linear_to_alaw[(v + 32768) >> 2]; |
| 92 | 308 } |
| 309 break; | |
| 310 case CODEC_ID_PCM_MULAW: | |
| 311 for(;n>0;n--) { | |
| 312 v = *samples++; | |
| 4960 | 313 *dst++ = linear_to_ulaw[(v + 32768) >> 2]; |
| 92 | 314 } |
| 315 break; | |
| 316 default: | |
| 317 return -1; | |
| 318 } | |
|
381
0d6178e4d503
* Mea culpa: it seems that I broke encoding to 8-bit pcm files. This fixes it.
philipjsg
parents:
372
diff
changeset
|
319 //avctx->frame_size = (dst - frame) / (sample_size * avctx->channels); |
| 372 | 320 |
| 92 | 321 return dst - frame; |
| 322 } | |
| 323 | |
| 324 typedef struct PCMDecode { | |
| 325 short table[256]; | |
| 326 } PCMDecode; | |
| 327 | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
328 static int pcm_decode_init(AVCodecContext * avctx) |
| 92 | 329 { |
| 330 PCMDecode *s = avctx->priv_data; | |
| 331 int i; | |
| 332 | |
| 333 switch(avctx->codec->id) { | |
| 334 case CODEC_ID_PCM_ALAW: | |
| 335 for(i=0;i<256;i++) | |
| 336 s->table[i] = alaw2linear(i); | |
| 337 break; | |
| 338 case CODEC_ID_PCM_MULAW: | |
| 339 for(i=0;i<256;i++) | |
| 340 s->table[i] = ulaw2linear(i); | |
| 341 break; | |
| 342 default: | |
| 343 break; | |
| 344 } | |
| 345 return 0; | |
| 346 } | |
| 347 | |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
348 /** |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
349 * \brief convert samples to 16 bit |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
350 * \param bps byte per sample for the source format, must be >= 2 |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
351 * \param le 0 for big-, 1 for little-endian |
|
2853
87c11495e393
Document "us" parameter for PCM conversion functions.
reimar
parents:
2852
diff
changeset
|
352 * \param us 0 for signed, 1 for unsigned input |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
353 * \param src input samples |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
354 * \param samples output samples |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
355 * \param src_len number of bytes in src |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
356 */ |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
357 static inline void decode_to16(int bps, int le, int us, |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
358 uint8_t **src, short **samples, int src_len) |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
359 { |
| 4956 | 360 int usum = us ? -0x8000 : 0; |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
361 register int n = src_len / bps; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
362 if (le) *src += bps - 2; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
363 for(;n>0;n--) { |
| 4958 | 364 register int v; |
| 365 if (le) v = AV_RL16(*src); | |
| 366 else v = AV_RB16(*src); | |
| 367 v += usum; | |
| 368 *(*samples)++ = v; | |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
369 *src += bps; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
370 } |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
371 if (le) *src -= bps - 2; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
372 } |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
373 |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
374 static int pcm_decode_frame(AVCodecContext *avctx, |
| 2979 | 375 void *data, int *data_size, |
| 376 uint8_t *buf, int buf_size) | |
| 92 | 377 { |
| 378 PCMDecode *s = avctx->priv_data; | |
|
5940
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
379 int c, n; |
| 92 | 380 short *samples; |
|
5940
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
381 uint8_t *src, *src2[MAX_CHANNELS]; |
| 92 | 382 |
| 383 samples = data; | |
| 384 src = buf; | |
| 385 | |
| 4506 | 386 n= av_get_bits_per_sample(avctx->codec_id)/8; |
|
5940
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
387 if((n && buf_size % n) || avctx->channels > MAX_CHANNELS){ |
| 4506 | 388 av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n"); |
| 389 return -1; | |
| 390 } | |
| 391 | |
| 4351 | 392 buf_size= FFMIN(buf_size, *data_size/2); |
| 393 *data_size=0; | |
| 2506 | 394 |
|
5940
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
395 n = buf_size/avctx->channels; |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
396 for(c=0;c<avctx->channels;c++) |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
397 src2[c] = &src[c*n]; |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
398 |
| 92 | 399 switch(avctx->codec->id) { |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
400 case CODEC_ID_PCM_S32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
401 decode_to16(4, 1, 0, &src, &samples, buf_size); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
402 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
403 case CODEC_ID_PCM_S32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
404 decode_to16(4, 0, 0, &src, &samples, buf_size); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
405 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
406 case CODEC_ID_PCM_U32LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
407 decode_to16(4, 1, 1, &src, &samples, buf_size); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
408 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
409 case CODEC_ID_PCM_U32BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
410 decode_to16(4, 0, 1, &src, &samples, buf_size); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
411 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
412 case CODEC_ID_PCM_S24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
413 decode_to16(3, 1, 0, &src, &samples, buf_size); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
414 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
415 case CODEC_ID_PCM_S24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
416 decode_to16(3, 0, 0, &src, &samples, buf_size); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
417 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
418 case CODEC_ID_PCM_U24LE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
419 decode_to16(3, 1, 1, &src, &samples, buf_size); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
420 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
421 case CODEC_ID_PCM_U24BE: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
422 decode_to16(3, 0, 1, &src, &samples, buf_size); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
423 break; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
424 case CODEC_ID_PCM_S24DAUD: |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
425 n = buf_size / 3; |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
426 for(;n>0;n--) { |
| 4959 | 427 uint32_t v = bytestream_get_be24(&src); |
|
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
428 v >>= 4; // sync flags are here |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
429 *samples++ = ff_reverse[(v >> 8) & 0xff] + |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
430 (ff_reverse[v & 0xff] << 8); |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
431 } |
|
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
432 break; |
| 92 | 433 case CODEC_ID_PCM_S16LE: |
| 434 n = buf_size >> 1; | |
| 435 for(;n>0;n--) { | |
| 4959 | 436 *samples++ = bytestream_get_le16(&src); |
| 92 | 437 } |
| 438 break; | |
|
5940
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
439 case CODEC_ID_PCM_S16LE_PLANAR: |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
440 for(n>>=1;n>0;n--) |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
441 for(c=0;c<avctx->channels;c++) |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
442 *samples++ = bytestream_get_le16(&src2[c]); |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
443 src = src2[avctx->channels-1]; |
|
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
444 break; |
| 92 | 445 case CODEC_ID_PCM_S16BE: |
| 446 n = buf_size >> 1; | |
| 447 for(;n>0;n--) { | |
| 4959 | 448 *samples++ = bytestream_get_be16(&src); |
| 92 | 449 } |
| 450 break; | |
| 451 case CODEC_ID_PCM_U16LE: | |
| 452 n = buf_size >> 1; | |
| 453 for(;n>0;n--) { | |
| 4959 | 454 *samples++ = bytestream_get_le16(&src) - 0x8000; |
| 92 | 455 } |
| 456 break; | |
| 457 case CODEC_ID_PCM_U16BE: | |
| 458 n = buf_size >> 1; | |
| 459 for(;n>0;n--) { | |
| 4959 | 460 *samples++ = bytestream_get_be16(&src) - 0x8000; |
| 92 | 461 } |
| 462 break; | |
| 463 case CODEC_ID_PCM_S8: | |
| 464 n = buf_size; | |
| 465 for(;n>0;n--) { | |
| 4960 | 466 *samples++ = *src++ << 8; |
| 92 | 467 } |
| 468 break; | |
| 469 case CODEC_ID_PCM_U8: | |
| 470 n = buf_size; | |
| 471 for(;n>0;n--) { | |
| 4960 | 472 *samples++ = ((int)*src++ - 128) << 8; |
| 92 | 473 } |
| 474 break; | |
| 5422 | 475 case CODEC_ID_PCM_ZORK: |
| 476 n = buf_size; | |
| 477 for(;n>0;n--) { | |
| 478 int x= *src++; | |
| 479 if(x&128) x-= 128; | |
| 480 else x = -x; | |
| 481 *samples++ = x << 8; | |
| 482 } | |
| 483 break; | |
| 92 | 484 case CODEC_ID_PCM_ALAW: |
| 485 case CODEC_ID_PCM_MULAW: | |
| 486 n = buf_size; | |
| 487 for(;n>0;n--) { | |
| 4960 | 488 *samples++ = s->table[*src++]; |
| 92 | 489 } |
| 490 break; | |
| 491 default: | |
| 492 return -1; | |
| 493 } | |
| 1064 | 494 *data_size = (uint8_t *)samples - (uint8_t *)data; |
| 92 | 495 return src - buf; |
| 496 } | |
| 497 | |
|
5880
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
498 #ifdef CONFIG_ENCODERS |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
499 #define PCM_ENCODER(id,name) \ |
| 92 | 500 AVCodec name ## _encoder = { \ |
| 501 #name, \ | |
| 502 CODEC_TYPE_AUDIO, \ | |
| 503 id, \ | |
| 504 0, \ | |
| 2979 | 505 pcm_encode_init, \ |
| 506 pcm_encode_frame, \ | |
| 507 pcm_encode_close, \ | |
| 92 | 508 NULL, \ |
|
5880
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
509 }; |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
510 #else |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
511 #define PCM_ENCODER(id,name) |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
512 #endif |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
513 |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
514 #ifdef CONFIG_DECODERS |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
515 #define PCM_DECODER(id,name) \ |
| 92 | 516 AVCodec name ## _decoder = { \ |
| 517 #name, \ | |
| 518 CODEC_TYPE_AUDIO, \ | |
| 519 id, \ | |
| 520 sizeof(PCMDecode), \ | |
| 2979 | 521 pcm_decode_init, \ |
| 92 | 522 NULL, \ |
| 523 NULL, \ | |
|
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
524 pcm_decode_frame, \ |
|
5880
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
525 }; |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
526 #else |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
527 #define PCM_DECODER(id,name) |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
528 #endif |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
529 |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
530 #define PCM_CODEC(id, name) \ |
|
6814207ffb27
split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents:
5861
diff
changeset
|
531 PCM_ENCODER(id,name) PCM_DECODER(id,name) |
| 92 | 532 |
| 5944 | 533 PCM_CODEC (CODEC_ID_PCM_S32LE, pcm_s32le); |
| 534 PCM_CODEC (CODEC_ID_PCM_S32BE, pcm_s32be); | |
| 535 PCM_CODEC (CODEC_ID_PCM_U32LE, pcm_u32le); | |
| 536 PCM_CODEC (CODEC_ID_PCM_U32BE, pcm_u32be); | |
| 537 PCM_CODEC (CODEC_ID_PCM_S24LE, pcm_s24le); | |
| 538 PCM_CODEC (CODEC_ID_PCM_S24BE, pcm_s24be); | |
| 539 PCM_CODEC (CODEC_ID_PCM_U24LE, pcm_u24le); | |
| 540 PCM_CODEC (CODEC_ID_PCM_U24BE, pcm_u24be); | |
| 541 PCM_CODEC (CODEC_ID_PCM_S24DAUD, pcm_s24daud); | |
| 542 PCM_CODEC (CODEC_ID_PCM_S16LE, pcm_s16le); | |
|
5940
d63186919b60
add pcm_s16le_planar support for electronicarts files
aurel
parents:
5880
diff
changeset
|
543 PCM_DECODER(CODEC_ID_PCM_S16LE_PLANAR, pcm_s16le_planar); |
| 5944 | 544 PCM_CODEC (CODEC_ID_PCM_S16BE, pcm_s16be); |
| 545 PCM_CODEC (CODEC_ID_PCM_U16LE, pcm_u16le); | |
| 546 PCM_CODEC (CODEC_ID_PCM_U16BE, pcm_u16be); | |
| 547 PCM_CODEC (CODEC_ID_PCM_S8, pcm_s8); | |
| 548 PCM_CODEC (CODEC_ID_PCM_U8, pcm_u8); | |
| 549 PCM_CODEC (CODEC_ID_PCM_ALAW, pcm_alaw); | |
| 550 PCM_CODEC (CODEC_ID_PCM_MULAW, pcm_mulaw); | |
| 551 PCM_CODEC (CODEC_ID_PCM_ZORK, pcm_zork); |
