pcm.c 18.4 KB
Newer Older
glantau's avatar
glantau committed
1 2
/*
 * PCM codecs
glantau's avatar
glantau committed
3
 * Copyright (c) 2001 Fabrice Bellard.
glantau's avatar
glantau committed
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
glantau's avatar
glantau committed
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
glantau's avatar
glantau committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
glantau's avatar
glantau committed
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
glantau's avatar
glantau committed
14 15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
glantau's avatar
glantau committed
16
 *
glantau's avatar
glantau committed
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
glantau's avatar
glantau committed
20
 */
21

michaelni's avatar
michaelni committed
22 23 24 25
/**
 * @file pcm.c
 * PCM codecs
 */
26

glantau's avatar
glantau committed
27
#include "avcodec.h"
28
#include "bitstream.h" // for ff_reverse
ramiro's avatar
ramiro committed
29
#include "bytestream.h"
glantau's avatar
glantau committed
30

31 32
#define MAX_CHANNELS 64

glantau's avatar
glantau committed
33 34
/* from g711.c by SUN microsystems (unrestricted use) */

35 36 37 38 39
#define         SIGN_BIT        (0x80)      /* Sign bit for a A-law byte. */
#define         QUANT_MASK      (0xf)       /* Quantization field mask. */
#define         NSEGS           (8)         /* Number of A-law segments. */
#define         SEG_SHIFT       (4)         /* Left shift for segment number. */
#define         SEG_MASK        (0x70)      /* Segment field mask. */
glantau's avatar
glantau committed
40

41
#define         BIAS            (0x84)      /* Bias for linear code. */
glantau's avatar
glantau committed
42 43 44 45 46

/*
 * alaw2linear() - Convert an A-law value to 16-bit linear PCM
 *
 */
47
static av_cold int alaw2linear(unsigned char a_val)
glantau's avatar
glantau committed
48
{
49 50
        int t;
        int seg;
glantau's avatar
glantau committed
51

52
        a_val ^= 0x55;
glantau's avatar
glantau committed
53

54 55 56 57
        t = a_val & QUANT_MASK;
        seg = ((unsigned)a_val & SEG_MASK) >> SEG_SHIFT;
        if(seg) t= (t + t + 1 + 32) << (seg + 2);
        else    t= (t + t + 1     ) << 3;
michaelni's avatar
michaelni committed
58

59
        return (a_val & SIGN_BIT) ? t : -t;
glantau's avatar
glantau committed
60 61
}

62
static av_cold int ulaw2linear(unsigned char u_val)
glantau's avatar
glantau committed
63
{
64
        int t;
glantau's avatar
glantau committed
65

66 67
        /* Complement to obtain normal u-law value. */
        u_val = ~u_val;
glantau's avatar
glantau committed
68

69 70 71 72 73 74
        /*
         * Extract and bias the quantization bits. Then
         * shift up by the segment number and subtract out the bias.
         */
        t = ((u_val & QUANT_MASK) << 3) + BIAS;
        t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT;
glantau's avatar
glantau committed
75

76
        return (u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS);
glantau's avatar
glantau committed
77 78 79
}

/* 16384 entries per table */
michael's avatar
michael committed
80 81
static uint8_t linear_to_alaw[16384];
static uint8_t linear_to_ulaw[16384];
glantau's avatar
glantau committed
82

83
static av_cold void build_xlaw_table(uint8_t *linear_to_xlaw,
glantau's avatar
glantau committed
84
                             int (*xlaw2linear)(unsigned char),
85
                             int mask)
glantau's avatar
glantau committed
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
{
    int i, j, v, v1, v2;

    j = 0;
    for(i=0;i<128;i++) {
        if (i != 127) {
            v1 = xlaw2linear(i ^ mask);
            v2 = xlaw2linear((i + 1) ^ mask);
            v = (v1 + v2 + 4) >> 3;
        } else {
            v = 8192;
        }
        for(;j<v;j++) {
            linear_to_xlaw[8192 + j] = (i ^ mask);
            if (j > 0)
                linear_to_xlaw[8192 - j] = (i ^ (mask ^ 0x80));
        }
    }
    linear_to_xlaw[0] = linear_to_xlaw[1];
}

