nellymoserdec.c 7.36 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 23 24 25 26 27 28
/*
 * NellyMoser audio decoder
 * Copyright (c) 2007 a840bda5870ba11f19698ff6eb9581dfb0f95fa5,
 *                    539459aeb7d425140b62a3ec7dbf6dc8e408a306, and
 *                    520e17cd55896441042b14df2566a6eb610ed444
 * Copyright (c) 2007 Loic Minier <lool at dooz.org>
 *                    Benjamin Larsson
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

/**
29
 * @file
30 31 32
 * The 3 alphanumeric copyright notices are md5summed they are from the original
 * implementors. The original code is available from http://code.google.com/p/nelly2pcm/
 */
33

34
#include "nellymoser.h"
35 36
#include "libavutil/lfg.h"
#include "libavutil/random_seed.h"
37
#include "libavutil/audioconvert.h"
38 39
#include "avcodec.h"
#include "dsputil.h"
40
#include "fft.h"
41
#include "fmtconvert.h"
42
#include "sinewin.h"
43 44

#define ALT_BITSTREAM_READER_LE
45
#include "get_bits.h"
46 47 48 49


typedef struct NellyMoserDecodeContext {
    AVCodecContext* avctx;
50
    float          *float_buf;
51
    DECLARE_ALIGNED(16, float, state)[NELLY_BUF_LEN];
52
    AVLFG           random_state;
53
    GetBitContext   gb;
54
    float           scale_bias;
55
    DSPContext      dsp;
56
    FFTContext      imdct_ctx;
57
    FmtConvertContext fmt_conv;
58
    DECLARE_ALIGNED(32, float, imdct_out)[NELLY_BUF_LEN * 2];
59 60
} NellyMoserDecodeContext;

61 62 63
static void nelly_decode_block(NellyMoserDecodeContext *s,
                               const unsigned char block[NELLY_BLOCK_LEN],
                               float audio[NELLY_SAMPLES])
64 65
{
    int i,j;
66
    float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN];
67 68 69 70 71 72 73 74
    float *aptr, *bptr, *pptr, val, pval;
    int bits[NELLY_BUF_LEN];
    unsigned char v;

    init_get_bits(&s->gb, block, NELLY_BLOCK_LEN * 8);

    bptr = buf;
    pptr = pows;
75
    val = ff_nelly_init_table[get_bits(&s->gb, 6)];
76 77
    for (i=0 ; i<NELLY_BANDS ; i++) {
        if (i > 0)
78
            val += ff_nelly_delta_table[get_bits(&s->gb, 5)];
79
        pval = -pow(2, val/2048) * s->scale_bias;
80
        for (j = 0; j < ff_nelly_band_sizes_table[i]; j++) {
81 82 83 84 85 86
            *bptr++ = val;
            *pptr++ = pval;
        }

    }

87
    ff_nelly_get_sample_bits(buf, bits);
88 89

    for (i = 0; i < 2; i++) {
90 91
        aptr = audio + i * NELLY_BUF_LEN;

92
        init_get_bits(&s->gb, block, NELLY_BLOCK_LEN * 8);
93
        skip_bits_long(&s->gb, NELLY_HEADER_BITS + i*NELLY_DETAIL_BITS);
94 95 96

        for (j = 0; j < NELLY_FILL_LEN; j++) {
            if (bits[j] <= 0) {
97
                aptr[j] = M_SQRT1_2*pows[j];
98
                if (av_lfg_get(&s->random_state) & 1)
99
                    aptr[j] *= -1.0;
100 101
            } else {
                v = get_bits(&s->gb, bits[j]);
102
                aptr[j] = ff_nelly_dequantization_table[(1<<bits[j])-1+v]*pows[j];
103 104
            }
        }
105 106 107
        memset(&aptr[NELLY_FILL_LEN], 0,
               (NELLY_BUF_LEN - NELLY_FILL_LEN) * sizeof(float));

108
        s->imdct_ctx.imdct_calc(&s->imdct_ctx, s->imdct_out, aptr);
109 110
        /* XXX: overlapping and windowing should be part of a more
           generic imdct function */
111 112 113
        s->dsp.vector_fmul_reverse(s->state, s->state, ff_sine_128, NELLY_BUF_LEN);
        s->dsp.vector_fmul_add(aptr, s->imdct_out, ff_sine_128, s->state, NELLY_BUF_LEN);
        memcpy(s->state, s->imdct_out + NELLY_BUF_LEN, sizeof(float)*NELLY_BUF_LEN);
114 115 116
    }
}

