annotate pcm.c @ 7476:2321e0384521 libavcodec

Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field.
author pross
date Mon, 04 Aug 2008 07:47:23 +0000
parents 85ab7655ad4d
children 2f6a2fd238fb
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 *
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
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
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
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
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
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
15 * Lesser General Public License for more details.
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
16 *
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
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
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
20 */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2853
diff changeset
21
1108
bfc18110d4b6 typos & cosmetics
michaelni
parents: 1064
diff changeset
22 /**
bfc18110d4b6 typos & cosmetics
michaelni
parents: 1064
diff changeset
23 * @file pcm.c
bfc18110d4b6 typos & cosmetics
michaelni
parents: 1064
diff changeset
24 * PCM codecs
bfc18110d4b6 typos & cosmetics
michaelni
parents: 1064
diff changeset
25 */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2853
diff changeset
26
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
27 #include "avcodec.h"
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
28 #include "bitstream.h" // for ff_reverse
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
29 #include "bytestream.h"
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
30
5940
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
31 #define MAX_CHANNELS 64
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
32
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
33 /* from g711.c by SUN microsystems (unrestricted use) */
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
34
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
35 #define SIGN_BIT (0x80) /* Sign bit for a A-law byte. */
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
36 #define QUANT_MASK (0xf) /* Quantization field mask. */
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
37 #define NSEGS (8) /* Number of A-law segments. */
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
38 #define SEG_SHIFT (4) /* Left shift for segment number. */
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
39 #define SEG_MASK (0x70) /* Segment field mask. */
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
40
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
41 #define BIAS (0x84) /* Bias for linear code. */
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
42
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
43 /*
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
44 * alaw2linear() - Convert an A-law value to 16-bit linear PCM
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
45 *
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
46 */
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6218
diff changeset
47 static av_cold int alaw2linear(unsigned char a_val)
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
48 {
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
49 int t;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
50 int seg;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
51
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
52 a_val ^= 0x55;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
53
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
54 t = a_val & QUANT_MASK;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
55 seg = ((unsigned)a_val & SEG_MASK) >> SEG_SHIFT;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
56 if(seg) t= (t + t + 1 + 32) << (seg + 2);
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
57 else t= (t + t + 1 ) << 3;
1485
d7bb818768c5 simpler
michaelni
parents: 1108
diff changeset
58
6750
c93570aeb3eb Remove unnecessary parentheses from return calls.
diego
parents: 6637
diff changeset
59 return (a_val & SIGN_BIT) ? t : -t;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
60 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
61
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6218
diff changeset
62 static av_cold int ulaw2linear(unsigned char 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 int t;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
65
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
66 /* Complement to obtain normal u-law value. */
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
67 u_val = ~u_val;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
68
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
69 /*
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
70 * Extract and bias the quantization bits. Then
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
71 * shift up by the segment number and subtract out the bias.
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
72 */
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
73 t = ((u_val & QUANT_MASK) << 3) + BIAS;
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
74 t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
75
6750
c93570aeb3eb Remove unnecessary parentheses from return calls.
diego
parents: 6637
diff changeset
76 return (u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS);
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
77 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
78
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
79 /* 16384 entries per table */
4660
c800e1a03b9c 10^10l to whoever wrote this
michael
parents: 4506
diff changeset
80 static uint8_t linear_to_alaw[16384];
c800e1a03b9c 10^10l to whoever wrote this
michael
parents: 4506
diff changeset
81 static uint8_t linear_to_ulaw[16384];
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
82
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6218
diff changeset
83 static av_cold void build_xlaw_table(uint8_t *linear_to_xlaw,
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
84 int (*xlaw2linear)(unsigned char),
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2853
diff changeset
85 int mask)
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
86 {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
87 int i, j, v, v1, v2;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
88
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
89 j = 0;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
90 for(i=0;i<128;i++) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
91 if (i != 127) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
92 v1 = xlaw2linear(i ^ mask);
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
93 v2 = xlaw2linear((i + 1) ^ mask);
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
94 v = (v1 + v2 + 4) >> 3;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
95 } else {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
96 v = 8192;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
97 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
98 for(;j<v;j++) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
99 linear_to_xlaw[8192 + j] = (i ^ mask);
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
100 if (j > 0)
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
101 linear_to_xlaw[8192 - j] = (i ^ (mask ^ 0x80));
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
102 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
103 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
104 linear_to_xlaw[0] = linear_to_xlaw[1];
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
105 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
106
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6218
diff changeset
107 static av_cold int pcm_encode_init(AVCodecContext *avctx)
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
108 {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
109 avctx->frame_size = 1;
7409
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
110 if (avctx->codec->id==CODEC_ID_PCM_F32BE && avctx->sample_fmt!=SAMPLE_FMT_FLT) {
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
111 return -1;
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
112 }
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
113 switch(avctx->codec->id) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
114 case CODEC_ID_PCM_ALAW:
4660
c800e1a03b9c 10^10l to whoever wrote this
michael
parents: 4506
diff changeset
115 build_xlaw_table(linear_to_alaw, alaw2linear, 0xd5);
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
116 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
117 case CODEC_ID_PCM_MULAW:
4660
c800e1a03b9c 10^10l to whoever wrote this
michael
parents: 4506
diff changeset
118 build_xlaw_table(linear_to_ulaw, ulaw2linear, 0xff);
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
119 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
120 default:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
121 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
122 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2853
diff changeset
123
2340
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
124 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
125 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
126 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
127 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
128 case CODEC_ID_PCM_U32BE:
7409
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
129 case CODEC_ID_PCM_F32BE:
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
130 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
131 break;
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_S24LE:
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_S24BE:
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_U24LE:
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_U24BE:
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_S24DAUD:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
137 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
138 break;
2340
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
139 case CODEC_ID_PCM_S16LE:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
140 case CODEC_ID_PCM_S16BE:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
141 case CODEC_ID_PCM_U16LE:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
142 case CODEC_ID_PCM_U16BE:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
143 avctx->block_align = 2 * avctx->channels;
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
144 break;
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
145 case CODEC_ID_PCM_S8:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
146 case CODEC_ID_PCM_U8:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
147 case CODEC_ID_PCM_MULAW:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
148 case CODEC_ID_PCM_ALAW:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
149 avctx->block_align = 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 default:
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
152 break;
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
153 }
a2073e67cb19 cbr audio muxing fix
michael
parents: 2029
diff changeset
154
925
7fccaa0d699d AVVideoFrame -> AVFrame
michaelni
parents: 649
diff changeset
155 avctx->coded_frame= avcodec_alloc_frame();
7fccaa0d699d AVVideoFrame -> AVFrame
michaelni
parents: 649
diff changeset
156 avctx->coded_frame->key_frame= 1;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2853
diff changeset
157
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
158 return 0;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
159 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
160
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6218
diff changeset
161 static av_cold int pcm_encode_close(AVCodecContext *avctx)
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
162 {
925
7fccaa0d699d AVVideoFrame -> AVFrame
michaelni
parents: 649
diff changeset
163 av_freep(&avctx->coded_frame);
7fccaa0d699d AVVideoFrame -> AVFrame
michaelni
parents: 649
diff changeset
164
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
165 return 0;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
166 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
167
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
168 /**
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
169 * \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
170 * \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
171 * \param le 0 for big-, 1 for little-endian
2853
87c11495e393 Document "us" parameter for PCM conversion functions.
reimar
parents: 2852
diff changeset
172 * \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
173 * \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
174 * \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
175 * \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
176 */
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
177 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
178 short **samples, uint8_t **dst, int n) {
4956
ea7519d7649f Factorize usum
ramiro
parents: 4660
diff changeset
179 int usum = us ? 0x8000 : 0;
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
180 if (bps > 2)
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
181 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
182 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
183 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
184 register int v = *(*samples)++;
4956
ea7519d7649f Factorize usum
ramiro
parents: 4660
diff changeset
185 v += usum;
4973
91015dc624ad Revert r8979 (Ugly fix for r8963)
ramiro
parents: 4970
diff changeset
186 if (le) AV_WL16(*dst, v);
91015dc624ad Revert r8979 (Ugly fix for r8963)
ramiro
parents: 4970
diff changeset
187 else AV_WB16(*dst, v);
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
188 *dst += bps;
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 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
191 }
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
192
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
193 static int pcm_encode_frame(AVCodecContext *avctx,
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
194 unsigned char *frame, int buf_size, void *data)
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
195 {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
196 int n, sample_size, v;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
197 short *samples;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
198 unsigned char *dst;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
199
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
200 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
201 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
202 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
203 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
204 case CODEC_ID_PCM_U32BE:
7409
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
205 case CODEC_ID_PCM_F32BE:
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
206 sample_size = 4;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
207 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
208 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
209 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
210 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
211 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
212 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
213 sample_size = 3;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
214 break;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
215 case CODEC_ID_PCM_S16LE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
216 case CODEC_ID_PCM_S16BE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
217 case CODEC_ID_PCM_U16LE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
218 case CODEC_ID_PCM_U16BE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
219 sample_size = 2;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
220 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
221 default:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
222 sample_size = 1;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
223 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
224 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
225 n = buf_size / sample_size;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
226 samples = data;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
227 dst = frame;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
228
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
229 switch(avctx->codec->id) {
7409
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
230 case CODEC_ID_PCM_F32BE:
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
231 {
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
232 float *fsamples = data;
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
233 for(;n>0;n--) {
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
234 float fv = *fsamples++;
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
235 bytestream_put_be32(&dst, av_flt2int(fv));
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
236 }
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
237 samples = (void*)fsamples;
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
238 }
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
239 break;
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
240 case CODEC_ID_PCM_S32LE:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
241 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
242 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
243 case CODEC_ID_PCM_S32BE:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
244 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
245 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
246 case CODEC_ID_PCM_U32LE:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
247 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
248 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
249 case CODEC_ID_PCM_U32BE:
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, 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
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_S24LE:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
253 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
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_S24BE:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
256 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
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_U24LE:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
259 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
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_U24BE:
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, 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
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_S24DAUD:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
265 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
266 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
267 (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
268 tmp <<= 4; // sync flags would go here
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
269 bytestream_put_be24(&dst, tmp);
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
270 samples++;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
271 }
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
272 break;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
273 case CODEC_ID_PCM_S16LE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
274 for(;n>0;n--) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
275 v = *samples++;
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
276 bytestream_put_le16(&dst, v);
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
277 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
278 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
279 case CODEC_ID_PCM_S16BE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
280 for(;n>0;n--) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
281 v = *samples++;
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
282 bytestream_put_be16(&dst, v);
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
283 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
284 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
285 case CODEC_ID_PCM_U16LE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
286 for(;n>0;n--) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
287 v = *samples++;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
288 v += 0x8000;
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
289 bytestream_put_le16(&dst, v);
92
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_U16BE:
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 v += 0x8000;
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
296 bytestream_put_be16(&dst, v);
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
297 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
298 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
299 case CODEC_ID_PCM_S8:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
300 for(;n>0;n--) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
301 v = *samples++;
4960
1745d0452e87 Simplify ptr[0]; ptr++; to *ptr++
ramiro
parents: 4959
diff changeset
302 *dst++ = v >> 8;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
303 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
304 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
305 case CODEC_ID_PCM_U8:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
306 for(;n>0;n--) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
307 v = *samples++;
4960
1745d0452e87 Simplify ptr[0]; ptr++; to *ptr++
ramiro
parents: 4959
diff changeset
308 *dst++ = (v >> 8) + 128;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
309 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
310 break;
5422
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
311 case CODEC_ID_PCM_ZORK:
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
312 for(;n>0;n--) {
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
313 v= *samples++ >> 8;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
314 if(v<0) v = -v;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
315 else v+= 128;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
316 *dst++ = v;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
317 }
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
318 break;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
319 case CODEC_ID_PCM_ALAW:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
320 for(;n>0;n--) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
321 v = *samples++;
4960
1745d0452e87 Simplify ptr[0]; ptr++; to *ptr++
ramiro
parents: 4959
diff changeset
322 *dst++ = linear_to_alaw[(v + 32768) >> 2];
92
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_MULAW:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
326 for(;n>0;n--) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
327 v = *samples++;
4960
1745d0452e87 Simplify ptr[0]; ptr++; to *ptr++
ramiro
parents: 4959
diff changeset
328 *dst++ = linear_to_ulaw[(v + 32768) >> 2];
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
329 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
330 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
331 default:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
332 return -1;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
333 }
381
0d6178e4d503 * Mea culpa: it seems that I broke encoding to 8-bit pcm files. This fixes it.
philipjsg
parents: 372
diff changeset
334 //avctx->frame_size = (dst - frame) / (sample_size * avctx->channels);
372
19b6a1fa6f6d * Every frame is a key_frame
philipjsg
parents: 92
diff changeset
335
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
336 return dst - frame;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
337 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
338
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
339 typedef struct PCMDecode {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
340 short table[256];
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
341 } PCMDecode;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
342
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6218
diff changeset
343 static av_cold int pcm_decode_init(AVCodecContext * avctx)
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
344 {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
345 PCMDecode *s = avctx->priv_data;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
346 int i;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
347
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
348 switch(avctx->codec->id) {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
349 case CODEC_ID_PCM_ALAW:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
350 for(i=0;i<256;i++)
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
351 s->table[i] = alaw2linear(i);
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
352 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
353 case CODEC_ID_PCM_MULAW:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
354 for(i=0;i<256;i++)
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
355 s->table[i] = ulaw2linear(i);
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
356 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
357 default:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
358 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
359 }
7409
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
360
7476
2321e0384521 Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field.
pross
parents: 7451
diff changeset
361 avctx->sample_fmt = avctx->codec->sample_fmts[0];
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
362 return 0;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
363 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
364
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
365 /**
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
366 * \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
367 * \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
368 * \param le 0 for big-, 1 for little-endian
2853
87c11495e393 Document "us" parameter for PCM conversion functions.
reimar
parents: 2852
diff changeset
369 * \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
370 * \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
371 * \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
372 * \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
373 */
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
374 static inline void decode_to16(int bps, int le, int us,
6218
michael
parents: 6033
diff changeset
375 const uint8_t **src, short **samples, int src_len)
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
376 {
4956
ea7519d7649f Factorize usum
ramiro
parents: 4660
diff changeset
377 int usum = us ? -0x8000 : 0;
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
378 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
379 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
380 for(;n>0;n--) {
4958
842b30b88d9a Use AV_XX16 macros
ramiro
parents: 4956
diff changeset
381 register int v;
842b30b88d9a Use AV_XX16 macros
ramiro
parents: 4956
diff changeset
382 if (le) v = AV_RL16(*src);
842b30b88d9a Use AV_XX16 macros
ramiro
parents: 4956
diff changeset
383 else v = AV_RB16(*src);
842b30b88d9a Use AV_XX16 macros
ramiro
parents: 4956
diff changeset
384 v += usum;
842b30b88d9a Use AV_XX16 macros
ramiro
parents: 4956
diff changeset
385 *(*samples)++ = v;
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
386 *src += bps;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
387 }
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
388 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
389 }
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
390
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
391 static int pcm_decode_frame(AVCodecContext *avctx,
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
392 void *data, int *data_size,
6218
michael
parents: 6033
diff changeset
393 const uint8_t *buf, int buf_size)
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
394 {
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
395 PCMDecode *s = avctx->priv_data;
5940
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
396 int c, n;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
397 short *samples;
6218
michael
parents: 6033
diff changeset
398 const uint8_t *src, *src2[MAX_CHANNELS];
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
399
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
400 samples = data;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
401 src = buf;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
402
6821
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
403 if(avctx->channels <= 0 || avctx->channels > MAX_CHANNELS){
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
404 av_log(avctx, AV_LOG_ERROR, "PCM channels out of bounds\n");
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
405 return -1;
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
406 }
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
407
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
408 n = avctx->channels * av_get_bits_per_sample(avctx->codec_id)/8;
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
409 /* av_get_bits_per_sample returns 0 for CODEC_ID_PCM_DVD */
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
410 if (CODEC_ID_PCM_DVD == avctx->codec_id)
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
411 /* 2 samples are interleaved per block in PCM_DVD */
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
412 n = 2 * avctx->channels * avctx->bits_per_sample/8;
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
413
6033
bd7600c7a061 Fix crash in PCM decoder when number of channels is not set.
benoit
parents: 5944
diff changeset
414 if(n && buf_size % n){
4506
709ddd620e04 packets with half pcm samples are invalid
michael
parents: 4351
diff changeset
415 av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
709ddd620e04 packets with half pcm samples are invalid
michael
parents: 4351
diff changeset
416 return -1;
709ddd620e04 packets with half pcm samples are invalid
michael
parents: 4351
diff changeset
417 }
709ddd620e04 packets with half pcm samples are invalid
michael
parents: 4351
diff changeset
418
4351
1e251b54cba2 avcodec_decode_audio2()
michael
parents: 3947
diff changeset
419 buf_size= FFMIN(buf_size, *data_size/2);
1e251b54cba2 avcodec_decode_audio2()
michael
parents: 3947
diff changeset
420 *data_size=0;
2506
9404bbf9de07 buffer overflow
michael
parents: 2340
diff changeset
421
5940
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
422 n = buf_size/avctx->channels;
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
423 for(c=0;c<avctx->channels;c++)
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
424 src2[c] = &src[c*n];
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
425
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
426 switch(avctx->codec->id) {
7409
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
427 case CODEC_ID_PCM_F32BE:
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
428 {
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
429 float *fsamples = data;
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
430 n = buf_size >> 2;
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
431 for(;n>0;n--)
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
432 *fsamples++ = av_int2flt(bytestream_get_be32(&src));
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
433 samples = (void*)fsamples;
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
434 break;
21770337ff2d add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
pross
parents: 7197
diff changeset
435 }
2852
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_S32LE:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
437 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
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_S32BE:
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
440 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
441 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
442 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
443 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
444 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
445 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
446 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
447 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
448 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
449 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
450 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
451 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
452 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
453 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
454 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
455 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
456 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
457 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
458 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
459 break;
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
460 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
461 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
462 for(;n>0;n--) {
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
463 uint32_t v = bytestream_get_be24(&src);
2852
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
464 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
465 *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
466 (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
467 }
6f7428adc6ad Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents: 2506
diff changeset
468 break;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
469 case CODEC_ID_PCM_S16LE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
470 n = buf_size >> 1;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
471 for(;n>0;n--) {
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
472 *samples++ = bytestream_get_le16(&src);
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
473 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
474 break;
5940
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
475 case CODEC_ID_PCM_S16LE_PLANAR:
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
476 for(n>>=1;n>0;n--)
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
477 for(c=0;c<avctx->channels;c++)
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
478 *samples++ = bytestream_get_le16(&src2[c]);
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
479 src = src2[avctx->channels-1];
d63186919b60 add pcm_s16le_planar support for electronicarts files
aurel
parents: 5880
diff changeset
480 break;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
481 case CODEC_ID_PCM_S16BE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
482 n = buf_size >> 1;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
483 for(;n>0;n--) {
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
484 *samples++ = bytestream_get_be16(&src);
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
485 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
486 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
487 case CODEC_ID_PCM_U16LE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
488 n = buf_size >> 1;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
489 for(;n>0;n--) {
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
490 *samples++ = bytestream_get_le16(&src) - 0x8000;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
491 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
492 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
493 case CODEC_ID_PCM_U16BE:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
494 n = buf_size >> 1;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
495 for(;n>0;n--) {
4959
e00e16be833a Use bytestream
ramiro
parents: 4958
diff changeset
496 *samples++ = bytestream_get_be16(&src) - 0x8000;
92
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 case CODEC_ID_PCM_S8:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
500 n = buf_size;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
501 for(;n>0;n--) {
4960
1745d0452e87 Simplify ptr[0]; ptr++; to *ptr++
ramiro
parents: 4959
diff changeset
502 *samples++ = *src++ << 8;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
503 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
504 break;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
505 case CODEC_ID_PCM_U8:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
506 n = buf_size;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
507 for(;n>0;n--) {
4960
1745d0452e87 Simplify ptr[0]; ptr++; to *ptr++
ramiro
parents: 4959
diff changeset
508 *samples++ = ((int)*src++ - 128) << 8;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
509 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
510 break;
5422
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
511 case CODEC_ID_PCM_ZORK:
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
512 n = buf_size;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
513 for(;n>0;n--) {
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
514 int x= *src++;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
515 if(x&128) x-= 128;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
516 else x = -x;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
517 *samples++ = x << 8;
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
518 }
ad384eda0cb7 support silly PCM variant used by zork nemesis
michael
parents: 4973
diff changeset
519 break;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
520 case CODEC_ID_PCM_ALAW:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
521 case CODEC_ID_PCM_MULAW:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
522 n = buf_size;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
523 for(;n>0;n--) {
4960
1745d0452e87 Simplify ptr[0]; ptr++; to *ptr++
ramiro
parents: 4959
diff changeset
524 *samples++ = s->table[*src++];
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
525 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
526 break;
6821
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
527 case CODEC_ID_PCM_DVD:
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
528 if(avctx->bits_per_sample != 20 && avctx->bits_per_sample != 24) {
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
529 av_log(avctx, AV_LOG_ERROR, "PCM DVD unsupported sample depth\n");
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
530 return -1;
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
531 } else {
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
532 int jump = avctx->channels * (avctx->bits_per_sample-16) / 4;
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
533 n = buf_size / (avctx->channels * 2 * avctx->bits_per_sample / 8);
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
534 while (n--) {
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
535 for (c=0; c < 2*avctx->channels; c++)
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
536 *samples++ = bytestream_get_be16(&src);
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
537 src += jump;
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
538 }
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
539 }
1b9c458d6d60 LPCM 24 bits support, patch by Lars T¸«£uber, lars.taeuber gmx net
diego
parents: 6817
diff changeset
540 break;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
541 default:
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
542 return -1;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
543 }
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1014
diff changeset
544 *data_size = (uint8_t *)samples - (uint8_t *)data;
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
545 return src - buf;
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
546 }
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
547
5880
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
548 #ifdef CONFIG_ENCODERS
7451
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
549 #define PCM_ENCODER(id,sample_fmt_,name,long_name_) \
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
550 AVCodec name ## _encoder = { \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
551 #name, \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
552 CODEC_TYPE_AUDIO, \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
553 id, \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
554 0, \
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
555 pcm_encode_init, \
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
556 pcm_encode_frame, \
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
557 pcm_encode_close, \
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
558 NULL, \
7451
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
559 .sample_fmts = (enum SampleFormat[]){sample_fmt_,SAMPLE_FMT_NONE}, \
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6821
diff changeset
560 .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
5880
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
561 };
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
562 #else
7451
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
563 #define PCM_ENCODER(id,sample_fmt_,name,long_name_)
5880
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
564 #endif
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
565
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
566 #ifdef CONFIG_DECODERS
7476
2321e0384521 Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field.
pross
parents: 7451
diff changeset
567 #define PCM_DECODER(id,sample_fmt_,name,long_name_) \
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
568 AVCodec name ## _decoder = { \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
569 #name, \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
570 CODEC_TYPE_AUDIO, \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
571 id, \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
572 sizeof(PCMDecode), \
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
573 pcm_decode_init, \
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
574 NULL, \
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
575 NULL, \
440
000aeeac27a2 * started to cleanup name clashes for onetime compilation
kabi
parents: 429
diff changeset
576 pcm_decode_frame, \
7476
2321e0384521 Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field.
pross
parents: 7451
diff changeset
577 .sample_fmts = (enum SampleFormat[]){sample_fmt_,SAMPLE_FMT_NONE}, \
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6821
diff changeset
578 .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
5880
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
579 };
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
580 #else
7476
2321e0384521 Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field.
pross
parents: 7451
diff changeset
581 #define PCM_DECODER(id,sample_fmt_,name,long_name_)
5880
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
582 #endif
6814207ffb27 split definition of PCM_CODEC into PCM_ENCODER and PCM_DECODER
aurel
parents: 5861
diff changeset
583
7451
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
584 #define PCM_CODEC(id, sample_fmt_, name, long_name_) \
7476
2321e0384521 Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field.
pross
parents: 7451
diff changeset
585 PCM_ENCODER(id,sample_fmt_,name,long_name_) PCM_DECODER(id,sample_fmt_,name,long_name_)
92
1d3eb6cdc6b5 added pcm codecs
glantau
parents:
diff changeset
586
7197
54f8d960f15b Add a note to remind people that new PCM/ADPCM formats need to be added to
diego
parents: 7040
diff changeset
587 /* Note: Do not forget to add new entries to the Makefile as well. */
7451
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
588 PCM_CODEC (CODEC_ID_PCM_ALAW, SAMPLE_FMT_S16, pcm_alaw, "A-law PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
589 PCM_CODEC (CODEC_ID_PCM_DVD, SAMPLE_FMT_S16, pcm_dvd, "signed 16|20|24-bit big-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
590 PCM_CODEC (CODEC_ID_PCM_F32BE, SAMPLE_FMT_FLT, pcm_f32be, "32-bit floating point big-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
591 PCM_CODEC (CODEC_ID_PCM_MULAW, SAMPLE_FMT_S16, pcm_mulaw, "mu-law PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
592 PCM_CODEC (CODEC_ID_PCM_S8, SAMPLE_FMT_S16, pcm_s8, "signed 8-bit PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
593 PCM_CODEC (CODEC_ID_PCM_S16BE, SAMPLE_FMT_S16, pcm_s16be, "signed 16-bit big-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
594 PCM_CODEC (CODEC_ID_PCM_S16LE, SAMPLE_FMT_S16, pcm_s16le, "signed 16-bit little-endian PCM");
7476
2321e0384521 Simplify PCM codec; use sample_fmts field to set the avctx->sample_fmt field.
pross
parents: 7451
diff changeset
595 PCM_DECODER(CODEC_ID_PCM_S16LE_PLANAR, SAMPLE_FMT_S16, pcm_s16le_planar, "16-bit little-endian planar PCM");
7451
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
596 PCM_CODEC (CODEC_ID_PCM_S24BE, SAMPLE_FMT_S16, pcm_s24be, "signed 24-bit big-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
597 PCM_CODEC (CODEC_ID_PCM_S24DAUD, SAMPLE_FMT_S16, pcm_s24daud, "D-Cinema audio signed 24-bit PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
598 PCM_CODEC (CODEC_ID_PCM_S24LE, SAMPLE_FMT_S16, pcm_s24le, "signed 24-bit little-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
599 PCM_CODEC (CODEC_ID_PCM_S32BE, SAMPLE_FMT_S16, pcm_s32be, "signed 32-bit big-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
600 PCM_CODEC (CODEC_ID_PCM_S32LE, SAMPLE_FMT_S16, pcm_s32le, "signed 32-bit little-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
601 PCM_CODEC (CODEC_ID_PCM_U8, SAMPLE_FMT_S16, pcm_u8, "unsigned 8-bit PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
602 PCM_CODEC (CODEC_ID_PCM_U16BE, SAMPLE_FMT_S16, pcm_u16be, "unsigned 16-bit big-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
603 PCM_CODEC (CODEC_ID_PCM_U16LE, SAMPLE_FMT_S16, pcm_u16le, "unsigned 16-bit little-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
604 PCM_CODEC (CODEC_ID_PCM_U24BE, SAMPLE_FMT_S16, pcm_u24be, "unsigned 24-bit big-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
605 PCM_CODEC (CODEC_ID_PCM_U24LE, SAMPLE_FMT_S16, pcm_u24le, "unsigned 24-bit little-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
606 PCM_CODEC (CODEC_ID_PCM_U32BE, SAMPLE_FMT_S16, pcm_u32be, "unsigned 32-bit big-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
607 PCM_CODEC (CODEC_ID_PCM_U32LE, SAMPLE_FMT_S16, pcm_u32le, "unsigned 32-bit little-endian PCM");
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7409
diff changeset
608 PCM_CODEC (CODEC_ID_PCM_ZORK, SAMPLE_FMT_S16, pcm_zork, "Zork PCM");