107
static av_cold int pcm_encode_init(AVCodecContext *avctx)
glantau's avatar
glantau committed
108 109 110 111
{
    avctx->frame_size = 1;
    switch(avctx->codec->id) {
    case CODEC_ID_PCM_ALAW:
michael's avatar
michael committed
112
        build_xlaw_table(linear_to_alaw, alaw2linear, 0xd5);
glantau's avatar
glantau committed
113 114
        break;
    case CODEC_ID_PCM_MULAW:
michael's avatar
michael committed
115
        build_xlaw_table(linear_to_ulaw, ulaw2linear, 0xff);
glantau's avatar
glantau committed
116 117 118 119
        break;
    default:
        break;
    }
120

121 122
    avctx->bits_per_sample = av_get_bits_per_sample(avctx->codec->id);
    avctx->block_align = avctx->channels * avctx->bits_per_sample/8;
michaelni's avatar
michaelni committed
123 124
    avctx->coded_frame= avcodec_alloc_frame();
    avctx->coded_frame->key_frame= 1;
125

glantau's avatar
glantau committed
126 127 128
    return 0;
}

129
static av_cold int pcm_encode_close(AVCodecContext *avctx)
glantau's avatar
glantau committed
130
{
michaelni's avatar
michaelni committed
131 132
    av_freep(&avctx->coded_frame);

glantau's avatar
glantau committed
133 134 135
    return 0;
}

136 137 138 139 140 141 142
/**
 * Write PCM samples macro
 * @param type Datatype of native machine format
 * @param endian bytestream_put_xxx() suffix
 * @param src Source pointer (variable name)
 * @param dst Destination pointer (variable name)
 * @param n Total number of samples (variable name)
143
 * @param shift Bitshift (bits)
144 145
 * @param offset Sample value offset
 */
146 147
#define ENCODE(type, endian, src, dst, n, shift, offset) \
    samples_##type = (type*)src; \
