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

/**
23
 * @file
24 25 26
 * PCM codecs for encodings found in MPEG streams (DVD/Blu-ray)
 */

27
#include "libavutil/audioconvert.h"
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
#include "avcodec.h"
#include "bytestream.h"

/*
 * Channel Mapping according to
 * Blu-ray Disc Read-Only Format Version 1
 * Part 3: Audio Visual Basic Specifications
 * mono     M1    X
 * stereo   L     R
 * 3/0      L     R    C    X
 * 2/1      L     R    S    X
 * 3/1      L     R    C    S
 * 2/2      L     R    LS   RS
 * 3/2      L     R    C    LS    RS    X
 * 3/2+lfe  L     R    C    LS    RS    lfe
 * 3/4      L     R    C    LS    Rls   Rrs  RS   X
 * 3/4+lfe  L     R    C    LS    Rls   Rrs  RS   lfe
 */

/**
 * Parse the header of a LPCM frame read from a MPEG-TS stream
 * @param avctx the codec context
 * @param header pointer to the first four bytes of the data packet
 */
static int pcm_bluray_parse_header(AVCodecContext *avctx,
                                   const uint8_t *header)
{
    static const uint8_t bits_per_samples[4] = { 0, 16, 20, 24 };
    static const uint32_t channel_layouts[16] = {
57 58 59
        0, AV_CH_LAYOUT_MONO, 0, AV_CH_LAYOUT_STEREO, AV_CH_LAYOUT_SURROUND,
        AV_CH_LAYOUT_2_1, AV_CH_LAYOUT_4POINT0, AV_CH_LAYOUT_2_2, AV_CH_LAYOUT_5POINT0,
        AV_CH_LAYOUT_5POINT1, AV_CH_LAYOUT_7POINT0, AV_CH_LAYOUT_7POINT1, 0, 0, 0, 0
60 61 62 63 64 65 66
    };
    static const uint8_t channels[16] = {
        0, 1, 0, 2, 3, 3, 4, 4, 5, 6, 7, 8, 0, 0, 0, 0
    };
    uint8_t channel_layout = header[2] >> 4;

    if (avctx->debug & FF_DEBUG_PICT_INFO)
67
        av_dlog(avctx, "pcm_bluray_parse_header: header = %02x%02x%02x%02x\n",
68 69 70 71
                header[0], header[1], header[2], header[3]);

    /* get the sample depth and derive the sample format from it */
    avctx->bits_per_coded_sample = bits_per_samples[header[3] >> 6];
72
    if (!(avctx->bits_per_coded_sample == 16 || avctx->bits_per_coded_sample == 24)) {
73
        av_log(avctx, AV_LOG_ERROR, "unsupported sample depth (%d)\n", avctx->bits_per_coded_sample);
74 75
        return -1;
    }
76 77
    avctx->sample_fmt = avctx->bits_per_coded_sample == 16 ? AV_SAMPLE_FMT_S16 :
                                                             AV_SAMPLE_FMT_S32;
78 79
    if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
        avctx->bits_per_raw_sample = avctx->bits_per_coded_sample;
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116

    /* get the sample rate. Not all values are known or exist. */
    switch (header[2] & 0x0f) {
    case 1:
        avctx->sample_rate = 48000;
        break;
    case 4:
        avctx->sample_rate = 96000;
        break;
    case 5:
        avctx->sample_rate = 192000;
        break;
    default:
        avctx->sample_rate = 0;
        av_log(avctx, AV_LOG_ERROR, "unsupported sample rate (%d)\n",
               header[2] & 0x0f);
        return -1;
    }

    /*
     * get the channel number (and mapping). Not all values are known or exist.
     * It must be noted that the number of channels in the MPEG stream can
     * differ from the actual meaningful number, e.g. mono audio still has two
     * channels, one being empty.
     */
    avctx->channel_layout  = channel_layouts[channel_layout];
    avctx->channels        =        channels[channel_layout];
    if (!avctx->channels) {
        av_log(avctx, AV_LOG_ERROR, "unsupported channel configuration (%d)\n",
               channel_layout);
        return -1;
    }

    avctx->bit_rate = avctx->channels * avctx->sample_rate *
                      avctx->bits_per_coded_sample;

    if (avctx->debug & FF_DEBUG_PICT_INFO)
117
        av_dlog(avctx,
118 119 120 121 122 123
                "pcm_bluray_parse_header: %d channels, %d bits per sample, %d kHz, %d kbit\n",
                avctx->channels, avctx->bits_per_coded_sample,
                avctx->sample_rate, avctx->bit_rate);
    return 0;
}

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
typedef struct PCMBRDecode {
    AVFrame frame;
} PCMBRDecode;

