Mercurial > libavcodec.hg
annotate pcm.c @ 3990:746a60ba3177 libavcodec
enable CMOV_IS_FAST as its faster or equal speed on every cpu (duron, athlon, PM, P3) from which ive seen benchmarks, it might be slower on P4 but noone has posted benchmarks ...
author | michael |
---|---|
date | Wed, 11 Oct 2006 12:23:40 +0000 |
parents | c8c591fe26f8 |
children | 1e251b54cba2 |
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 |
92 | 29 |
30 /* from g711.c by SUN microsystems (unrestricted use) */ | |
31 | |
2979 | 32 #define SIGN_BIT (0x80) /* Sign bit for a A-law byte. */ |
33 #define QUANT_MASK (0xf) /* Quantization field mask. */ | |
34 #define NSEGS (8) /* Number of A-law segments. */ | |
35 #define SEG_SHIFT (4) /* Left shift for segment number. */ | |
36 #define SEG_MASK (0x70) /* Segment field mask. */ | |
92 | 37 |
2979 | 38 #define BIAS (0x84) /* Bias for linear code. */ |
92 | 39 |
40 /* | |
41 * alaw2linear() - Convert an A-law value to 16-bit linear PCM | |
42 * | |
43 */ | |
2979 | 44 static int alaw2linear(unsigned char a_val) |
92 | 45 { |
2979 | 46 int t; |
47 int seg; | |
92 | 48 |
2979 | 49 a_val ^= 0x55; |
92 | 50 |
2979 | 51 t = a_val & QUANT_MASK; |
52 seg = ((unsigned)a_val & SEG_MASK) >> SEG_SHIFT; | |
53 if(seg) t= (t + t + 1 + 32) << (seg + 2); | |
54 else t= (t + t + 1 ) << 3; | |
1485 | 55 |
2979 | 56 return ((a_val & SIGN_BIT) ? t : -t); |
92 | 57 } |
58 | |
2979 | 59 static int ulaw2linear(unsigned char u_val) |
92 | 60 { |
2979 | 61 int t; |
92 | 62 |
2979 | 63 /* Complement to obtain normal u-law value. */ |
64 u_val = ~u_val; | |
92 | 65 |
2979 | 66 /* |
67 * Extract and bias the quantization bits. Then | |
68 * shift up by the segment number and subtract out the bias. | |
69 */ | |
70 t = ((u_val & QUANT_MASK) << 3) + BIAS; | |
71 t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT; | |
92 | 72 |
2979 | 73 return ((u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS)); |
92 | 74 } |
75 | |
76 /* 16384 entries per table */ | |
1064 | 77 static uint8_t *linear_to_alaw = NULL; |
92 | 78 static int linear_to_alaw_ref = 0; |
79 | |
1064 | 80 static uint8_t *linear_to_ulaw = NULL; |
92 | 81 static int linear_to_ulaw_ref = 0; |
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: | |
112 if (linear_to_alaw_ref == 0) { | |
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
381
diff
changeset
|
113 linear_to_alaw = av_malloc(16384); |
92 | 114 if (!linear_to_alaw) |
115 return -1; | |
116 build_xlaw_table(linear_to_alaw, alaw2linear, 0xd5); | |
117 } | |
118 linear_to_alaw_ref++; | |
119 break; | |
120 case CODEC_ID_PCM_MULAW: | |
121 if (linear_to_ulaw_ref == 0) { | |
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
381
diff
changeset
|
122 linear_to_ulaw = av_malloc(16384); |
92 | 123 if (!linear_to_ulaw) |
124 return -1; | |
125 build_xlaw_table(linear_to_ulaw, ulaw2linear, 0xff); | |
126 } | |
127 linear_to_ulaw_ref++; | |
128 break; | |
129 default: | |
130 break; | |
131 } | |
2967 | 132 |
2340 | 133 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
|
134 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
|
135 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
|
136 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
|
137 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
|
138 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
|
139 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
140 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
|
141 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
|
142 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
|
143 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
|
144 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
|
145 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
|
146 break; |
2340 | 147 case CODEC_ID_PCM_S16LE: |
148 case CODEC_ID_PCM_S16BE: | |
149 case CODEC_ID_PCM_U16LE: | |
150 case CODEC_ID_PCM_U16BE: | |
151 avctx->block_align = 2 * avctx->channels; | |
152 break; | |
153 case CODEC_ID_PCM_S8: | |
154 case CODEC_ID_PCM_U8: | |
155 case CODEC_ID_PCM_MULAW: | |
156 case CODEC_ID_PCM_ALAW: | |
157 avctx->block_align = avctx->channels; | |
158 break; | |
159 default: | |
160 break; | |
161 } | |
162 | |
925 | 163 avctx->coded_frame= avcodec_alloc_frame(); |
164 avctx->coded_frame->key_frame= 1; | |
2967 | 165 |
92 | 166 return 0; |
167 } | |
168 | |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
169 static int pcm_encode_close(AVCodecContext *avctx) |
92 | 170 { |
925 | 171 av_freep(&avctx->coded_frame); |
172 | |
92 | 173 switch(avctx->codec->id) { |
174 case CODEC_ID_PCM_ALAW: | |
175 if (--linear_to_alaw_ref == 0) | |
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
381
diff
changeset
|
176 av_free(linear_to_alaw); |
92 | 177 break; |
178 case CODEC_ID_PCM_MULAW: | |
179 if (--linear_to_ulaw_ref == 0) | |
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
381
diff
changeset
|
180 av_free(linear_to_ulaw); |
92 | 181 break; |
182 default: | |
183 /* nothing to free */ | |
184 break; | |
185 } | |
186 return 0; | |
187 } | |
188 | |
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
189 /** |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
190 * \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
|
191 * \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
|
192 * \param le 0 for big-, 1 for little-endian |
2853
87c11495e393
Document "us" parameter for PCM conversion functions.
reimar
parents:
2852
diff
changeset
|
193 * \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
|
194 * \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
|
195 * \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
|
196 * \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
|
197 */ |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
198 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
|
199 short **samples, uint8_t **dst, int n) { |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
200 if (bps > 2) |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
201 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
|
202 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
|
203 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
|
204 register int v = *(*samples)++; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
205 if (us) v += 0x8000; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
206 (*dst)[le] = v >> 8; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
207 (*dst)[1 - le] = v; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
208 *dst += bps; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
209 } |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
210 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
|
211 } |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
212 |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
213 static int pcm_encode_frame(AVCodecContext *avctx, |
2979 | 214 unsigned char *frame, int buf_size, void *data) |
92 | 215 { |
216 int n, sample_size, v; | |
217 short *samples; | |
218 unsigned char *dst; | |
219 | |
220 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
|
221 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
|
222 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
|
223 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
|
224 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
|
225 sample_size = 4; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
226 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
227 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
|
228 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
|
229 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
|
230 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
|
231 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
|
232 sample_size = 3; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
233 break; |
92 | 234 case CODEC_ID_PCM_S16LE: |
235 case CODEC_ID_PCM_S16BE: | |
236 case CODEC_ID_PCM_U16LE: | |
237 case CODEC_ID_PCM_U16BE: | |
238 sample_size = 2; | |
239 break; | |
240 default: | |
241 sample_size = 1; | |
242 break; | |
243 } | |
244 n = buf_size / sample_size; | |
245 samples = data; | |
246 dst = frame; | |
247 | |
248 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
|
249 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
|
250 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
|
251 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
252 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
|
253 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
|
254 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
255 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
|
256 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
|
257 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
258 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
|
259 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
|
260 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
261 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
|
262 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
|
263 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
264 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
|
265 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
|
266 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
267 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
|
268 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
|
269 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
270 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
|
271 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
|
272 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
273 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
|
274 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
|
275 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
|
276 (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
|
277 tmp <<= 4; // sync flags would go here |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
278 dst[2] = tmp & 0xff; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
279 tmp >>= 8; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
280 dst[1] = tmp & 0xff; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
281 dst[0] = tmp >> 8; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
282 samples++; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
283 dst += 3; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
284 } |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
285 break; |
92 | 286 case CODEC_ID_PCM_S16LE: |
287 for(;n>0;n--) { | |
288 v = *samples++; | |
289 dst[0] = v & 0xff; | |
290 dst[1] = v >> 8; | |
291 dst += 2; | |
292 } | |
293 break; | |
294 case CODEC_ID_PCM_S16BE: | |
295 for(;n>0;n--) { | |
296 v = *samples++; | |
297 dst[0] = v >> 8; | |
298 dst[1] = v; | |
299 dst += 2; | |
300 } | |
301 break; | |
302 case CODEC_ID_PCM_U16LE: | |
303 for(;n>0;n--) { | |
304 v = *samples++; | |
305 v += 0x8000; | |
306 dst[0] = v & 0xff; | |
307 dst[1] = v >> 8; | |
308 dst += 2; | |
309 } | |
310 break; | |
311 case CODEC_ID_PCM_U16BE: | |
312 for(;n>0;n--) { | |
313 v = *samples++; | |
314 v += 0x8000; | |
315 dst[0] = v >> 8; | |
316 dst[1] = v; | |
317 dst += 2; | |
318 } | |
319 break; | |
320 case CODEC_ID_PCM_S8: | |
321 for(;n>0;n--) { | |
322 v = *samples++; | |
649
5a8f80522cf8
fixing overflow in 16->8 bit conversion, patch by (Nikolai Zhubr <s001 at hotbox dot ru>)
michaelni
parents:
440
diff
changeset
|
323 dst[0] = v >> 8; |
92 | 324 dst++; |
325 } | |
326 break; | |
327 case CODEC_ID_PCM_U8: | |
328 for(;n>0;n--) { | |
329 v = *samples++; | |
649
5a8f80522cf8
fixing overflow in 16->8 bit conversion, patch by (Nikolai Zhubr <s001 at hotbox dot ru>)
michaelni
parents:
440
diff
changeset
|
330 dst[0] = (v >> 8) + 128; |
92 | 331 dst++; |
332 } | |
333 break; | |
334 case CODEC_ID_PCM_ALAW: | |
335 for(;n>0;n--) { | |
336 v = *samples++; | |
337 dst[0] = linear_to_alaw[(v + 32768) >> 2]; | |
338 dst++; | |
339 } | |
340 break; | |
341 case CODEC_ID_PCM_MULAW: | |
342 for(;n>0;n--) { | |
343 v = *samples++; | |
344 dst[0] = linear_to_ulaw[(v + 32768) >> 2]; | |
345 dst++; | |
346 } | |
347 break; | |
348 default: | |
349 return -1; | |
350 } | |
381
0d6178e4d503
* Mea culpa: it seems that I broke encoding to 8-bit pcm files. This fixes it.
philipjsg
parents:
372
diff
changeset
|
351 //avctx->frame_size = (dst - frame) / (sample_size * avctx->channels); |
372 | 352 |
92 | 353 return dst - frame; |
354 } | |
355 | |
356 typedef struct PCMDecode { | |
357 short table[256]; | |
358 } PCMDecode; | |
359 | |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
360 static int pcm_decode_init(AVCodecContext * avctx) |
92 | 361 { |
362 PCMDecode *s = avctx->priv_data; | |
363 int i; | |
364 | |
365 switch(avctx->codec->id) { | |
366 case CODEC_ID_PCM_ALAW: | |
367 for(i=0;i<256;i++) | |
368 s->table[i] = alaw2linear(i); | |
369 break; | |
370 case CODEC_ID_PCM_MULAW: | |
371 for(i=0;i<256;i++) | |
372 s->table[i] = ulaw2linear(i); | |
373 break; | |
374 default: | |
375 break; | |
376 } | |
377 return 0; | |
378 } | |
379 | |
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
380 /** |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
381 * \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
|
382 * \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
|
383 * \param le 0 for big-, 1 for little-endian |
2853
87c11495e393
Document "us" parameter for PCM conversion functions.
reimar
parents:
2852
diff
changeset
|
384 * \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
|
385 * \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
|
386 * \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
|
387 * \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
|
388 */ |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
389 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
|
390 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
|
391 { |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
392 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
|
393 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
|
394 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
|
395 *(*samples)++ = ((*src)[le] << 8 | (*src)[1 - le]) - (us?0x8000:0); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
396 *src += bps; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
397 } |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
398 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
|
399 } |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
400 |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
401 static int pcm_decode_frame(AVCodecContext *avctx, |
2979 | 402 void *data, int *data_size, |
403 uint8_t *buf, int buf_size) | |
92 | 404 { |
405 PCMDecode *s = avctx->priv_data; | |
406 int n; | |
407 short *samples; | |
1064 | 408 uint8_t *src; |
92 | 409 |
410 samples = data; | |
411 src = buf; | |
412 | |
2506 | 413 if(buf_size > AVCODEC_MAX_AUDIO_FRAME_SIZE/2) |
414 buf_size = AVCODEC_MAX_AUDIO_FRAME_SIZE/2; | |
415 | |
92 | 416 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
|
417 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
|
418 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
|
419 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
420 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
|
421 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
|
422 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
423 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
|
424 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
|
425 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
426 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
|
427 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
|
428 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
429 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
|
430 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
|
431 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
432 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
|
433 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
|
434 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
435 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
|
436 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
|
437 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
438 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
|
439 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
|
440 break; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
441 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
|
442 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
|
443 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
|
444 uint32_t v = src[0] << 16 | src[1] << 8 | src[2]; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
445 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
|
446 *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
|
447 (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
|
448 src += 3; |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
449 } |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
450 break; |
92 | 451 case CODEC_ID_PCM_S16LE: |
452 n = buf_size >> 1; | |
453 for(;n>0;n--) { | |
454 *samples++ = src[0] | (src[1] << 8); | |
455 src += 2; | |
456 } | |
457 break; | |
458 case CODEC_ID_PCM_S16BE: | |
459 n = buf_size >> 1; | |
460 for(;n>0;n--) { | |
461 *samples++ = (src[0] << 8) | src[1]; | |
462 src += 2; | |
463 } | |
464 break; | |
465 case CODEC_ID_PCM_U16LE: | |
466 n = buf_size >> 1; | |
467 for(;n>0;n--) { | |
468 *samples++ = (src[0] | (src[1] << 8)) - 0x8000; | |
469 src += 2; | |
470 } | |
471 break; | |
472 case CODEC_ID_PCM_U16BE: | |
473 n = buf_size >> 1; | |
474 for(;n>0;n--) { | |
475 *samples++ = ((src[0] << 8) | src[1]) - 0x8000; | |
476 src += 2; | |
477 } | |
478 break; | |
479 case CODEC_ID_PCM_S8: | |
480 n = buf_size; | |
481 for(;n>0;n--) { | |
482 *samples++ = src[0] << 8; | |
483 src++; | |
484 } | |
485 break; | |
486 case CODEC_ID_PCM_U8: | |
487 n = buf_size; | |
488 for(;n>0;n--) { | |
489 *samples++ = ((int)src[0] - 128) << 8; | |
490 src++; | |
491 } | |
492 break; | |
493 case CODEC_ID_PCM_ALAW: | |
494 case CODEC_ID_PCM_MULAW: | |
495 n = buf_size; | |
496 for(;n>0;n--) { | |
497 *samples++ = s->table[src[0]]; | |
498 src++; | |
499 } | |
500 break; | |
501 default: | |
502 return -1; | |
503 } | |
1064 | 504 *data_size = (uint8_t *)samples - (uint8_t *)data; |
92 | 505 return src - buf; |
506 } | |
507 | |
508 #define PCM_CODEC(id, name) \ | |
509 AVCodec name ## _encoder = { \ | |
510 #name, \ | |
511 CODEC_TYPE_AUDIO, \ | |
512 id, \ | |
513 0, \ | |
2979 | 514 pcm_encode_init, \ |
515 pcm_encode_frame, \ | |
516 pcm_encode_close, \ | |
92 | 517 NULL, \ |
518 }; \ | |
519 AVCodec name ## _decoder = { \ | |
520 #name, \ | |
521 CODEC_TYPE_AUDIO, \ | |
522 id, \ | |
523 sizeof(PCMDecode), \ | |
2979 | 524 pcm_decode_init, \ |
92 | 525 NULL, \ |
526 NULL, \ | |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
527 pcm_decode_frame, \ |
1014
48349e11c9b2
C99 initializers and kill warnings patch by (mru at users dot sourceforge dot net (Mns Rullgrd))
michaelni
parents:
925
diff
changeset
|
528 } |
92 | 529 |
2852
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
530 PCM_CODEC(CODEC_ID_PCM_S32LE, pcm_s32le); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
531 PCM_CODEC(CODEC_ID_PCM_S32BE, pcm_s32be); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
532 PCM_CODEC(CODEC_ID_PCM_U32LE, pcm_u32le); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
533 PCM_CODEC(CODEC_ID_PCM_U32BE, pcm_u32be); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
534 PCM_CODEC(CODEC_ID_PCM_S24LE, pcm_s24le); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
535 PCM_CODEC(CODEC_ID_PCM_S24BE, pcm_s24be); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
536 PCM_CODEC(CODEC_ID_PCM_U24LE, pcm_u24le); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
537 PCM_CODEC(CODEC_ID_PCM_U24BE, pcm_u24be); |
6f7428adc6ad
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
2506
diff
changeset
|
538 PCM_CODEC(CODEC_ID_PCM_S24DAUD, pcm_s24daud); |
92 | 539 PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le); |
540 PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be); | |
541 PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le); | |
542 PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be); | |
543 PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8); | |
544 PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8); | |
545 PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw); | |
546 PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw); | |
440
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
547 |
000aeeac27a2
* started to cleanup name clashes for onetime compilation
kabi
parents:
429
diff
changeset
|
548 #undef PCM_CODEC |