148
    for(;n>0;n--) { \
149
        register type v = (*samples_##type++ >> shift) + offset; \
150
        bytestream_put_##endian(&dst, v); \
151
    }
152

153
static int pcm_encode_frame(AVCodecContext *avctx,
154
                            unsigned char *frame, int buf_size, void *data)
glantau's avatar
glantau committed
155 156 157 158
{
    int n, sample_size, v;
    short *samples;
    unsigned char *dst;
159 160 161
    uint8_t *srcu8;
    int16_t *samples_int16_t;
    int32_t *samples_int32_t;
162
    int64_t *samples_int64_t;
163 164
    uint16_t *samples_uint16_t;
    uint32_t *samples_uint32_t;
glantau's avatar
glantau committed
165

166
    sample_size = av_get_bits_per_sample(avctx->codec->id)/8;
glantau's avatar
glantau committed
167 168 169 170
    n = buf_size / sample_size;
    samples = data;
    dst = frame;

171 172 173 174 175
    if (avctx->sample_fmt!=avctx->codec->sample_fmts[0]) {
        av_log(avctx, AV_LOG_ERROR, "invalid sample_fmt\n");
        return -1;
    }

glantau's avatar
glantau committed
176
    switch(avctx->codec->id) {
177
    case CODEC_ID_PCM_U32LE:
178
        ENCODE(uint32_t, le32, samples, dst, n, 0, 0x80000000)
179 180
        break;
    case CODEC_ID_PCM_U32BE:
181
        ENCODE(uint32_t, be32, samples, dst, n, 0, 0x80000000)
182 183
        break;
    case CODEC_ID_PCM_S24LE:
184
        ENCODE(int32_t, le24, samples, dst, n, 8, 0)
185 186
        break;
    case CODEC_ID_PCM_S24BE:
187
        ENCODE(int32_t, be24, samples, dst, n, 8, 0)
188 189
        break;
    case CODEC_ID_PCM_U24LE:
190
        ENCODE(uint32_t, le24, samples, dst, n, 8, 0x800000)
191 192
        break;
    case CODEC_ID_PCM_U24BE:
193
        ENCODE(uint32_t, be24, samples, dst, n, 8, 0x800000)
194 195 196
        break;
    case CODEC_ID_PCM_S24DAUD:
        for(;n>0;n--) {
197
            uint32_t tmp = ff_reverse[(*samples >> 8) & 0xff] +
198 199
                           (ff_reverse[*samples & 0xff] << 8);
            tmp <<= 4; // sync flags would go here
ramiro's avatar
ramiro committed
200
            bytestream_put_be24(&dst, tmp);
201 202 203
            samples++;
        }
        break;
glantau's avatar
glantau committed
204
    case CODEC_ID_PCM_U16LE:
205
        ENCODE(uint16_t, le16, samples, dst, n, 0, 0x8000)
glantau's avatar
glantau committed
206 207
        break;
    case CODEC_ID_PCM_U16BE:
208
        ENCODE(uint16_t, be16, samples, dst, n, 0, 0x8000)
glantau's avatar
glantau committed
209 210
        break;
    case CODEC_ID_PCM_S8:
211
        srcu8= data;
glantau's avatar
glantau committed
212
        for(;n>0;n--) {
213 214
            v = *srcu8++;
            *dst++ = v - 128;
glantau's avatar
glantau committed
215 216
        }
        break;
217
#if WORDS_BIGENDIAN
218 219 220
    case CODEC_ID_PCM_F64LE:
        ENCODE(int64_t, le64, samples, dst, n, 0, 0)
        break;
221
    case CODEC_ID_PCM_S32LE:
222
    case CODEC_ID_PCM_F32LE:
223 224 225 226 227
        ENCODE(int32_t, le32, samples, dst, n, 0, 0)
        break;
    case CODEC_ID_PCM_S16LE:
        ENCODE(int16_t, le16, samples, dst, n, 0, 0)
        break;
228
    case CODEC_ID_PCM_F64BE:
229 230 231 232
    case CODEC_ID_PCM_F32BE:
    case CODEC_ID_PCM_S32BE:
    case CODEC_ID_PCM_S16BE:
#else
233 234 235
    case CODEC_ID_PCM_F64BE:
        ENCODE(int64_t, be64, samples, dst, n, 0, 0)
        break;
236 237 238 239 240 241 242
    case CODEC_ID_PCM_F32BE:
    case CODEC_ID_PCM_S32BE:
        ENCODE(int32_t, be32, samples, dst, n, 0, 0)
        break;
    case CODEC_ID_PCM_S16BE:
        ENCODE(int16_t, be16, samples, dst, n, 0, 0)
        break;
243 244
    case CODEC_ID_PCM_F64LE:
    case CODEC_ID_PCM_F32LE:
245 246 247
    case CODEC_ID_PCM_S32LE:
    case CODEC_ID_PCM_S16LE:
#endif /* WORDS_BIGENDIAN */
glantau's avatar
glantau committed
248
    case CODEC_ID_PCM_U8:
249 250
        memcpy(dst, samples, n*sample_size);
        dst += n*sample_size;
glantau's avatar
glantau committed
251
        break;
252 253 254 255 256 257 258 259
    case CODEC_ID_PCM_ZORK:
        for(;n>0;n--) {
            v= *samples++ >> 8;
            if(v<0)   v = -v;
            else      v+= 128;
            *dst++ = v;
        }
        break;
glantau's avatar
glantau committed
260 261 262
    case CODEC_ID_PCM_ALAW:
        for(;n>0;n--) {
            v = *samples++;
ramiro's avatar
ramiro committed
263
            *dst++ = linear_to_alaw[(v + 32768) >> 2];
glantau's avatar
glantau committed
264 265 266 267 268
        }
        break;
    case CODEC_ID_PCM_MULAW:
        for(;n>0;n--) {
            v = *samples++;
ramiro's avatar
ramiro committed
269
            *dst++ = linear_to_ulaw[(v + 32768) >> 2];
glantau's avatar
glantau committed
270 271 272 273 274
        }
        break;
    default:
        return -1;
    }
275
    //avctx->frame_size = (dst - frame) / (sample_size * avctx->channels);
philipjsg's avatar
philipjsg committed
276

glantau's avatar
glantau committed
277 278 279 280 281 282 283
    return dst - frame;
}

typedef struct PCMDecode {
    short table[256];
} PCMDecode;

284
static av_cold int pcm_decode_init(AVCodecContext * avctx)
glantau's avatar
glantau committed
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
{
    PCMDecode *s = avctx->priv_data;
    int i;

    switch(avctx->codec->id) {
    case CODEC_ID_PCM_ALAW:
        for(i=0;i<256;i++)
            s->table[i] = alaw2linear(i);
        break;
    case CODEC_ID_PCM_MULAW:
        for(i=0;i<256;i++)
            s->table[i] = ulaw2linear(i);
        break;
    default:
        break;
    }
301

302
    avctx->sample_fmt = avctx->codec->sample_fmts[0];
glantau's avatar
glantau committed
303 304 305
    return 0;
}

306 307 308 309 310 311 312
/**
 * Read PCM samples macro
 * @param type Datatype of native machine format
 * @param endian bytestream_get_xxx() endian suffix
 * @param src Source pointer (variable name)
 * @param dst Destination pointer (variable name)
 * @param n Total number of samples (variable name)
313
 * @param shift Bitshift (bits)
314 315
 * @param offset Sample value offset
 */
316 317
#define DECODE(type, endian, src, dst, n, shift, offset) \
    dst_##type = (type*)dst; \
318 319
    for(;n>0;n--) { \
        register type v = bytestream_get_##endian(&src); \
320
        *dst_##type++ = (v - offset) << shift; \
321
    } \
322
    dst = (short*)dst_##type;
323

324
static int pcm_decode_frame(AVCodecContext *avctx,
325
                            void *data, int *data_size,
michael's avatar
michael committed
326
                            const uint8_t *buf, int buf_size)
glantau's avatar
glantau committed
327 328
{
    PCMDecode *s = avctx->priv_data;
329
    int sample_size, c, n;
glantau's avatar
glantau committed
330
    short *samples;
331
    const uint8_t *src, *src8, *src2[MAX_CHANNELS];
332 333 334
    uint8_t *dstu8;
    int16_t *dst_int16_t;
    int32_t *dst_int32_t;
335
    int64_t *dst_int64_t;
336 337
    uint16_t *dst_uint16_t;
    uint32_t *dst_uint32_t;
glantau's avatar
glantau committed
338 339 340 341

    samples = data;
    src = buf;

342 343 344 345 346
    if (avctx->sample_fmt!=avctx->codec->sample_fmts[0]) {
        av_log(avctx, AV_LOG_ERROR, "invalid sample_fmt\n");
        return -1;
    }

347 348 349 350
    if(avctx->channels <= 0 || avctx->channels > MAX_CHANNELS){
        av_log(avctx, AV_LOG_ERROR, "PCM channels out of bounds\n");
        return -1;
    }
351

352 353
    sample_size = av_get_bits_per_sample(avctx->codec_id)/8;

354 355 356
    /* av_get_bits_per_sample returns 0 for CODEC_ID_PCM_DVD */
    if (CODEC_ID_PCM_DVD == avctx->codec_id)
        /* 2 samples are interleaved per block in PCM_DVD */
357 358 359
        sample_size = avctx->bits_per_sample * 2 / 8;

    n = avctx->channels * sample_size;
360 361 362 363 364 365

    if(n && buf_size % n){
        av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
        return -1;
    }

michael's avatar
michael committed
366 367
    buf_size= FFMIN(buf_size, *data_size/2);
    *data_size=0;
michael's avatar
michael committed
368

369
    n = buf_size/sample_size;
370

glantau's avatar
glantau committed
371
    switch(avctx->codec->id) {
372
    case CODEC_ID_PCM_U32LE:
373
        DECODE(uint32_t, le32, src, samples, n, 0, 0x80000000)
374 375
        break;
    case CODEC_ID_PCM_U32BE:
376
        DECODE(uint32_t, be32, src, samples, n, 0, 0x80000000)
377 378
        break;
    case CODEC_ID_PCM_S24LE:
379
        DECODE(int32_t, le24, src, samples, n, 8, 0)
380 381
        break;
    case CODEC_ID_PCM_S24BE:
382
        DECODE(int32_t, be24, src, samples, n, 8, 0)
383 384
        break;
    case CODEC_ID_PCM_U24LE:
385
        DECODE(uint32_t, le24, src, samples, n, 8, 0x800000)
386 387
        break;
    case CODEC_ID_PCM_U24BE:
388
        DECODE(uint32_t, be24, src, samples, n, 8, 0x800000)
389 390 391
        break;
    case CODEC_ID_PCM_S24DAUD:
        for(;n>0;n--) {
ramiro's avatar
ramiro committed
392
          uint32_t v = bytestream_get_be24(&src);
393 394 395 396 397
          v >>= 4; // sync flags are here
          *samples++ = ff_reverse[(v >> 8) & 0xff] +
                       (ff_reverse[v & 0xff] << 8);
        }
        break;
398
    case CODEC_ID_PCM_S16LE_PLANAR:
399 400
        n /= avctx->channels;
        for(c=0;c<avctx->channels;c++)
401 402
            src2[c] = &src[c*n*2];
        for(;n>0;n--)
403 404 405 406
            for(c=0;c<avctx->channels;c++)
                *samples++ = bytestream_get_le16(&src2[c]);
        src = src2[avctx->channels-1];
        break;
glantau's avatar
glantau committed
407
    case CODEC_ID_PCM_U16LE:
408
        DECODE(uint16_t, le16, src, samples, n, 0, 0x8000)
glantau's avatar
glantau committed
409 410
        break;
    case CODEC_ID_PCM_U16BE:
411
        DECODE(uint16_t, be16, src, samples, n, 0, 0x8000)
glantau's avatar
glantau committed
412 413
        break;
    case CODEC_ID_PCM_S8:
414
        dstu8= (uint8_t*)samples;
glantau's avatar
glantau committed
415
        for(;n>0;n--) {
416
            *dstu8++ = *src++ + 128;
glantau's avatar
glantau committed
417
        }
418
        samples= (short*)dstu8;
glantau's avatar
glantau committed
419
        break;
420
#if WORDS_BIGENDIAN
421 422 423
    case CODEC_ID_PCM_F64LE:
        DECODE(int64_t, le64, src, samples, n, 0, 0)
        break;
424
    case CODEC_ID_PCM_S32LE:
425
    case CODEC_ID_PCM_F32LE:
426 427 428 429 430
        DECODE(int32_t, le32, src, samples, n, 0, 0)
        break;
    case CODEC_ID_PCM_S16LE:
        DECODE(int16_t, le16, src, samples, n, 0, 0)
        break;
431
    case CODEC_ID_PCM_F64BE:
432 433 434 435
    case CODEC_ID_PCM_F32BE:
    case CODEC_ID_PCM_S32BE:
    case CODEC_ID_PCM_S16BE:
#else
436 437 438
    case CODEC_ID_PCM_F64BE:
        DECODE(int64_t, be64, src, samples, n, 0, 0)
        break;
439 440 441 442 443 444 445
    case CODEC_ID_PCM_F32BE:
    case CODEC_ID_PCM_S32BE:
        DECODE(int32_t, be32, src, samples, n, 0, 0)
        break;
    case CODEC_ID_PCM_S16BE:
        DECODE(int16_t, be16, src, samples, n, 0, 0)
        break;
446 447
    case CODEC_ID_PCM_F64LE:
    case CODEC_ID_PCM_F32LE:
448 449 450
    case CODEC_ID_PCM_S32LE:
    case CODEC_ID_PCM_S16LE:
#endif /* WORDS_BIGENDIAN */
glantau's avatar
glantau committed
451
    case CODEC_ID_PCM_U8:
452 453 454
        memcpy(samples, src, n*sample_size);
        src += n*sample_size;
        samples = (short*)((uint8_t*)data + n*sample_size);
glantau's avatar
glantau committed
455
        break;
456 457 458 459 460 461 462 463
    case CODEC_ID_PCM_ZORK:
        for(;n>0;n--) {
            int x= *src++;
            if(x&128) x-= 128;
            else      x = -x;
            *samples++ = x << 8;
        }
        break;
glantau's avatar
glantau committed
464 465 466
    case CODEC_ID_PCM_ALAW:
    case CODEC_ID_PCM_MULAW:
        for(;n>0;n--) {
ramiro's avatar
ramiro committed
467
            *samples++ = s->table[*src++];
glantau's avatar
glantau committed
468 469
        }
        break;
470
    case CODEC_ID_PCM_DVD:
471 472 473 474
        dst_int32_t = data;
        n /= avctx->channels;
        switch (avctx->bits_per_sample) {
        case 20:
475
            while (n--) {
476 477 478 479 480 481 482
                c = avctx->channels;
                src8 = src + 4*c;
                while (c--) {
                    *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8   &0xf0) << 8);
                    *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++ &0x0f) << 12);
                }
                src = src8;
483
            }
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
            break;
        case 24:
            while (n--) {
                c = avctx->channels;
                src8 = src + 4*c;
                while (c--) {
                    *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++) << 8);
                    *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++) << 8);
                }
                src = src8;
            }
            break;
        default:
            av_log(avctx, AV_LOG_ERROR, "PCM DVD unsupported sample depth\n");
            return -1;
            break;