static av_cold int pcm_bluray_decode_init(AVCodecContext * avctx)
{
    PCMBRDecode *s = avctx->priv_data;

    avcodec_get_frame_defaults(&s->frame);
    avctx->coded_frame = &s->frame;

    return 0;
}

static int pcm_bluray_decode_frame(AVCodecContext *avctx, void *data,
                                   int *got_frame_ptr, AVPacket *avpkt)
140 141 142
{
    const uint8_t *src = avpkt->data;
    int buf_size = avpkt->size;
143
    PCMBRDecode *s = avctx->priv_data;
144
    GetByteContext gb;
145
    int num_source_channels, channel, retval;
146 147 148
    int sample_size, samples;
    int16_t *dst16;
    int32_t *dst32;
149 150 151 152 153 154 155 156 157 158 159

    if (buf_size < 4) {
        av_log(avctx, AV_LOG_ERROR, "PCM packet too small\n");
        return -1;
    }

    if (pcm_bluray_parse_header(avctx, src))
        return -1;
    src += 4;
    buf_size -= 4;

160 161
    bytestream2_init(&gb, src, buf_size);

162 163
    /* There's always an even number of channels in the source */
    num_source_channels = FFALIGN(avctx->channels, 2);
164
    sample_size = (num_source_channels * (avctx->sample_fmt == AV_SAMPLE_FMT_S16 ? 16 : 24)) >> 3;
165 166
    samples = buf_size / sample_size;

167 168 169 170 171
    /* get output buffer */
    s->frame.nb_samples = samples;
    if ((retval = avctx->get_buffer(avctx, &s->frame)) < 0) {
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
        return retval;
172
    }
173 174
    dst16 = (int16_t *)s->frame.data[0];
    dst32 = (int32_t *)s->frame.data[0];
175 176 177 178

    if (samples) {
        switch (avctx->channel_layout) {
            /* cases with same number of source and coded channels */
179 180 181
        case AV_CH_LAYOUT_STEREO:
        case AV_CH_LAYOUT_4POINT0:
        case AV_CH_LAYOUT_2_2:
182
            samples *= num_source_channels;
183
            if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
184
#if HAVE_BIGENDIAN
185
                bytestream2_get_buffer(&gb, dst16, buf_size);
186 187
#else
                do {
188
                    *dst16++ = bytestream2_get_be16u(&gb);
189 190 191 192
                } while (--samples);
#endif
            } else {
                do {
193
                    *dst32++ = bytestream2_get_be24u(&gb) << 8;
194 195 196 197
                } while (--samples);
            }
            break;
        /* cases where number of source channels = coded channels + 1 */
198 199 200 201
        case AV_CH_LAYOUT_MONO:
        case AV_CH_LAYOUT_SURROUND:
        case AV_CH_LAYOUT_2_1:
        case AV_CH_LAYOUT_5POINT0:
202
            if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
203 204
                do {
#if HAVE_BIGENDIAN
205
                    bytestream2_get_buffer(&gb, dst16, avctx->channels * 2);
206 207 208 209
                    dst16 += avctx->channels;
#else
                    channel = avctx->channels;
                    do {
210
                        *dst16++ = bytestream2_get_be16u(&gb);
211 212
                    } while (--channel);
#endif
213
                    bytestream2_skip(&gb, 2);
214 215 216 217 218
                } while (--samples);
            } else {
                do {
                    channel = avctx->channels;
                    do {
219
                        *dst32++ = bytestream2_get_be24u(&gb) << 8;
220
                    } while (--channel);
221
                    bytestream2_skip(&gb, 3);
222 223 224 225
                } while (--samples);
            }
            break;
            /* remapping: L, R, C, LBack, RBack, LF */
226
        case AV_CH_LAYOUT_5POINT1:
227
            if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
228
                do {
229 230 231 232 233 234
                    dst16[0] = bytestream2_get_be16u(&gb);
                    dst16[1] = bytestream2_get_be16u(&gb);
                    dst16[2] = bytestream2_get_be16u(&gb);
                    dst16[4] = bytestream2_get_be16u(&gb);
                    dst16[5] = bytestream2_get_be16u(&gb);
                    dst16[3] = bytestream2_get_be16u(&gb);
235 236 237 238
                    dst16 += 6;
                } while (--samples);
            } else {
                do {
239 240 241 242 243 244
                    dst32[0] = bytestream2_get_be24u(&gb) << 8;
                    dst32[1] = bytestream2_get_be24u(&gb) << 8;
                    dst32[2] = bytestream2_get_be24u(&gb) << 8;
                    dst32[4] = bytestream2_get_be24u(&gb) << 8;
                    dst32[5] = bytestream2_get_be24u(&gb) << 8;
                    dst32[3] = bytestream2_get_be24u(&gb) << 8;
245 246 247 248 249
                    dst32 += 6;
                } while (--samples);
            }
            break;
            /* remapping: L, R, C, LSide, LBack, RBack, RSide, <unused> */
