]> git.sesse.net Git - ffmpeg/blob - libavcodec/pcm-mpeg.c
bmpdec: proper check for alpha
[ffmpeg] / libavcodec / pcm-mpeg.c
1 /*
2  * LPCM codecs for PCM formats found in MPEG streams
3  * Copyright (c) 2009 Christian Schmidt
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 for encodings found in MPEG streams (DVD/Blu-ray)
25  */
26
27 #include "libavutil/audioconvert.h"
28 #include "avcodec.h"
29 #include "bytestream.h"
30
31 /*
32  * Channel Mapping according to
33  * Blu-ray Disc Read-Only Format Version 1
34  * Part 3: Audio Visual Basic Specifications
35  * mono     M1    X
36  * stereo   L     R
37  * 3/0      L     R    C    X
38  * 2/1      L     R    S    X
39  * 3/1      L     R    C    S
40  * 2/2      L     R    LS   RS
41  * 3/2      L     R    C    LS    RS    X
42  * 3/2+lfe  L     R    C    LS    RS    lfe
43  * 3/4      L     R    C    LS    Rls   Rrs  RS   X
44  * 3/4+lfe  L     R    C    LS    Rls   Rrs  RS   lfe
45  */
46
47 /**
48  * Parse the header of a LPCM frame read from a MPEG-TS stream
49  * @param avctx the codec context
50  * @param header pointer to the first four bytes of the data packet
51  */
52 static int pcm_bluray_parse_header(AVCodecContext *avctx,
53                                    const uint8_t *header)
54 {
55     static const uint8_t bits_per_samples[4] = { 0, 16, 20, 24 };
56     static const uint32_t channel_layouts[16] = {
57         0, AV_CH_LAYOUT_MONO, 0, AV_CH_LAYOUT_STEREO, AV_CH_LAYOUT_SURROUND,
58         AV_CH_LAYOUT_2_1, AV_CH_LAYOUT_4POINT0, AV_CH_LAYOUT_2_2, AV_CH_LAYOUT_5POINT0,
59         AV_CH_LAYOUT_5POINT1, AV_CH_LAYOUT_7POINT0, AV_CH_LAYOUT_7POINT1, 0, 0, 0, 0
60     };
61     static const uint8_t channels[16] = {
62         0, 1, 0, 2, 3, 3, 4, 4, 5, 6, 7, 8, 0, 0, 0, 0
63     };
64     uint8_t channel_layout = header[2] >> 4;
65
66     if (avctx->debug & FF_DEBUG_PICT_INFO)
67         av_dlog(avctx, "pcm_bluray_parse_header: header = %02x%02x%02x%02x\n",
68                 header[0], header[1], header[2], header[3]);
69
70     /* get the sample depth and derive the sample format from it */
71     avctx->bits_per_coded_sample = bits_per_samples[header[3] >> 6];
72     if (!avctx->bits_per_coded_sample) {
73         av_log(avctx, AV_LOG_ERROR, "unsupported sample depth (0)\n");
74         return -1;
75     }
76     avctx->sample_fmt = avctx->bits_per_coded_sample == 16 ? AV_SAMPLE_FMT_S16 :
77                                                              AV_SAMPLE_FMT_S32;
78     if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
79         avctx->bits_per_raw_sample = avctx->bits_per_coded_sample;
80
81     /* get the sample rate. Not all values are known or exist. */
82     switch (header[2] & 0x0f) {
83     case 1:
84         avctx->sample_rate = 48000;
85         break;
86     case 4:
87         avctx->sample_rate = 96000;
88         break;
89     case 5:
90         avctx->sample_rate = 192000;
91         break;
92     default:
93         avctx->sample_rate = 0;
94         av_log(avctx, AV_LOG_ERROR, "unsupported sample rate (%d)\n",
95                header[2] & 0x0f);
96         return -1;
97     }
98
99     /*
100      * get the channel number (and mapping). Not all values are known or exist.
101      * It must be noted that the number of channels in the MPEG stream can
102      * differ from the actual meaningful number, e.g. mono audio still has two
103      * channels, one being empty.
104      */
105     avctx->channel_layout  = channel_layouts[channel_layout];
106     avctx->channels        =        channels[channel_layout];
107     if (!avctx->channels) {
108         av_log(avctx, AV_LOG_ERROR, "unsupported channel configuration (%d)\n",
109                channel_layout);
110         return -1;
111     }
112
113     avctx->bit_rate = avctx->channels * avctx->sample_rate *
114                       avctx->bits_per_coded_sample;
115
116     if (avctx->debug & FF_DEBUG_PICT_INFO)
117         av_dlog(avctx,
118                 "pcm_bluray_parse_header: %d channels, %d bits per sample, %d kHz, %d kbit\n",
119                 avctx->channels, avctx->bits_per_coded_sample,
120                 avctx->sample_rate, avctx->bit_rate);
121     return 0;
122 }
123
124 typedef struct PCMBRDecode {
125     AVFrame frame;
126 } PCMBRDecode;
127
128 static av_cold int pcm_bluray_decode_init(AVCodecContext * avctx)
129 {
130     PCMBRDecode *s = avctx->priv_data;
131
132     avcodec_get_frame_defaults(&s->frame);
133     avctx->coded_frame = &s->frame;
134
135     return 0;
136 }
137
138 static int pcm_bluray_decode_frame(AVCodecContext *avctx, void *data,
139                                    int *got_frame_ptr, AVPacket *avpkt)
140 {
141     const uint8_t *src = avpkt->data;
142     int buf_size = avpkt->size;
143     PCMBRDecode *s = avctx->priv_data;
144     int num_source_channels, channel, retval;
145     int sample_size, samples;
146     int16_t *dst16;
147     int32_t *dst32;
148
149     if (buf_size < 4) {
150         av_log(avctx, AV_LOG_ERROR, "PCM packet too small\n");
151         return -1;
152     }
153
154     if (pcm_bluray_parse_header(avctx, src))
155         return -1;
156     src += 4;
157     buf_size -= 4;
158
159     /* There's always an even number of channels in the source */
160     num_source_channels = FFALIGN(avctx->channels, 2);
161     sample_size = (num_source_channels * avctx->bits_per_coded_sample) >> 3;
162     samples = buf_size / sample_size;
163
164     /* get output buffer */
165     s->frame.nb_samples = samples;
166     if ((retval = avctx->get_buffer(avctx, &s->frame)) < 0) {
167         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
168         return retval;
169     }
170     dst16 = (int16_t *)s->frame.data[0];
171     dst32 = (int32_t *)s->frame.data[0];
172
173     if (samples) {
174         switch (avctx->channel_layout) {
175             /* cases with same number of source and coded channels */
176         case AV_CH_LAYOUT_STEREO:
177         case AV_CH_LAYOUT_4POINT0:
178         case AV_CH_LAYOUT_2_2:
179             samples *= num_source_channels;
180             if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
181 #if HAVE_BIGENDIAN
182                 memcpy(dst16, src, buf_size);
183 #else
184                 do {
185                     *dst16++ = bytestream_get_be16(&src);
186                 } while (--samples);
187 #endif
188             } else {
189                 do {
190                     *dst32++ = bytestream_get_be24(&src) << 8;
191                 } while (--samples);
192             }
193             break;
194         /* cases where number of source channels = coded channels + 1 */
195         case AV_CH_LAYOUT_MONO:
196         case AV_CH_LAYOUT_SURROUND:
197         case AV_CH_LAYOUT_2_1:
198         case AV_CH_LAYOUT_5POINT0:
199             if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
200                 do {
201 #if HAVE_BIGENDIAN
202                     memcpy(dst16, src, avctx->channels * 2);
203                     dst16 += avctx->channels;
204                     src += sample_size;
205 #else
206                     channel = avctx->channels;
207                     do {
208                         *dst16++ = bytestream_get_be16(&src);
209                     } while (--channel);
210                     src += 2;
211 #endif
212                 } while (--samples);
213             } else {
214                 do {
215                     channel = avctx->channels;
216                     do {
217                         *dst32++ = bytestream_get_be24(&src) << 8;
218                     } while (--channel);
219                     src += 3;
220                 } while (--samples);
221             }
222             break;
223             /* remapping: L, R, C, LBack, RBack, LF */
224         case AV_CH_LAYOUT_5POINT1:
225             if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
226                 do {
227                     dst16[0] = bytestream_get_be16(&src);
228                     dst16[1] = bytestream_get_be16(&src);
229                     dst16[2] = bytestream_get_be16(&src);
230                     dst16[4] = bytestream_get_be16(&src);
231                     dst16[5] = bytestream_get_be16(&src);
232                     dst16[3] = bytestream_get_be16(&src);
233                     dst16 += 6;
234                 } while (--samples);
235             } else {
236                 do {
237                     dst32[0] = bytestream_get_be24(&src) << 8;
238                     dst32[1] = bytestream_get_be24(&src) << 8;
239                     dst32[2] = bytestream_get_be24(&src) << 8;
240                     dst32[4] = bytestream_get_be24(&src) << 8;
241                     dst32[5] = bytestream_get_be24(&src) << 8;
242                     dst32[3] = bytestream_get_be24(&src) << 8;
243                     dst32 += 6;
244                 } while (--samples);
245             }
246             break;
247             /* remapping: L, R, C, LSide, LBack, RBack, RSide, <unused> */
248         case AV_CH_LAYOUT_7POINT0:
249             if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
250                 do {
251                     dst16[0] = bytestream_get_be16(&src);
252                     dst16[1] = bytestream_get_be16(&src);
253                     dst16[2] = bytestream_get_be16(&src);
254                     dst16[5] = bytestream_get_be16(&src);
255                     dst16[3] = bytestream_get_be16(&src);
256                     dst16[4] = bytestream_get_be16(&src);
257                     dst16[6] = bytestream_get_be16(&src);
258                     dst16 += 7;
259                     src += 2;
260                 } while (--samples);
261             } else {
262                 do {
263                     dst32[0] = bytestream_get_be24(&src) << 8;
264                     dst32[1] = bytestream_get_be24(&src) << 8;
265                     dst32[2] = bytestream_get_be24(&src) << 8;
266                     dst32[5] = bytestream_get_be24(&src) << 8;
267                     dst32[3] = bytestream_get_be24(&src) << 8;
268                     dst32[4] = bytestream_get_be24(&src) << 8;
269                     dst32[6] = bytestream_get_be24(&src) << 8;
270                     dst32 += 7;
271                     src += 3;
272                 } while (--samples);
273             }
274             break;
275             /* remapping: L, R, C, LSide, LBack, RBack, RSide, LF */
276         case AV_CH_LAYOUT_7POINT1:
277             if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
278                 do {
279                     dst16[0] = bytestream_get_be16(&src);
280                     dst16[1] = bytestream_get_be16(&src);
281                     dst16[2] = bytestream_get_be16(&src);
282                     dst16[6] = bytestream_get_be16(&src);
283                     dst16[4] = bytestream_get_be16(&src);
284                     dst16[5] = bytestream_get_be16(&src);
285                     dst16[7] = bytestream_get_be16(&src);
286                     dst16[3] = bytestream_get_be16(&src);
287                     dst16 += 8;
288                 } while (--samples);
289             } else {
290                 do {
291                     dst32[0] = bytestream_get_be24(&src) << 8;
292                     dst32[1] = bytestream_get_be24(&src) << 8;
293                     dst32[2] = bytestream_get_be24(&src) << 8;
294                     dst32[6] = bytestream_get_be24(&src) << 8;
295                     dst32[4] = bytestream_get_be24(&src) << 8;
296                     dst32[5] = bytestream_get_be24(&src) << 8;
297                     dst32[7] = bytestream_get_be24(&src) << 8;
298                     dst32[3] = bytestream_get_be24(&src) << 8;
299                     dst32 += 8;
300                 } while (--samples);
301             }
302             break;
303         }
304     }
305
306     *got_frame_ptr   = 1;
307     *(AVFrame *)data = s->frame;
308
309     retval = src - avpkt->data;
310     if (avctx->debug & FF_DEBUG_BITSTREAM)
311         av_dlog(avctx, "pcm_bluray_decode_frame: decoded %d -> %d bytes\n",
312                 retval, buf_size);
313     return retval;
314 }
315
316 AVCodec ff_pcm_bluray_decoder = {
317     .name           = "pcm_bluray",
318     .type           = AVMEDIA_TYPE_AUDIO,
319     .id             = CODEC_ID_PCM_BLURAY,
320     .priv_data_size = sizeof(PCMBRDecode),
321     .init           = pcm_bluray_decode_init,
322     .decode         = pcm_bluray_decode_frame,
323     .capabilities   = CODEC_CAP_DR1,
324     .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32,
325                                          AV_SAMPLE_FMT_NONE},
326     .long_name = NULL_IF_CONFIG_SMALL("PCM signed 16|20|24-bit big-endian for Blu-ray media"),
327 };