500
        }
501
        samples = (short *) dst_int32_t;
502
        break;
glantau's avatar
glantau committed
503 504 505
    default:
        return -1;
    }
kabi's avatar
kabi committed
506
    *data_size = (uint8_t *)samples - (uint8_t *)data;
glantau's avatar
glantau committed
507 508 509
    return src - buf;
}

510
#ifdef CONFIG_ENCODERS
511
#define PCM_ENCODER(id,sample_fmt_,name,long_name_) \
glantau's avatar
glantau committed
512 513 514 515 516
AVCodec name ## _encoder = {                    \
    #name,                                      \
    CODEC_TYPE_AUDIO,                           \
    id,                                         \
    0,                                          \
517 518 519
    pcm_encode_init,                            \
    pcm_encode_frame,                           \
    pcm_encode_close,                           \
glantau's avatar
glantau committed
520
    NULL,                                       \
521
    .sample_fmts = (enum SampleFormat[]){sample_fmt_,SAMPLE_FMT_NONE}, \
522
    .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
523 524
};
#else
525
#define PCM_ENCODER(id,sample_fmt_,name,long_name_)
526 527 528
#endif

#ifdef CONFIG_DECODERS
529
#define PCM_DECODER(id,sample_fmt_,name,long_name_)         \
glantau's avatar
glantau committed
530 531 532 533 534
AVCodec name ## _decoder = {                    \
    #name,                                      \
    CODEC_TYPE_AUDIO,                           \
    id,                                         \
    sizeof(PCMDecode),                          \
