annotate pcm.c @ 3036:0b546eab515d libavcodec

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