3 * Copyright (c) 2001 Fabrice Bellard
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include "libavutil/common.h" /* for av_reverse */
29 #include "bytestream.h"
31 #include "pcm_tablegen.h"
33 #define MAX_CHANNELS 64
35 static av_cold int pcm_encode_init(AVCodecContext *avctx)
37 avctx->frame_size = 0;
38 switch (avctx->codec->id) {
39 case CODEC_ID_PCM_ALAW:
42 case CODEC_ID_PCM_MULAW:
49 avctx->bits_per_coded_sample = av_get_bits_per_sample(avctx->codec->id);
50 avctx->block_align = avctx->channels * avctx->bits_per_coded_sample / 8;
51 avctx->coded_frame = avcodec_alloc_frame();
52 if (!avctx->coded_frame)
53 return AVERROR(ENOMEM);
58 static av_cold int pcm_encode_close(AVCodecContext *avctx)
60 av_freep(&avctx->coded_frame);
66 * Write PCM samples macro
67 * @param type Datatype of native machine format
68 * @param endian bytestream_put_xxx() suffix
69 * @param src Source pointer (variable name)
70 * @param dst Destination pointer (variable name)
71 * @param n Total number of samples (variable name)
72 * @param shift Bitshift (bits)
73 * @param offset Sample value offset
75 #define ENCODE(type, endian, src, dst, n, shift, offset) \
76 samples_ ## type = (const type *) src; \
77 for (; n > 0; n--) { \
78 register type v = (*samples_ ## type++ >> shift) + offset; \
79 bytestream_put_ ## endian(&dst, v); \
82 static int pcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
83 const AVFrame *frame, int *got_packet_ptr)
85 int n, sample_size, v, ret;
89 const int16_t *samples_int16_t;
90 const int32_t *samples_int32_t;
91 const int64_t *samples_int64_t;
92 const uint16_t *samples_uint16_t;
93 const uint32_t *samples_uint32_t;
95 sample_size = av_get_bits_per_sample(avctx->codec->id) / 8;
96 n = frame->nb_samples * avctx->channels;
97 samples = (const short *)frame->data[0];
99 if ((ret = ff_alloc_packet(avpkt, n * sample_size))) {
100 av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
105 switch (avctx->codec->id) {
106 case CODEC_ID_PCM_U32LE:
107 ENCODE(uint32_t, le32, samples, dst, n, 0, 0x80000000)
109 case CODEC_ID_PCM_U32BE:
110 ENCODE(uint32_t, be32, samples, dst, n, 0, 0x80000000)
112 case CODEC_ID_PCM_S24LE:
113 ENCODE(int32_t, le24, samples, dst, n, 8, 0)
115 case CODEC_ID_PCM_S24BE:
116 ENCODE(int32_t, be24, samples, dst, n, 8, 0)
118 case CODEC_ID_PCM_U24LE:
119 ENCODE(uint32_t, le24, samples, dst, n, 8, 0x800000)
121 case CODEC_ID_PCM_U24BE:
122 ENCODE(uint32_t, be24, samples, dst, n, 8, 0x800000)
124 case CODEC_ID_PCM_S24DAUD:
126 uint32_t tmp = av_reverse[(*samples >> 8) & 0xff] +
127 (av_reverse[*samples & 0xff] << 8);
128 tmp <<= 4; // sync flags would go here
129 bytestream_put_be24(&dst, tmp);
133 case CODEC_ID_PCM_U16LE:
134 ENCODE(uint16_t, le16, samples, dst, n, 0, 0x8000)
136 case CODEC_ID_PCM_U16BE:
137 ENCODE(uint16_t, be16, samples, dst, n, 0, 0x8000)
139 case CODEC_ID_PCM_S8:
140 srcu8 = frame->data[0];
147 case CODEC_ID_PCM_F64LE:
148 ENCODE(int64_t, le64, samples, dst, n, 0, 0)
150 case CODEC_ID_PCM_S32LE:
151 case CODEC_ID_PCM_F32LE:
152 ENCODE(int32_t, le32, samples, dst, n, 0, 0)
154 case CODEC_ID_PCM_S16LE:
155 ENCODE(int16_t, le16, samples, dst, n, 0, 0)
157 case CODEC_ID_PCM_F64BE:
158 case CODEC_ID_PCM_F32BE:
159 case CODEC_ID_PCM_S32BE:
160 case CODEC_ID_PCM_S16BE:
162 case CODEC_ID_PCM_F64BE:
163 ENCODE(int64_t, be64, samples, dst, n, 0, 0)
165 case CODEC_ID_PCM_F32BE:
166 case CODEC_ID_PCM_S32BE:
167 ENCODE(int32_t, be32, samples, dst, n, 0, 0)
169 case CODEC_ID_PCM_S16BE:
170 ENCODE(int16_t, be16, samples, dst, n, 0, 0)
172 case CODEC_ID_PCM_F64LE:
173 case CODEC_ID_PCM_F32LE:
174 case CODEC_ID_PCM_S32LE:
175 case CODEC_ID_PCM_S16LE:
176 #endif /* HAVE_BIGENDIAN */
177 case CODEC_ID_PCM_U8:
178 memcpy(dst, samples, n * sample_size);
179 dst += n * sample_size;
181 case CODEC_ID_PCM_ALAW:
184 *dst++ = linear_to_alaw[(v + 32768) >> 2];
187 case CODEC_ID_PCM_MULAW:
190 *dst++ = linear_to_ulaw[(v + 32768) >> 2];
201 typedef struct PCMDecode {
206 static av_cold int pcm_decode_init(AVCodecContext *avctx)
208 PCMDecode *s = avctx->priv_data;
211 if (avctx->channels <= 0 || avctx->channels > MAX_CHANNELS) {
212 av_log(avctx, AV_LOG_ERROR, "PCM channels out of bounds\n");
213 return AVERROR(EINVAL);
216 switch (avctx->codec->id) {
217 case CODEC_ID_PCM_ALAW:
218 for (i = 0; i < 256; i++)
219 s->table[i] = alaw2linear(i);
221 case CODEC_ID_PCM_MULAW:
222 for (i = 0; i < 256; i++)
223 s->table[i] = ulaw2linear(i);
229 avctx->sample_fmt = avctx->codec->sample_fmts[0];
231 if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
232 avctx->bits_per_raw_sample = av_get_bits_per_sample(avctx->codec->id);
234 avcodec_get_frame_defaults(&s->frame);
235 avctx->coded_frame = &s->frame;
241 * Read PCM samples macro
242 * @param size Data size of native machine format
243 * @param endian bytestream_get_xxx() endian suffix
244 * @param src Source pointer (variable name)
245 * @param dst Destination pointer (variable name)
246 * @param n Total number of samples (variable name)
247 * @param shift Bitshift (bits)
248 * @param offset Sample value offset
250 #define DECODE(size, endian, src, dst, n, shift, offset) \
251 for (; n > 0; n--) { \
252 uint ## size ## _t v = bytestream_get_ ## endian(&src); \
253 AV_WN ## size ## A(dst, (v - offset) << shift); \
257 static int pcm_decode_frame(AVCodecContext *avctx, void *data,
258 int *got_frame_ptr, AVPacket *avpkt)
260 const uint8_t *src = avpkt->data;
261 int buf_size = avpkt->size;
262 PCMDecode *s = avctx->priv_data;
263 int sample_size, c, n, ret, samples_per_block;
265 int32_t *dst_int32_t;
267 sample_size = av_get_bits_per_sample(avctx->codec_id) / 8;
269 /* av_get_bits_per_sample returns 0 for CODEC_ID_PCM_DVD */
270 samples_per_block = 1;
271 if (CODEC_ID_PCM_DVD == avctx->codec_id) {
272 if (avctx->bits_per_coded_sample != 20 &&
273 avctx->bits_per_coded_sample != 24) {
274 av_log(avctx, AV_LOG_ERROR, "PCM DVD unsupported sample depth\n");
275 return AVERROR(EINVAL);
277 /* 2 samples are interleaved per block in PCM_DVD */
278 samples_per_block = 2;
279 sample_size = avctx->bits_per_coded_sample * 2 / 8;
280 } else if (avctx->codec_id == CODEC_ID_PCM_LXF) {
281 /* we process 40-bit blocks per channel for LXF */
282 samples_per_block = 2;
286 if (sample_size == 0) {
287 av_log(avctx, AV_LOG_ERROR, "Invalid sample_size\n");
288 return AVERROR(EINVAL);
291 n = avctx->channels * sample_size;
293 if (n && buf_size % n) {
295 av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
298 buf_size -= buf_size % n;
301 n = buf_size / sample_size;
303 /* get output buffer */
304 s->frame.nb_samples = n * samples_per_block / avctx->channels;
305 if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
306 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
309 samples = s->frame.data[0];
311 switch (avctx->codec->id) {
312 case CODEC_ID_PCM_U32LE:
313 DECODE(32, le32, src, samples, n, 0, 0x80000000)
315 case CODEC_ID_PCM_U32BE:
316 DECODE(32, be32, src, samples, n, 0, 0x80000000)
318 case CODEC_ID_PCM_S24LE:
319 DECODE(32, le24, src, samples, n, 8, 0)
321 case CODEC_ID_PCM_S24BE:
322 DECODE(32, be24, src, samples, n, 8, 0)
324 case CODEC_ID_PCM_U24LE:
325 DECODE(32, le24, src, samples, n, 8, 0x800000)
327 case CODEC_ID_PCM_U24BE:
328 DECODE(32, be24, src, samples, n, 8, 0x800000)
330 case CODEC_ID_PCM_S24DAUD:
332 uint32_t v = bytestream_get_be24(&src);
333 v >>= 4; // sync flags are here
334 AV_WN16A(samples, av_reverse[(v >> 8) & 0xff] +
335 (av_reverse[v & 0xff] << 8));
339 case CODEC_ID_PCM_S16LE_PLANAR:
341 const uint8_t *src2[MAX_CHANNELS];
342 n /= avctx->channels;
343 for (c = 0; c < avctx->channels; c++)
344 src2[c] = &src[c * n * 2];
346 for (c = 0; c < avctx->channels; c++) {
347 AV_WN16A(samples, bytestream_get_le16(&src2[c]));
352 case CODEC_ID_PCM_U16LE:
353 DECODE(16, le16, src, samples, n, 0, 0x8000)
355 case CODEC_ID_PCM_U16BE:
356 DECODE(16, be16, src, samples, n, 0, 0x8000)
358 case CODEC_ID_PCM_S8:
360 *samples++ = *src++ + 128;
363 case CODEC_ID_PCM_F64LE:
364 DECODE(64, le64, src, samples, n, 0, 0)
366 case CODEC_ID_PCM_S32LE:
367 case CODEC_ID_PCM_F32LE:
368 DECODE(32, le32, src, samples, n, 0, 0)
370 case CODEC_ID_PCM_S16LE:
371 DECODE(16, le16, src, samples, n, 0, 0)
373 case CODEC_ID_PCM_F64BE:
374 case CODEC_ID_PCM_F32BE:
375 case CODEC_ID_PCM_S32BE:
376 case CODEC_ID_PCM_S16BE:
378 case CODEC_ID_PCM_F64BE:
379 DECODE(64, be64, src, samples, n, 0, 0)
381 case CODEC_ID_PCM_F32BE:
382 case CODEC_ID_PCM_S32BE:
383 DECODE(32, be32, src, samples, n, 0, 0)
385 case CODEC_ID_PCM_S16BE:
386 DECODE(16, be16, src, samples, n, 0, 0)
388 case CODEC_ID_PCM_F64LE:
389 case CODEC_ID_PCM_F32LE:
390 case CODEC_ID_PCM_S32LE:
391 case CODEC_ID_PCM_S16LE:
392 #endif /* HAVE_BIGENDIAN */
393 case CODEC_ID_PCM_U8:
394 memcpy(samples, src, n * sample_size);
396 case CODEC_ID_PCM_ZORK:
404 case CODEC_ID_PCM_ALAW:
405 case CODEC_ID_PCM_MULAW:
407 AV_WN16A(samples, s->table[*src++]);
411 case CODEC_ID_PCM_DVD:
414 dst_int32_t = (int32_t *)s->frame.data[0];
415 n /= avctx->channels;
416 switch (avctx->bits_per_coded_sample) {
422 *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8 & 0xf0) << 8);
423 *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++ & 0x0f) << 12);
433 *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++) << 8);
434 *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++) << 8);
442 case CODEC_ID_PCM_LXF:
446 dst_int32_t = (int32_t *)s->frame.data[0];
447 n /= avctx->channels;
448 // unpack and de-planarize
449 for (i = 0; i < n; i++) {
450 for (c = 0, src8 = src + i * 5; c < avctx->channels; c++, src8 += n * 5) {
451 // extract low 20 bits and expand to 32 bits
452 *dst_int32_t++ = (src8[2] << 28) |
455 ((src8[2] & 0xF) << 8) |
458 for (c = 0, src8 = src + i * 5; c < avctx->channels; c++, src8 += n * 5) {
459 // extract high 20 bits and expand to 32 bits
460 *dst_int32_t++ = (src8[4] << 24) |
462 ((src8[2] & 0xF0) << 8) |
474 *(AVFrame *)data = s->frame;
480 #define PCM_ENCODER(id_, sample_fmt_, name_, long_name_) \
481 AVCodec ff_ ## name_ ## _encoder = { \
483 .type = AVMEDIA_TYPE_AUDIO, \
485 .init = pcm_encode_init, \
486 .encode2 = pcm_encode_frame, \
487 .close = pcm_encode_close, \
488 .capabilities = CODEC_CAP_VARIABLE_FRAME_SIZE, \
489 .sample_fmts = (const enum AVSampleFormat[]){ sample_fmt_, \
490 AV_SAMPLE_FMT_NONE }, \
491 .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
494 #define PCM_ENCODER(id, sample_fmt_, name, long_name_)
498 #define PCM_DECODER(id_, sample_fmt_, name_, long_name_) \
499 AVCodec ff_ ## name_ ## _decoder = { \
501 .type = AVMEDIA_TYPE_AUDIO, \
503 .priv_data_size = sizeof(PCMDecode), \
504 .init = pcm_decode_init, \
505 .decode = pcm_decode_frame, \
506 .capabilities = CODEC_CAP_DR1, \
507 .sample_fmts = (const enum AVSampleFormat[]){ sample_fmt_, \
508 AV_SAMPLE_FMT_NONE }, \
509 .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
512 #define PCM_DECODER(id, sample_fmt_, name, long_name_)
515 #define PCM_CODEC(id, sample_fmt_, name, long_name_) \
516 PCM_ENCODER(id, sample_fmt_, name, long_name_); \
517 PCM_DECODER(id, sample_fmt_, name, long_name_)
519 /* Note: Do not forget to add new entries to the Makefile as well. */
520 PCM_CODEC (CODEC_ID_PCM_ALAW, AV_SAMPLE_FMT_S16, pcm_alaw, "PCM A-law");
521 PCM_DECODER(CODEC_ID_PCM_DVD, AV_SAMPLE_FMT_S32, pcm_dvd, "PCM signed 20|24-bit big-endian");
522 PCM_CODEC (CODEC_ID_PCM_F32BE, AV_SAMPLE_FMT_FLT, pcm_f32be, "PCM 32-bit floating point big-endian");
523 PCM_CODEC (CODEC_ID_PCM_F32LE, AV_SAMPLE_FMT_FLT, pcm_f32le, "PCM 32-bit floating point little-endian");
524 PCM_CODEC (CODEC_ID_PCM_F64BE, AV_SAMPLE_FMT_DBL, pcm_f64be, "PCM 64-bit floating point big-endian");
525 PCM_CODEC (CODEC_ID_PCM_F64LE, AV_SAMPLE_FMT_DBL, pcm_f64le, "PCM 64-bit floating point little-endian");
526 PCM_DECODER(CODEC_ID_PCM_LXF, AV_SAMPLE_FMT_S32, pcm_lxf, "PCM signed 20-bit little-endian planar");
527 PCM_CODEC (CODEC_ID_PCM_MULAW, AV_SAMPLE_FMT_S16, pcm_mulaw, "PCM mu-law");
528 PCM_CODEC (CODEC_ID_PCM_S8, AV_SAMPLE_FMT_U8, pcm_s8, "PCM signed 8-bit");
529 PCM_CODEC (CODEC_ID_PCM_S16BE, AV_SAMPLE_FMT_S16, pcm_s16be, "PCM signed 16-bit big-endian");
530 PCM_CODEC (CODEC_ID_PCM_S16LE, AV_SAMPLE_FMT_S16, pcm_s16le, "PCM signed 16-bit little-endian");
531 PCM_DECODER(CODEC_ID_PCM_S16LE_PLANAR, AV_SAMPLE_FMT_S16, pcm_s16le_planar, "PCM 16-bit little-endian planar");
532 PCM_CODEC (CODEC_ID_PCM_S24BE, AV_SAMPLE_FMT_S32, pcm_s24be, "PCM signed 24-bit big-endian");
533 PCM_CODEC (CODEC_ID_PCM_S24DAUD, AV_SAMPLE_FMT_S16, pcm_s24daud, "PCM D-Cinema audio signed 24-bit");
534 PCM_CODEC (CODEC_ID_PCM_S24LE, AV_SAMPLE_FMT_S32, pcm_s24le, "PCM signed 24-bit little-endian");
535 PCM_CODEC (CODEC_ID_PCM_S32BE, AV_SAMPLE_FMT_S32, pcm_s32be, "PCM signed 32-bit big-endian");
536 PCM_CODEC (CODEC_ID_PCM_S32LE, AV_SAMPLE_FMT_S32, pcm_s32le, "PCM signed 32-bit little-endian");
537 PCM_CODEC (CODEC_ID_PCM_U8, AV_SAMPLE_FMT_U8, pcm_u8, "PCM unsigned 8-bit");
538 PCM_CODEC (CODEC_ID_PCM_U16BE, AV_SAMPLE_FMT_S16, pcm_u16be, "PCM unsigned 16-bit big-endian");
539 PCM_CODEC (CODEC_ID_PCM_U16LE, AV_SAMPLE_FMT_S16, pcm_u16le, "PCM unsigned 16-bit little-endian");
540 PCM_CODEC (CODEC_ID_PCM_U24BE, AV_SAMPLE_FMT_S32, pcm_u24be, "PCM unsigned 24-bit big-endian");
541 PCM_CODEC (CODEC_ID_PCM_U24LE, AV_SAMPLE_FMT_S32, pcm_u24le, "PCM unsigned 24-bit little-endian");
542 PCM_CODEC (CODEC_ID_PCM_U32BE, AV_SAMPLE_FMT_S32, pcm_u32be, "PCM unsigned 32-bit big-endian");
543 PCM_CODEC (CODEC_ID_PCM_U32LE, AV_SAMPLE_FMT_S32, pcm_u32le, "PCM unsigned 32-bit little-endian");
544 PCM_DECODER(CODEC_ID_PCM_ZORK, AV_SAMPLE_FMT_U8, pcm_zork, "PCM Zork");