535
    pcm_decode_init,                            \
glantau's avatar
glantau committed
536 537
    NULL,                                       \
    NULL,                                       \
538
    pcm_decode_frame,                           \
539
    .sample_fmts = (enum SampleFormat[]){sample_fmt_,SAMPLE_FMT_NONE}, \
540
    .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
541 542
};
#else
543
#define PCM_DECODER(id,sample_fmt_,name,long_name_)
544 545
#endif

546
#define PCM_CODEC(id, sample_fmt_, name, long_name_)         \
547
    PCM_ENCODER(id,sample_fmt_,name,long_name_) PCM_DECODER(id,sample_fmt_,name,long_name_)
548

549
/* Note: Do not forget to add new entries to the Makefile as well. */
550
PCM_CODEC  (CODEC_ID_PCM_ALAW,  SAMPLE_FMT_S16, pcm_alaw, "A-law PCM");
551
PCM_CODEC  (CODEC_ID_PCM_DVD,   SAMPLE_FMT_S32, pcm_dvd, "signed 20|24-bit big-endian PCM");
552
PCM_CODEC  (CODEC_ID_PCM_F32BE, SAMPLE_FMT_FLT, pcm_f32be, "32-bit floating point big-endian PCM");
553 554 555
PCM_CODEC  (CODEC_ID_PCM_F32LE, SAMPLE_FMT_FLT, pcm_f32le, "32-bit floating point little-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_F64BE, SAMPLE_FMT_DBL, pcm_f64be, "64-bit floating point big-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_F64LE, SAMPLE_FMT_DBL, pcm_f64le, "64-bit floating point little-endian PCM");
556
PCM_CODEC  (CODEC_ID_PCM_MULAW, SAMPLE_FMT_S16, pcm_mulaw, "mu-law PCM");
557
PCM_CODEC  (CODEC_ID_PCM_S8,    SAMPLE_FMT_U8,  pcm_s8, "signed 8-bit PCM");
558 559
PCM_CODEC  (CODEC_ID_PCM_S16BE, SAMPLE_FMT_S16, pcm_s16be, "signed 16-bit big-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_S16LE, SAMPLE_FMT_S16, pcm_s16le, "signed 16-bit little-endian PCM");
560
PCM_DECODER(CODEC_ID_PCM_S16LE_PLANAR, SAMPLE_FMT_S16, pcm_s16le_planar, "16-bit little-endian planar PCM");
561
PCM_CODEC  (CODEC_ID_PCM_S24BE, SAMPLE_FMT_S32, pcm_s24be, "signed 24-bit big-endian PCM");
562
PCM_CODEC  (CODEC_ID_PCM_S24DAUD, SAMPLE_FMT_S16,  pcm_s24daud, "D-Cinema audio signed 24-bit PCM");
563 564 565 566
PCM_CODEC  (CODEC_ID_PCM_S24LE, SAMPLE_FMT_S32, pcm_s24le, "signed 24-bit little-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_S32BE, SAMPLE_FMT_S32, pcm_s32be, "signed 32-bit big-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_S32LE, SAMPLE_FMT_S32, pcm_s32le, "signed 32-bit little-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_U8,    SAMPLE_FMT_U8,  pcm_u8, "unsigned 8-bit PCM");
567 568
PCM_CODEC  (CODEC_ID_PCM_U16BE, SAMPLE_FMT_S16, pcm_u16be, "unsigned 16-bit big-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_U16LE, SAMPLE_FMT_S16, pcm_u16le, "unsigned 16-bit little-endian PCM");
569 570 571 572
PCM_CODEC  (CODEC_ID_PCM_U24BE, SAMPLE_FMT_S32, pcm_u24be, "unsigned 24-bit big-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_U24LE, SAMPLE_FMT_S32, pcm_u24le, "unsigned 24-bit little-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_U32BE, SAMPLE_FMT_S32, pcm_u32be, "unsigned 32-bit big-endian PCM");
PCM_CODEC  (CODEC_ID_PCM_U32LE, SAMPLE_FMT_S32, pcm_u32le, "unsigned 32-bit little-endian PCM");
573
PCM_CODEC  (CODEC_ID_PCM_ZORK,  SAMPLE_FMT_S16, pcm_zork, "Zork PCM");