]> git.sesse.net Git - ffmpeg/blob - libavcodec/pcm.c
pcm: revert from libavs planar code to durandals.
[ffmpeg] / libavcodec / pcm.c
1 /*
2  * PCM codecs
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg 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.
11  *
12  * FFmpeg 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.
16  *
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
20  */
21
22 /**
23  * @file
24  * PCM codecs
25  */
26
27 #include "libavutil/attributes.h"
28 #include "avcodec.h"
29 #include "bytestream.h"
30 #include "internal.h"
31 #include "mathops.h"
32 #include "pcm_tablegen.h"
33
34 static av_cold int pcm_encode_init(AVCodecContext *avctx)
35 {
36     avctx->frame_size = 0;
37     switch (avctx->codec->id) {
38     case AV_CODEC_ID_PCM_ALAW:
39         pcm_alaw_tableinit();
40         break;
41     case AV_CODEC_ID_PCM_MULAW:
42         pcm_ulaw_tableinit();
43         break;
44     default:
45         break;
46     }
47
48     avctx->bits_per_coded_sample = av_get_bits_per_sample(avctx->codec->id);
49     avctx->block_align           = avctx->channels * avctx->bits_per_coded_sample / 8;
50     avctx->bit_rate              = avctx->block_align * avctx->sample_rate * 8;
51     avctx->coded_frame           = avcodec_alloc_frame();
52     if (!avctx->coded_frame)
53         return AVERROR(ENOMEM);
54
55     return 0;
56 }
57
58 static av_cold int pcm_encode_close(AVCodecContext *avctx)
59 {
60     av_freep(&avctx->coded_frame);
61
62     return 0;
63 }
64
65 /**
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
74  */
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);                             \
80     }
81
82 static int pcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
83                             const AVFrame *frame, int *got_packet_ptr)
84 {
85     int n, sample_size, v, ret;
86     const short *samples;
87     unsigned char *dst;
88     const uint8_t *srcu8;
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;
94
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];
98
99     if ((ret = ff_alloc_packet2(avctx, avpkt, n * sample_size)))
100         return ret;
101     dst = avpkt->data;
102
103     switch (avctx->codec->id) {
104     case AV_CODEC_ID_PCM_U32LE:
105         ENCODE(uint32_t, le32, samples, dst, n, 0, 0x80000000)
106         break;
107     case AV_CODEC_ID_PCM_U32BE:
108         ENCODE(uint32_t, be32, samples, dst, n, 0, 0x80000000)
109         break;
110     case AV_CODEC_ID_PCM_S24LE:
111         ENCODE(int32_t, le24, samples, dst, n, 8, 0)
112         break;
113     case AV_CODEC_ID_PCM_S24BE:
114         ENCODE(int32_t, be24, samples, dst, n, 8, 0)
115         break;
116     case AV_CODEC_ID_PCM_U24LE:
117         ENCODE(uint32_t, le24, samples, dst, n, 8, 0x800000)
118         break;
119     case AV_CODEC_ID_PCM_U24BE:
120         ENCODE(uint32_t, be24, samples, dst, n, 8, 0x800000)
121         break;
122     case AV_CODEC_ID_PCM_S24DAUD:
123         for (; n > 0; n--) {
124             uint32_t tmp = ff_reverse[(*samples >> 8) & 0xff] +
125                            (ff_reverse[*samples & 0xff] << 8);
126             tmp <<= 4; // sync flags would go here
127             bytestream_put_be24(&dst, tmp);
128             samples++;
129         }
130         break;
131     case AV_CODEC_ID_PCM_U16LE:
132         ENCODE(uint16_t, le16, samples, dst, n, 0, 0x8000)
133         break;
134     case AV_CODEC_ID_PCM_U16BE:
135         ENCODE(uint16_t, be16, samples, dst, n, 0, 0x8000)
136         break;
137     case AV_CODEC_ID_PCM_S8:
138         srcu8 = frame->data[0];
139         for (; n > 0; n--) {
140             v      = *srcu8++;
141             *dst++ = v - 128;
142         }
143         break;
144 #if HAVE_BIGENDIAN
145     case AV_CODEC_ID_PCM_F64LE:
146         ENCODE(int64_t, le64, samples, dst, n, 0, 0)
147         break;
148     case AV_CODEC_ID_PCM_S32LE:
149     case AV_CODEC_ID_PCM_F32LE:
150         ENCODE(int32_t, le32, samples, dst, n, 0, 0)
151         break;
152     case AV_CODEC_ID_PCM_S16LE:
153         ENCODE(int16_t, le16, samples, dst, n, 0, 0)
154         break;
155     case AV_CODEC_ID_PCM_F64BE:
156     case AV_CODEC_ID_PCM_F32BE:
157     case AV_CODEC_ID_PCM_S32BE:
158     case AV_CODEC_ID_PCM_S16BE:
159 #else
160     case AV_CODEC_ID_PCM_F64BE:
161         ENCODE(int64_t, be64, samples, dst, n, 0, 0)
162         break;
163     case AV_CODEC_ID_PCM_F32BE:
164     case AV_CODEC_ID_PCM_S32BE:
165         ENCODE(int32_t, be32, samples, dst, n, 0, 0)
166         break;
167     case AV_CODEC_ID_PCM_S16BE:
168         ENCODE(int16_t, be16, samples, dst, n, 0, 0)
169         break;
170     case AV_CODEC_ID_PCM_F64LE:
171     case AV_CODEC_ID_PCM_F32LE:
172     case AV_CODEC_ID_PCM_S32LE:
173     case AV_CODEC_ID_PCM_S16LE:
174 #endif /* HAVE_BIGENDIAN */
175     case AV_CODEC_ID_PCM_U8:
176         memcpy(dst, samples, n * sample_size);
177         break;
178     case AV_CODEC_ID_PCM_ALAW:
179         for (; n > 0; n--) {
180             v      = *samples++;
181             *dst++ = linear_to_alaw[(v + 32768) >> 2];
182         }
183         break;
184     case AV_CODEC_ID_PCM_MULAW:
185         for (; n > 0; n--) {
186             v      = *samples++;
187             *dst++ = linear_to_ulaw[(v + 32768) >> 2];
188         }
189         break;
190     default:
191         return -1;
192     }
193
194     *got_packet_ptr = 1;
195     return 0;
196 }
197
198 typedef struct PCMDecode {
199     AVFrame frame;
200     short   table[256];
201 } PCMDecode;
202
203 static av_cold int pcm_decode_init(AVCodecContext *avctx)
204 {
205     PCMDecode *s = avctx->priv_data;
206     int i;
207
208     if (avctx->channels <= 0) {
209         av_log(avctx, AV_LOG_ERROR, "PCM channels out of bounds\n");
210         return AVERROR(EINVAL);
211     }
212
213     switch (avctx->codec_id) {
214     case AV_CODEC_ID_PCM_ALAW:
215         for (i = 0; i < 256; i++)
216             s->table[i] = alaw2linear(i);
217         break;
218     case AV_CODEC_ID_PCM_MULAW:
219         for (i = 0; i < 256; i++)
220             s->table[i] = ulaw2linear(i);
221         break;
222     default:
223         break;
224     }
225
226     avctx->sample_fmt = avctx->codec->sample_fmts[0];
227
228     if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
229         avctx->bits_per_raw_sample = av_get_bits_per_sample(avctx->codec_id);
230
231     avcodec_get_frame_defaults(&s->frame);
232     avctx->coded_frame = &s->frame;
233
234     return 0;
235 }
236
237 /**
238  * Read PCM samples macro
239  * @param size   Data size of native machine format
240  * @param endian bytestream_get_xxx() endian suffix
241  * @param src    Source pointer (variable name)
242  * @param dst    Destination pointer (variable name)
243  * @param n      Total number of samples (variable name)
244  * @param shift  Bitshift (bits)
245  * @param offset Sample value offset
246  */
247 #define DECODE(size, endian, src, dst, n, shift, offset)                \
248     for (; n > 0; n--) {                                                \
249         uint ## size ## _t v = bytestream_get_ ## endian(&src);         \
250         AV_WN ## size ## A(dst, (v - offset) << shift);                 \
251         dst += size / 8;                                                \
252     }
253
254 #define DECODE_PLANAR(size, endian, src, dst, n, shift, offset)         \
255     n /= avctx->channels;                                               \
256     for (c = 0; c < avctx->channels; c++) {                             \
257         int i;                                                          \
258         dst = s->frame.extended_data[c];                                \
259         for (i = n; i > 0; i--) {                                       \
260             uint ## size ## _t v = bytestream_get_ ## endian(&src);     \
261             AV_WN ## size ## A(dst, (v - offset) << shift);             \
262             dst += size / 8;                                            \
263         }                                                               \
264     }
265
266 static int pcm_decode_frame(AVCodecContext *avctx, void *data,
267                             int *got_frame_ptr, AVPacket *avpkt)
268 {
269     const uint8_t *src = avpkt->data;
270     int buf_size       = avpkt->size;
271     PCMDecode *s       = avctx->priv_data;
272     int sample_size, c, n, ret, samples_per_block;
273     uint8_t *samples;
274     int32_t *dst_int32_t;
275
276     sample_size = av_get_bits_per_sample(avctx->codec_id) / 8;
277
278     /* av_get_bits_per_sample returns 0 for AV_CODEC_ID_PCM_DVD */
279     samples_per_block = 1;
280     if (AV_CODEC_ID_PCM_DVD == avctx->codec_id) {
281         if (avctx->bits_per_coded_sample != 20 &&
282             avctx->bits_per_coded_sample != 24) {
283             av_log(avctx, AV_LOG_ERROR,
284                    "PCM DVD unsupported sample depth %i\n",
285                    avctx->bits_per_coded_sample);
286             return AVERROR(EINVAL);
287         }
288         /* 2 samples are interleaved per block in PCM_DVD */
289         samples_per_block = 2;
290         sample_size       = avctx->bits_per_coded_sample * 2 / 8;
291     } else if (avctx->codec_id == AV_CODEC_ID_PCM_LXF) {
292         /* we process 40-bit blocks per channel for LXF */
293         samples_per_block = 2;
294         sample_size       = 5;
295     }
296
297     if (sample_size == 0) {
298         av_log(avctx, AV_LOG_ERROR, "Invalid sample_size\n");
299         return AVERROR(EINVAL);
300     }
301
302     if (avctx->channels == 0) {
303         av_log(avctx, AV_LOG_ERROR, "Invalid number of channels\n");
304         return AVERROR(EINVAL);
305     }
306
307     n = avctx->channels * sample_size;
308
309     if (n && buf_size % n) {
310         if (buf_size < n) {
311             av_log(avctx, AV_LOG_ERROR,
312                    "Invalid PCM packet, data has size %d but at least a size of %d was expected\n",
313                    buf_size, n);
314             return AVERROR_INVALIDDATA;
315         } else
316             buf_size -= buf_size % n;
317     }
318
319     n = buf_size / sample_size;
320
321     /* get output buffer */
322     s->frame.nb_samples = n * samples_per_block / avctx->channels;
323     if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
324         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
325         return ret;
326     }
327     samples = s->frame.data[0];
328
329     switch (avctx->codec_id) {
330     case AV_CODEC_ID_PCM_U32LE:
331         DECODE(32, le32, src, samples, n, 0, 0x80000000)
332         break;
333     case AV_CODEC_ID_PCM_U32BE:
334         DECODE(32, be32, src, samples, n, 0, 0x80000000)
335         break;
336     case AV_CODEC_ID_PCM_S24LE:
337         DECODE(32, le24, src, samples, n, 8, 0)
338         break;
339     case AV_CODEC_ID_PCM_S24BE:
340         DECODE(32, be24, src, samples, n, 8, 0)
341         break;
342     case AV_CODEC_ID_PCM_U24LE:
343         DECODE(32, le24, src, samples, n, 8, 0x800000)
344         break;
345     case AV_CODEC_ID_PCM_U24BE:
346         DECODE(32, be24, src, samples, n, 8, 0x800000)
347         break;
348     case AV_CODEC_ID_PCM_S24DAUD:
349         for (; n > 0; n--) {
350             uint32_t v = bytestream_get_be24(&src);
351             v >>= 4; // sync flags are here
352             AV_WN16A(samples, ff_reverse[(v >> 8) & 0xff] +
353                              (ff_reverse[v        & 0xff] << 8));
354             samples += 2;
355         }
356         break;
357     case AV_CODEC_ID_PCM_S16BE_PLANAR:
358         DECODE_PLANAR(16, be16, src, samples, n, 0, 0);
359         break;
360     case AV_CODEC_ID_PCM_S16LE_PLANAR:
361         DECODE_PLANAR(16, le16, src, samples, n, 0, 0);
362         break;
363     case AV_CODEC_ID_PCM_S24LE_PLANAR:
364         DECODE_PLANAR(32, le24, src, samples, n, 8, 0);
365         break;
366     case AV_CODEC_ID_PCM_S32LE_PLANAR:
367         DECODE_PLANAR(32, le32, src, samples, n, 0, 0);
368         break;
369     case AV_CODEC_ID_PCM_U16LE:
370         DECODE(16, le16, src, samples, n, 0, 0x8000)
371         break;
372     case AV_CODEC_ID_PCM_U16BE:
373         DECODE(16, be16, src, samples, n, 0, 0x8000)
374         break;
375     case AV_CODEC_ID_PCM_S8:
376         for (; n > 0; n--)
377             *samples++ = *src++ + 128;
378         break;
379     case AV_CODEC_ID_PCM_S8_PLANAR:
380         n /= avctx->channels;
381         for (c = 0; c < avctx->channels; c++) {
382             int i;
383             samples = s->frame.extended_data[c];
384             for (i = n; i > 0; i--)
385                 *samples++ = *src++ + 128;
386         }
387         break;
388 #if HAVE_BIGENDIAN
389     case AV_CODEC_ID_PCM_F64LE:
390         DECODE(64, le64, src, samples, n, 0, 0)
391         break;
392     case AV_CODEC_ID_PCM_S32LE:
393     case AV_CODEC_ID_PCM_F32LE:
394         DECODE(32, le32, src, samples, n, 0, 0)
395         break;
396     case AV_CODEC_ID_PCM_S16LE:
397         DECODE(16, le16, src, samples, n, 0, 0)
398         break;
399     case AV_CODEC_ID_PCM_F64BE:
400     case AV_CODEC_ID_PCM_F32BE:
401     case AV_CODEC_ID_PCM_S32BE:
402     case AV_CODEC_ID_PCM_S16BE:
403 #else
404     case AV_CODEC_ID_PCM_F64BE:
405         DECODE(64, be64, src, samples, n, 0, 0)
406         break;
407     case AV_CODEC_ID_PCM_F32BE:
408     case AV_CODEC_ID_PCM_S32BE:
409         DECODE(32, be32, src, samples, n, 0, 0)
410         break;
411     case AV_CODEC_ID_PCM_S16BE:
412         DECODE(16, be16, src, samples, n, 0, 0)
413         break;
414     case AV_CODEC_ID_PCM_F64LE:
415     case AV_CODEC_ID_PCM_F32LE:
416     case AV_CODEC_ID_PCM_S32LE:
417     case AV_CODEC_ID_PCM_S16LE:
418 #endif /* HAVE_BIGENDIAN */
419     case AV_CODEC_ID_PCM_U8:
420         memcpy(samples, src, n * sample_size);
421         break;
422     case AV_CODEC_ID_PCM_ZORK:
423         for (; n > 0; n--) {
424             int v = *src++;
425             if (v < 128)
426                 v = 128 - v;
427             *samples++ = v;
428         }
429         break;
430     case AV_CODEC_ID_PCM_ALAW:
431     case AV_CODEC_ID_PCM_MULAW:
432         for (; n > 0; n--) {
433             AV_WN16A(samples, s->table[*src++]);
434             samples += 2;
435         }
436         break;
437     case AV_CODEC_ID_PCM_DVD:
438     {
439         const uint8_t *src8;
440         dst_int32_t = (int32_t *)s->frame.data[0];
441         n /= avctx->channels;
442         switch (avctx->bits_per_coded_sample) {
443         case 20:
444             while (n--) {
445                 c    = avctx->channels;
446                 src8 = src + 4 * c;
447                 while (c--) {
448                     *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8   & 0xf0) <<  8);
449                     *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++ & 0x0f) << 12);
450                 }
451                 src = src8;
452             }
453             break;
454         case 24:
455             while (n--) {
456                 c    = avctx->channels;
457                 src8 = src + 4 * c;
458                 while (c--) {
459                     *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++) << 8);
460                     *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++) << 8);
461                 }
462                 src = src8;
463             }
464             break;
465         }
466         break;
467     }
468     case AV_CODEC_ID_PCM_LXF:
469     {
470         int i;
471         n /= avctx->channels;
472         for (c = 0; c < avctx->channels; c++) {
473             dst_int32_t = (int32_t *)s->frame.extended_data[c];
474             for (i = 0; i < n; i++) {
475                 // extract low 20 bits and expand to 32 bits
476                 *dst_int32_t++ =  (src[2]         << 28) |
477                                   (src[1]         << 20) |
478                                   (src[0]         << 12) |
479                                  ((src[2] & 0x0F) <<  8) |
480                                    src[1];
481                 // extract high 20 bits and expand to 32 bits
482                 *dst_int32_t++ =  (src[4]         << 24) |
483                                   (src[3]         << 16) |
484                                  ((src[2] & 0xF0) <<  8) |
485                                   (src[4]         <<  4) |
486                                   (src[3]         >>  4);
487                 src += 5;
488             }
489         }
490         break;
491     }
492     default:
493         return -1;
494     }
495
496     *got_frame_ptr   = 1;
497     *(AVFrame *)data = s->frame;
498
499     return buf_size;
500 }
501
502 #define PCM_ENCODER_0(id_, sample_fmt_, name_, long_name_)
503 #define PCM_ENCODER_1(id_, sample_fmt_, name_, long_name_)                  \
504 AVCodec ff_ ## name_ ## _encoder = {                                        \
505     .name         = #name_,                                                 \
506     .type         = AVMEDIA_TYPE_AUDIO,                                     \
507     .id           = AV_CODEC_ID_ ## id_,                                    \
508     .init         = pcm_encode_init,                                        \
509     .encode2      = pcm_encode_frame,                                       \
510     .close        = pcm_encode_close,                                       \
511     .capabilities = CODEC_CAP_VARIABLE_FRAME_SIZE,                          \
512     .sample_fmts  = (const enum AVSampleFormat[]){ sample_fmt_,             \
513                                                    AV_SAMPLE_FMT_NONE },    \
514     .long_name    = NULL_IF_CONFIG_SMALL(long_name_),                       \
515 }
516
517 #define PCM_ENCODER_2(cf, id, sample_fmt, name, long_name)                  \
518     PCM_ENCODER_ ## cf(id, sample_fmt, name, long_name)
519 #define PCM_ENCODER_3(cf, id, sample_fmt, name, long_name)                  \
520     PCM_ENCODER_2(cf, id, sample_fmt, name, long_name)
521 #define PCM_ENCODER(id, sample_fmt, name, long_name)                        \
522     PCM_ENCODER_3(CONFIG_ ## id ## _ENCODER, id, sample_fmt, name, long_name)
523
524 #define PCM_DECODER_0(id, sample_fmt, name, long_name)
525 #define PCM_DECODER_1(id_, sample_fmt_, name_, long_name_)                  \
526 AVCodec ff_ ## name_ ## _decoder = {                                        \
527     .name           = #name_,                                               \
528     .type           = AVMEDIA_TYPE_AUDIO,                                   \
529     .id             = AV_CODEC_ID_ ## id_,                                  \
530     .priv_data_size = sizeof(PCMDecode),                                    \
531     .init           = pcm_decode_init,                                      \
532     .decode         = pcm_decode_frame,                                     \
533     .capabilities   = CODEC_CAP_DR1,                                        \
534     .sample_fmts    = (const enum AVSampleFormat[]){ sample_fmt_,           \
535                                                      AV_SAMPLE_FMT_NONE },  \
536     .long_name      = NULL_IF_CONFIG_SMALL(long_name_),                     \
537 }
538
539 #define PCM_DECODER_2(cf, id, sample_fmt, name, long_name)                  \
540     PCM_DECODER_ ## cf(id, sample_fmt, name, long_name)
541 #define PCM_DECODER_3(cf, id, sample_fmt, name, long_name)                  \
542     PCM_DECODER_2(cf, id, sample_fmt, name, long_name)
543 #define PCM_DECODER(id, sample_fmt, name, long_name)                        \
544     PCM_DECODER_3(CONFIG_ ## id ## _DECODER, id, sample_fmt, name, long_name)
545
546 #define PCM_CODEC(id, sample_fmt_, name, long_name_)                    \
547     PCM_ENCODER(id, sample_fmt_, name, long_name_);                     \
548     PCM_DECODER(id, sample_fmt_, name, long_name_)
549
550 /* Note: Do not forget to add new entries to the Makefile as well. */
551 PCM_CODEC  (PCM_ALAW,         AV_SAMPLE_FMT_S16, pcm_alaw,         "PCM A-law / G.711 A-law");
552 PCM_DECODER(PCM_DVD,          AV_SAMPLE_FMT_S32, pcm_dvd,          "PCM signed 20|24-bit big-endian");
553 PCM_CODEC  (PCM_F32BE,        AV_SAMPLE_FMT_FLT, pcm_f32be,        "PCM 32-bit floating point big-endian");
554 PCM_CODEC  (PCM_F32LE,        AV_SAMPLE_FMT_FLT, pcm_f32le,        "PCM 32-bit floating point little-endian");
555 PCM_CODEC  (PCM_F64BE,        AV_SAMPLE_FMT_DBL, pcm_f64be,        "PCM 64-bit floating point big-endian");
556 PCM_CODEC  (PCM_F64LE,        AV_SAMPLE_FMT_DBL, pcm_f64le,        "PCM 64-bit floating point little-endian");
557 PCM_DECODER(PCM_LXF,          AV_SAMPLE_FMT_S32P,pcm_lxf,          "PCM signed 20-bit little-endian planar");
558 PCM_CODEC  (PCM_MULAW,        AV_SAMPLE_FMT_S16, pcm_mulaw,        "PCM mu-law / G.711 mu-law");
559 PCM_CODEC  (PCM_S8,           AV_SAMPLE_FMT_U8,  pcm_s8,           "PCM signed 8-bit");
560 PCM_DECODER(PCM_S8_PLANAR,    AV_SAMPLE_FMT_U8P, pcm_s8_planar,    "PCM signed 8-bit planar");
561 PCM_CODEC  (PCM_S16BE,        AV_SAMPLE_FMT_S16, pcm_s16be,        "PCM signed 16-bit big-endian");
562 PCM_DECODER(PCM_S16BE_PLANAR, AV_SAMPLE_FMT_S16P,pcm_s16be_planar, "PCM signed 16-bit big-endian planar");
563 PCM_CODEC  (PCM_S16LE,        AV_SAMPLE_FMT_S16, pcm_s16le,        "PCM signed 16-bit little-endian");
564 PCM_DECODER(PCM_S16LE_PLANAR, AV_SAMPLE_FMT_S16P,pcm_s16le_planar, "PCM signed 16-bit little-endian planar");
565 PCM_CODEC  (PCM_S24BE,        AV_SAMPLE_FMT_S32, pcm_s24be,        "PCM signed 24-bit big-endian");
566 PCM_CODEC  (PCM_S24DAUD,      AV_SAMPLE_FMT_S16, pcm_s24daud,      "PCM D-Cinema audio signed 24-bit");
567 PCM_CODEC  (PCM_S24LE,        AV_SAMPLE_FMT_S32, pcm_s24le,        "PCM signed 24-bit little-endian");
568 PCM_DECODER(PCM_S24LE_PLANAR, AV_SAMPLE_FMT_S32P,pcm_s24le_planar, "PCM signed 24-bit little-endian planar");
569 PCM_CODEC  (PCM_S32BE,        AV_SAMPLE_FMT_S32, pcm_s32be,        "PCM signed 32-bit big-endian");
570 PCM_CODEC  (PCM_S32LE,        AV_SAMPLE_FMT_S32, pcm_s32le,        "PCM signed 32-bit little-endian");
571 PCM_DECODER(PCM_S32LE_PLANAR, AV_SAMPLE_FMT_S32P,pcm_s32le_planar, "PCM signed 32-bit little-endian planar");
572 PCM_CODEC  (PCM_U8,           AV_SAMPLE_FMT_U8,  pcm_u8,           "PCM unsigned 8-bit");
573 PCM_CODEC  (PCM_U16BE,        AV_SAMPLE_FMT_S16, pcm_u16be,        "PCM unsigned 16-bit big-endian");
574 PCM_CODEC  (PCM_U16LE,        AV_SAMPLE_FMT_S16, pcm_u16le,        "PCM unsigned 16-bit little-endian");
575 PCM_CODEC  (PCM_U24BE,        AV_SAMPLE_FMT_S32, pcm_u24be,        "PCM unsigned 24-bit big-endian");
576 PCM_CODEC  (PCM_U24LE,        AV_SAMPLE_FMT_S32, pcm_u24le,        "PCM unsigned 24-bit little-endian");
577 PCM_CODEC  (PCM_U32BE,        AV_SAMPLE_FMT_S32, pcm_u32be,        "PCM unsigned 32-bit big-endian");
578 PCM_CODEC  (PCM_U32LE,        AV_SAMPLE_FMT_S32, pcm_u32le,        "PCM unsigned 32-bit little-endian");
579 PCM_DECODER(PCM_ZORK,         AV_SAMPLE_FMT_U8,  pcm_zork,         "PCM Zork");
580