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