nellymoserdec.c 6.31 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 38
#include "avcodec.h"
#include "dsputil.h"
39
#include "fft.h"
40 41

#define ALT_BITSTREAM_READER_LE
42
#include "get_bits.h"
43 44 45 46


typedef struct NellyMoserDecodeContext {
    AVCodecContext* avctx;
47
    DECLARE_ALIGNED(16, float,float_buf)[NELLY_SAMPLES];
48
    float           state[128];
49
    AVLFG           random_state;
50 51
    GetBitContext   gb;
    int             add_bias;
52
    float           scale_bias;
53
    DSPContext      dsp;
54
    FFTContext      imdct_ctx;
55
    DECLARE_ALIGNED(16, float,imdct_out)[NELLY_BUF_LEN * 2];
56 57
} NellyMoserDecodeContext;

Michael Niedermayer's avatar
Michael Niedermayer committed
58
static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *audio, float *a_in)
59
{
Michael Niedermayer's avatar
Michael Niedermayer committed
60
    int bot, top;
61 62 63 64

    bot = 0;
    top = NELLY_BUF_LEN-1;

Michael Niedermayer's avatar
Michael Niedermayer committed
65
    while (bot < NELLY_BUF_LEN) {
66 67
        audio[bot] = a_in [bot]*ff_sine_128[bot]
                    +state[bot]*ff_sine_128[top] + s->add_bias;
68 69 70 71

        bot++;
        top--;
    }
72
    memcpy(state, a_in + NELLY_BUF_LEN, sizeof(float)*NELLY_BUF_LEN);
73 74
}

75 76 77
static void nelly_decode_block(NellyMoserDecodeContext *s,
                               const unsigned char block[NELLY_BLOCK_LEN],
                               float audio[NELLY_SAMPLES])
78 79
{
    int i,j;
80
    float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN];
81 82 83 84 85 86 87 88
    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;
89
    val = ff_nelly_init_table[get_bits(&s->gb, 6)];
90 91
    for (i=0 ; i<NELLY_BANDS ; i++) {
        if (i > 0)
92
            val += ff_nelly_delta_table[get_bits(&s->gb, 5)];
93
        pval = -pow(2, val/2048) * s->scale_bias;
94
        for (j = 0; j < ff_nelly_band_sizes_table[i]; j++) {
95 96 97 98 99 100
            *bptr++ = val;
            *pptr++ = pval;
        }

    }

101
    ff_nelly_get_sample_bits(buf, bits);
102 103

    for (i = 0; i < 2; i++) {
104 105
        aptr = audio + i * NELLY_BUF_LEN;

106
        init_get_bits(&s->gb, block, NELLY_BLOCK_LEN * 8);
107
        skip_bits_long(&s->gb, NELLY_HEADER_BITS + i*NELLY_DETAIL_BITS);
108 109 110

        for (j = 0; j < NELLY_FILL_LEN; j++) {
            if (bits[j] <= 0) {
111
                aptr[j] = M_SQRT1_2*pows[j];
112
                if (av_lfg_get(&s->random_state) & 1)
113
                    aptr[j] *= -1.0;
114 115
            } else {
                v = get_bits(&s->gb, bits[j]);
116
                aptr[j] = ff_nelly_dequantization_table[(1<<bits[j])-1+v]*pows[j];
117 118
            }
        }
119 120 121
        memset(&aptr[NELLY_FILL_LEN], 0,
               (NELLY_BUF_LEN - NELLY_FILL_LEN) * sizeof(float));

122
        ff_imdct_calc(&s->imdct_ctx, s->imdct_out, aptr);
123 124
        /* XXX: overlapping and windowing should be part of a more
           generic imdct function */
Michael Niedermayer's avatar
Michael Niedermayer committed
125
        overlap_and_window(s, s->state, aptr, s->imdct_out);
126 127 128
    }
}

129
static av_cold int decode_init(AVCodecContext * avctx) {
130 131 132
    NellyMoserDecodeContext *s = avctx->priv_data;

    s->avctx = avctx;
133
    av_lfg_init(&s->random_state, 0);
134
    ff_mdct_init(&s->imdct_ctx, 8, 1, 1.0);
135

136 137 138 139
    dsputil_init(&s->dsp, avctx);

    if(s->dsp.float_to_int16 == ff_float_to_int16_c) {
        s->add_bias = 385;
140
        s->scale_bias = 1.0/(8*32768);
141 142
    } else {
        s->add_bias = 0;
143
        s->scale_bias = 1.0/(1*8);
144 145 146
    }

    /* Generate overlap window */
147
    if (!ff_sine_128[127])
148
        ff_init_ff_sine_windows(7);
149

150
    avctx->sample_fmt = SAMPLE_FMT_S16;
Benjamin Larsson's avatar
Benjamin Larsson committed
151
    avctx->channel_layout = CH_LAYOUT_MONO;
152 153 154 155 156
    return 0;
}

static int decode_tag(AVCodecContext * avctx,
                      void *data, int *data_size,
157 158 159
                      AVPacket *avpkt) {
    const uint8_t *buf = avpkt->data;
    int buf_size = avpkt->size;
160 161 162 163 164 165 166 167 168
    NellyMoserDecodeContext *s = avctx->priv_data;
    int blocks, i;
    int16_t* samples;
    *data_size = 0;
    samples = (int16_t*)data;

    if (buf_size < avctx->block_align)
        return buf_size;

Martin Storsjö's avatar
Martin Storsjö committed
169
    if (buf_size % 64) {
170
        av_log(avctx, AV_LOG_ERROR, "Tag size %d.\n", buf_size);
Martin Storsjö's avatar
Martin Storsjö committed
171 172 173
        return buf_size;
    }
    blocks = buf_size / 64;
174 175 176 177 178 179 180
    /* Normal numbers of blocks for sample rates:
     *  8000 Hz - 1
     * 11025 Hz - 2
     * 16000 Hz - 3
     * 22050 Hz - 4
     * 44100 Hz - 8
     */
181 182 183 184 185 186 187

    for (i=0 ; i<blocks ; i++) {
        nelly_decode_block(s, &buf[i*NELLY_BLOCK_LEN], s->float_buf);
        s->dsp.float_to_int16(&samples[i*NELLY_SAMPLES], s->float_buf, NELLY_SAMPLES);
        *data_size += NELLY_SAMPLES*sizeof(int16_t);
    }

188
    return buf_size;
189 190
}

191
static av_cold int decode_end(AVCodecContext * avctx) {
192 193
    NellyMoserDecodeContext *s = avctx->priv_data;

194
    ff_mdct_end(&s->imdct_ctx);
195 196 197 198 199
    return 0;
}

AVCodec nellymoser_decoder = {
    "nellymoser",
200
    AVMEDIA_TYPE_AUDIO,
201 202 203 204 205 206
    CODEC_ID_NELLYMOSER,
    sizeof(NellyMoserDecodeContext),
    decode_init,
    NULL,
    decode_end,
    decode_tag,
207
    .long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
208 209
};