117
static av_cold int decode_init(AVCodecContext * avctx) {
118 119 120
    NellyMoserDecodeContext *s = avctx->priv_data;

    s->avctx = avctx;
121
    av_lfg_init(&s->random_state, 0);
122
    ff_mdct_init(&s->imdct_ctx, 8, 1, 1.0);
123

124 125
    dsputil_init(&s->dsp, avctx);

126 127 128 129 130 131 132
    if (avctx->request_sample_fmt == AV_SAMPLE_FMT_FLT) {
        s->scale_bias = 1.0/(32768*8);
        avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
    } else {
        s->scale_bias = 1.0/(1*8);
        avctx->sample_fmt = AV_SAMPLE_FMT_S16;
        ff_fmt_convert_init(&s->fmt_conv, avctx);
133 134 135 136 137
        s->float_buf = av_mallocz(NELLY_SAMPLES * sizeof(*s->float_buf));
        if (!s->float_buf) {
            av_log(avctx, AV_LOG_ERROR, "error allocating float buffer\n");
            return AVERROR(ENOMEM);
        }
138
    }
139 140

    /* Generate overlap window */
141
    if (!ff_sine_128[127])
142
        ff_init_ff_sine_windows(7);
143

144
    avctx->channel_layout = AV_CH_LAYOUT_MONO;
145 146 147 148 149
    return 0;
}

static int decode_tag(AVCodecContext * avctx,
                      void *data, int *data_size,
150 151 152
                      AVPacket *avpkt) {
    const uint8_t *buf = avpkt->data;
    int buf_size = avpkt->size;
153
    NellyMoserDecodeContext *s = avctx->priv_data;
154
    int blocks, i, block_size;
155 156
    int16_t *samples_s16 = data;
    float   *samples_flt = data;
157

158
    block_size = NELLY_SAMPLES * av_get_bytes_per_sample(avctx->sample_fmt);
159
    blocks     = buf_size / NELLY_BLOCK_LEN;
160
    if (blocks <= 0) {
161 162 163 164
        av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
        return AVERROR_INVALIDDATA;
    }
    if (*data_size < blocks * block_size) {
165 166 167
        av_log(avctx, AV_LOG_ERROR, "Output buffer is too small\n");
        return AVERROR(EINVAL);
    }
168 169 170 171
    if (buf_size % NELLY_BLOCK_LEN) {
        av_log(avctx, AV_LOG_WARNING, "Leftover bytes: %d.\n",
               buf_size % NELLY_BLOCK_LEN);
    }
172 173 174 175 176 177 178
    /* Normal numbers of blocks for sample rates:
     *  8000 Hz - 1
     * 11025 Hz - 2
     * 16000 Hz - 3
     * 22050 Hz - 4
     * 44100 Hz - 8
     */
179 180

    for (i=0 ; i<blocks ; i++) {
181 182 183 184 185 186 187 188 189
        if (avctx->sample_fmt == SAMPLE_FMT_FLT) {
            nelly_decode_block(s, buf, samples_flt);
            samples_flt += NELLY_SAMPLES;
        } else {
            nelly_decode_block(s, buf, s->float_buf);
            s->fmt_conv.float_to_int16(samples_s16, s->float_buf, NELLY_SAMPLES);
            samples_s16 += NELLY_SAMPLES;
        }
        buf += NELLY_BLOCK_LEN;
190
    }
191
    *data_size = blocks * block_size;
192

193
    return buf_size;
194 195
}

196
static av_cold int decode_end(AVCodecContext * avctx) {
197 198
    NellyMoserDecodeContext *s = avctx->priv_data;

199
    av_freep(&s->float_buf);
200
    ff_mdct_end(&s->imdct_ctx);
201 202 203
    return 0;
}

204
AVCodec ff_nellymoser_decoder = {
205 206 207 208 209 210 211
    .name           = "nellymoser",
    .type           = AVMEDIA_TYPE_AUDIO,
    .id             = CODEC_ID_NELLYMOSER,
    .priv_data_size = sizeof(NellyMoserDecodeContext),
    .init           = decode_init,
    .close          = decode_end,
    .decode         = decode_tag,
212
    .long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
213 214 215
    .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLT,
                                                      AV_SAMPLE_FMT_S16,
                                                      AV_SAMPLE_FMT_NONE },
216 217
};