250
        case AV_CH_LAYOUT_7POINT0:
251
            if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
252
                do {
253 254 255 256 257 258 259
                    dst16[0] = bytestream2_get_be16u(&gb);
                    dst16[1] = bytestream2_get_be16u(&gb);
                    dst16[2] = bytestream2_get_be16u(&gb);
                    dst16[5] = bytestream2_get_be16u(&gb);
                    dst16[3] = bytestream2_get_be16u(&gb);
                    dst16[4] = bytestream2_get_be16u(&gb);
                    dst16[6] = bytestream2_get_be16u(&gb);
260
                    dst16 += 7;
261
                    bytestream2_skip(&gb, 2);
262 263 264
                } while (--samples);
            } else {
                do {
265 266 267 268 269 270 271
                    dst32[0] = bytestream2_get_be24u(&gb) << 8;
                    dst32[1] = bytestream2_get_be24u(&gb) << 8;
                    dst32[2] = bytestream2_get_be24u(&gb) << 8;
                    dst32[5] = bytestream2_get_be24u(&gb) << 8;
                    dst32[3] = bytestream2_get_be24u(&gb) << 8;
                    dst32[4] = bytestream2_get_be24u(&gb) << 8;
                    dst32[6] = bytestream2_get_be24u(&gb) << 8;
272
                    dst32 += 7;
273
                    bytestream2_skip(&gb, 3);
274 275 276 277
                } while (--samples);
            }
            break;
            /* remapping: L, R, C, LSide, LBack, RBack, RSide, LF */
278
        case AV_CH_LAYOUT_7POINT1:
279
            if (AV_SAMPLE_FMT_S16 == avctx->sample_fmt) {
280
                do {
281 282 283 284 285 286 287 288
                    dst16[0] = bytestream2_get_be16u(&gb);
                    dst16[1] = bytestream2_get_be16u(&gb);
                    dst16[2] = bytestream2_get_be16u(&gb);
                    dst16[6] = bytestream2_get_be16u(&gb);
                    dst16[4] = bytestream2_get_be16u(&gb);
                    dst16[5] = bytestream2_get_be16u(&gb);
                    dst16[7] = bytestream2_get_be16u(&gb);
                    dst16[3] = bytestream2_get_be16u(&gb);
289 290 291 292
                    dst16 += 8;
                } while (--samples);
            } else {
                do {
293 294 295 296 297 298 299 300
                    dst32[0] = bytestream2_get_be24u(&gb) << 8;
                    dst32[1] = bytestream2_get_be24u(&gb) << 8;
                    dst32[2] = bytestream2_get_be24u(&gb) << 8;
                    dst32[6] = bytestream2_get_be24u(&gb) << 8;
                    dst32[4] = bytestream2_get_be24u(&gb) << 8;
                    dst32[5] = bytestream2_get_be24u(&gb) << 8;
                    dst32[7] = bytestream2_get_be24u(&gb) << 8;
                    dst32[3] = bytestream2_get_be24u(&gb) << 8;
301 302 303 304 305 306 307
                    dst32 += 8;
                } while (--samples);
            }
            break;
        }
    }

308 309 310
    *got_frame_ptr   = 1;
    *(AVFrame *)data = s->frame;

311
    retval = bytestream2_tell(&gb);
312
    if (avctx->debug & FF_DEBUG_BITSTREAM)
313
        av_dlog(avctx, "pcm_bluray_decode_frame: decoded %d -> %d bytes\n",
314
                retval, buf_size);
315 316 317
    return retval;
}

318
AVCodec ff_pcm_bluray_decoder = {
319 320 321
    .name           = "pcm_bluray",
    .type           = AVMEDIA_TYPE_AUDIO,
    .id             = CODEC_ID_PCM_BLURAY,
322 323
    .priv_data_size = sizeof(PCMBRDecode),
    .init           = pcm_bluray_decode_init,
324
    .decode         = pcm_bluray_decode_frame,
325
    .capabilities   = CODEC_CAP_DR1,
326 327 328 329
    .sample_fmts    = (const enum AVSampleFormat[]){
        AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_NONE
    },
    .long_name      = NULL_IF_CONFIG_SMALL("PCM signed 16|20|24-bit big-endian for Blu-ray media"),
330
};