2007-10-15 16:26:02 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file nellymoserdec.c
|
|
|
|
* 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/
|
|
|
|
*/
|
2008-05-09 11:56:36 +00:00
|
|
|
|
2008-06-08 20:45:18 +00:00
|
|
|
#include "nellymoser.h"
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavutil/random.h"
|
2007-10-15 16:26:02 +00:00
|
|
|
#include "avcodec.h"
|
|
|
|
#include "dsputil.h"
|
|
|
|
|
|
|
|
#define ALT_BITSTREAM_READER_LE
|
|
|
|
#include "bitstream.h"
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct NellyMoserDecodeContext {
|
|
|
|
AVCodecContext* avctx;
|
2007-10-18 15:16:07 +00:00
|
|
|
DECLARE_ALIGNED_16(float,float_buf[NELLY_SAMPLES]);
|
2008-04-16 14:59:23 +00:00
|
|
|
float state[128];
|
2007-10-15 16:26:02 +00:00
|
|
|
AVRandomState random_state;
|
|
|
|
GetBitContext gb;
|
|
|
|
int add_bias;
|
2008-04-16 15:28:11 +00:00
|
|
|
float scale_bias;
|
2007-10-15 16:26:02 +00:00
|
|
|
DSPContext dsp;
|
2007-11-03 14:34:25 +00:00
|
|
|
MDCTContext imdct_ctx;
|
|
|
|
DECLARE_ALIGNED_16(float,imdct_out[NELLY_BUF_LEN * 2]);
|
2007-10-15 16:26:02 +00:00
|
|
|
} NellyMoserDecodeContext;
|
|
|
|
|
2008-04-16 13:28:13 +00:00
|
|
|
static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *audio, float *a_in)
|
2007-10-15 16:26:02 +00:00
|
|
|
{
|
2008-04-16 15:33:30 +00:00
|
|
|
int bot, top;
|
2007-10-15 16:26:02 +00:00
|
|
|
|
|
|
|
bot = 0;
|
|
|
|
top = NELLY_BUF_LEN-1;
|
|
|
|
|
2008-04-16 15:03:07 +00:00
|
|
|
while (bot < NELLY_BUF_LEN) {
|
2009-01-17 20:06:08 +00:00
|
|
|
audio[bot] = a_in [bot]*ff_sine_128[bot]
|
|
|
|
+state[bot]*ff_sine_128[top] + s->add_bias;
|
2007-10-15 16:26:02 +00:00
|
|
|
|
|
|
|
bot++;
|
|
|
|
top--;
|
|
|
|
}
|
2008-04-16 14:59:23 +00:00
|
|
|
memcpy(state, a_in + NELLY_BUF_LEN, sizeof(float)*NELLY_BUF_LEN);
|
2007-10-15 16:26:02 +00:00
|
|
|
}
|
|
|
|
|
2008-05-01 15:20:57 +00:00
|
|
|
static void nelly_decode_block(NellyMoserDecodeContext *s,
|
|
|
|
const unsigned char block[NELLY_BLOCK_LEN],
|
|
|
|
float audio[NELLY_SAMPLES])
|
2007-10-15 16:26:02 +00:00
|
|
|
{
|
|
|
|
int i,j;
|
2007-11-03 14:34:25 +00:00
|
|
|
float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN];
|
2007-10-15 16:26:02 +00:00
|
|
|
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;
|
2008-06-08 20:45:18 +00:00
|
|
|
val = ff_nelly_init_table[get_bits(&s->gb, 6)];
|
2007-10-15 16:26:02 +00:00
|
|
|
for (i=0 ; i<NELLY_BANDS ; i++) {
|
|
|
|
if (i > 0)
|
2008-06-08 20:45:18 +00:00
|
|
|
val += ff_nelly_delta_table[get_bits(&s->gb, 5)];
|
2008-04-16 15:30:04 +00:00
|
|
|
pval = -pow(2, val/2048) * s->scale_bias;
|
2008-06-08 20:45:18 +00:00
|
|
|
for (j = 0; j < ff_nelly_band_sizes_table[i]; j++) {
|
2007-10-15 16:26:02 +00:00
|
|
|
*bptr++ = val;
|
|
|
|
*pptr++ = pval;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-06-08 20:45:18 +00:00
|
|
|
ff_nelly_get_sample_bits(buf, bits);
|
2007-10-15 16:26:02 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
2007-11-03 14:34:25 +00:00
|
|
|
aptr = audio + i * NELLY_BUF_LEN;
|
|
|
|
|
2007-10-15 16:26:02 +00:00
|
|
|
init_get_bits(&s->gb, block, NELLY_BLOCK_LEN * 8);
|
|
|
|
skip_bits(&s->gb, NELLY_HEADER_BITS + i*NELLY_DETAIL_BITS);
|
|
|
|
|
|
|
|
for (j = 0; j < NELLY_FILL_LEN; j++) {
|
|
|
|
if (bits[j] <= 0) {
|
2007-11-03 14:34:25 +00:00
|
|
|
aptr[j] = M_SQRT1_2*pows[j];
|
2008-04-16 15:30:04 +00:00
|
|
|
if (av_random(&s->random_state) & 1)
|
2007-11-03 14:34:25 +00:00
|
|
|
aptr[j] *= -1.0;
|
2007-10-15 16:26:02 +00:00
|
|
|
} else {
|
|
|
|
v = get_bits(&s->gb, bits[j]);
|
2008-06-08 20:45:18 +00:00
|
|
|
aptr[j] = ff_nelly_dequantization_table[(1<<bits[j])-1+v]*pows[j];
|
2007-10-15 16:26:02 +00:00
|
|
|
}
|
|
|
|
}
|
2007-11-03 14:34:25 +00:00
|
|
|
memset(&aptr[NELLY_FILL_LEN], 0,
|
|
|
|
(NELLY_BUF_LEN - NELLY_FILL_LEN) * sizeof(float));
|
|
|
|
|
2008-08-12 00:38:30 +00:00
|
|
|
ff_imdct_calc(&s->imdct_ctx, s->imdct_out, aptr);
|
2007-11-03 14:34:25 +00:00
|
|
|
/* XXX: overlapping and windowing should be part of a more
|
|
|
|
generic imdct function */
|
2008-04-16 13:28:13 +00:00
|
|
|
overlap_and_window(s, s->state, aptr, s->imdct_out);
|
2007-10-15 16:26:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int decode_init(AVCodecContext * avctx) {
|
2007-10-15 16:26:02 +00:00
|
|
|
NellyMoserDecodeContext *s = avctx->priv_data;
|
|
|
|
|
|
|
|
s->avctx = avctx;
|
2009-01-18 23:04:33 +00:00
|
|
|
av_random_init(&s->random_state, 0);
|
2007-11-03 14:34:25 +00:00
|
|
|
ff_mdct_init(&s->imdct_ctx, 8, 1);
|
|
|
|
|
2007-10-15 16:26:02 +00:00
|
|
|
dsputil_init(&s->dsp, avctx);
|
|
|
|
|
|
|
|
if(s->dsp.float_to_int16 == ff_float_to_int16_c) {
|
|
|
|
s->add_bias = 385;
|
2008-04-16 15:28:11 +00:00
|
|
|
s->scale_bias = 1.0/(8*32768);
|
2007-10-15 16:26:02 +00:00
|
|
|
} else {
|
|
|
|
s->add_bias = 0;
|
2008-04-16 15:28:11 +00:00
|
|
|
s->scale_bias = 1.0/(1*8);
|
2007-10-15 16:26:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate overlap window */
|
2009-01-17 20:06:08 +00:00
|
|
|
if (!ff_sine_128[127])
|
|
|
|
ff_sine_window_init(ff_sine_128, 128);
|
2007-10-15 16:26:02 +00:00
|
|
|
|
2008-07-31 10:47:31 +00:00
|
|
|
avctx->sample_fmt = SAMPLE_FMT_S16;
|
2008-11-16 09:54:09 +00:00
|
|
|
avctx->channel_layout = CH_LAYOUT_MONO;
|
2007-10-15 16:26:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int decode_tag(AVCodecContext * avctx,
|
|
|
|
void *data, int *data_size,
|
2008-02-01 03:26:31 +00:00
|
|
|
const uint8_t * buf, int buf_size) {
|
2007-10-15 16:26:02 +00:00
|
|
|
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;
|
|
|
|
|
|
|
|
switch (buf_size) {
|
|
|
|
case 64: // 8000Hz
|
|
|
|
blocks = 1; break;
|
|
|
|
case 128: // 11025Hz
|
|
|
|
blocks = 2; break;
|
|
|
|
case 256: // 22050Hz
|
|
|
|
blocks = 4; break;
|
2007-11-14 15:31:47 +00:00
|
|
|
case 512: // 44100Hz
|
|
|
|
blocks = 8; break;
|
2007-10-15 16:26:02 +00:00
|
|
|
default:
|
2008-07-23 12:21:56 +00:00
|
|
|
av_log(avctx, AV_LOG_DEBUG, "Tag size %d.\n", buf_size);
|
2007-10-15 16:26:02 +00:00
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2007-11-14 08:22:15 +00:00
|
|
|
return buf_size;
|
2007-10-15 16:26:02 +00:00
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int decode_end(AVCodecContext * avctx) {
|
2007-10-15 16:26:02 +00:00
|
|
|
NellyMoserDecodeContext *s = avctx->priv_data;
|
|
|
|
|
2007-11-03 14:34:25 +00:00
|
|
|
ff_mdct_end(&s->imdct_ctx);
|
2007-10-15 16:26:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVCodec nellymoser_decoder = {
|
|
|
|
"nellymoser",
|
|
|
|
CODEC_TYPE_AUDIO,
|
|
|
|
CODEC_ID_NELLYMOSER,
|
|
|
|
sizeof(NellyMoserDecodeContext),
|
|
|
|
decode_init,
|
|
|
|
NULL,
|
|
|
|
decode_end,
|
|
|
|
decode_tag,
|
2008-06-12 21:50:13 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
|
2007-10-15 16:26:02 +00:00
|
|
|
};
|
|
|
|
|