libavcodec/nellymoserdec.c
636b13c5
 /*
  * 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.
  */
 
 /**
ba87f080
  * @file
636b13c5
  * 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/
  */
245976da
 
a903f8f0
 #include "libavutil/channel_layout.h"
e034cc6c
 #include "libavutil/float_dsp.h"
3b0b8479
 #include "libavutil/lfg.h"
 #include "libavutil/random_seed.h"
636b13c5
 #include "avcodec.h"
1429224b
 #include "fft.h"
c73d99e6
 #include "fmtconvert.h"
594d4d5d
 #include "internal.h"
a903f8f0
 #include "nellymoser.h"
4538729a
 #include "sinewin.h"
636b13c5
 
aaf47bcd
 #define BITSTREAM_READER_LE
9106a698
 #include "get_bits.h"
636b13c5
 
 
 typedef struct NellyMoserDecodeContext {
     AVCodecContext* avctx;
3b0b8479
     AVLFG           random_state;
636b13c5
     GetBitContext   gb;
5d32325a
     float           scale_bias;
e034cc6c
     AVFloatDSPContext fdsp;
01b22147
     FFTContext      imdct_ctx;
5cd1337f
     DECLARE_ALIGNED(32, float, imdct_buf)[2][NELLY_BUF_LEN];
     float          *imdct_out;
     float          *imdct_prev;
636b13c5
 } NellyMoserDecodeContext;
 
53e85f5f
 static void nelly_decode_block(NellyMoserDecodeContext *s,
                                const unsigned char block[NELLY_BLOCK_LEN],
                                float audio[NELLY_SAMPLES])
636b13c5
 {
     int i,j;
eb1c687b
     float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN];
636b13c5
     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;
681f5c12
     val = ff_nelly_init_table[get_bits(&s->gb, 6)];
636b13c5
     for (i=0 ; i<NELLY_BANDS ; i++) {
         if (i > 0)
681f5c12
             val += ff_nelly_delta_table[get_bits(&s->gb, 5)];
a1b914b2
         pval = -pow(2, val/2048) * s->scale_bias;
681f5c12
         for (j = 0; j < ff_nelly_band_sizes_table[i]; j++) {
636b13c5
             *bptr++ = val;
             *pptr++ = pval;
         }
 
     }
 
681f5c12
     ff_nelly_get_sample_bits(buf, bits);
636b13c5
 
     for (i = 0; i < 2; i++) {
eb1c687b
         aptr = audio + i * NELLY_BUF_LEN;
 
636b13c5
         init_get_bits(&s->gb, block, NELLY_BLOCK_LEN * 8);
0a8dedc9
         skip_bits_long(&s->gb, NELLY_HEADER_BITS + i*NELLY_DETAIL_BITS);
636b13c5
 
         for (j = 0; j < NELLY_FILL_LEN; j++) {
             if (bits[j] <= 0) {
eb1c687b
                 aptr[j] = M_SQRT1_2*pows[j];
3b0b8479
                 if (av_lfg_get(&s->random_state) & 1)
eb1c687b
                     aptr[j] *= -1.0;
636b13c5
             } else {
                 v = get_bits(&s->gb, bits[j]);
681f5c12
                 aptr[j] = ff_nelly_dequantization_table[(1<<bits[j])-1+v]*pows[j];
636b13c5
             }
         }
eb1c687b
         memset(&aptr[NELLY_FILL_LEN], 0,
                (NELLY_BUF_LEN - NELLY_FILL_LEN) * sizeof(float));
 
5cd1337f
         s->imdct_ctx.imdct_half(&s->imdct_ctx, s->imdct_out, aptr);
e034cc6c
         s->fdsp.vector_fmul_window(aptr, s->imdct_prev + NELLY_BUF_LEN / 2,
                                    s->imdct_out, ff_sine_128,
                                    NELLY_BUF_LEN / 2);
5cd1337f
         FFSWAP(float *, s->imdct_out, s->imdct_prev);
636b13c5
     }
 }
 
98a6fff9
 static av_cold int decode_init(AVCodecContext * avctx) {
636b13c5
     NellyMoserDecodeContext *s = avctx->priv_data;
 
     s->avctx = avctx;
5cd1337f
     s->imdct_out = s->imdct_buf[0];
     s->imdct_prev = s->imdct_buf[1];
b8cef7be
     av_lfg_init(&s->random_state, 0);
7d485f16
     ff_mdct_init(&s->imdct_ctx, 8, 1, 1.0);
eb1c687b
 
e034cc6c
     avpriv_float_dsp_init(&s->fdsp, avctx->flags & CODEC_FLAG_BITEXACT);
636b13c5
 
66f52d0c
     s->scale_bias = 1.0/(32768*8);
     avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
636b13c5
 
     /* Generate overlap window */
8a569fee
     if (!ff_sine_128[127])
14b86070
         ff_init_ff_sine_windows(7);
636b13c5
 
d26701ce
     avctx->channels       = 1;
63e8d976
     avctx->channel_layout = AV_CH_LAYOUT_MONO;
0eea2129
 
636b13c5
     return 0;
 }
 
0eea2129
 static int decode_tag(AVCodecContext *avctx, void *data,
                       int *got_frame_ptr, AVPacket *avpkt)
 {
0fe4056f
     AVFrame *frame     = data;
7a00bbad
     const uint8_t *buf = avpkt->data;
11828b88
     const uint8_t *side=av_packet_get_side_data(avpkt, 'F', NULL);
7a00bbad
     int buf_size = avpkt->size;
636b13c5
     NellyMoserDecodeContext *s = avctx->priv_data;
0eea2129
     int blocks, i, ret;
     float   *samples_flt;
636b13c5
 
0aaa85db
     blocks     = buf_size / NELLY_BLOCK_LEN;
6faf0a21
 
8b31c086
     if (blocks <= 0) {
0aaa85db
         av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
         return AVERROR_INVALIDDATA;
     }
e4de7167
 
8c9581f0
     if (buf_size % NELLY_BLOCK_LEN) {
         av_log(avctx, AV_LOG_WARNING, "Leftover bytes: %d.\n",
                buf_size % NELLY_BLOCK_LEN);
     }
c5d68fbd
     /* Normal numbers of blocks for sample rates:
      *  8000 Hz - 1
      * 11025 Hz - 2
      * 16000 Hz - 3
      * 22050 Hz - 4
      * 44100 Hz - 8
      */
11828b88
     if(side && blocks>1 && avctx->sample_rate%11025==0 && (1<<((side[0]>>2)&3)) == blocks)
         avctx->sample_rate= 11025*(blocks/2);
636b13c5
 
0eea2129
     /* get output buffer */
0fe4056f
     frame->nb_samples = NELLY_SAMPLES * blocks;
1ec94b0f
     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
0eea2129
         return ret;
0fe4056f
     samples_flt = (float *)frame->data[0];
0eea2129
 
636b13c5
     for (i=0 ; i<blocks ; i++) {
66f52d0c
         nelly_decode_block(s, buf, samples_flt);
         samples_flt += NELLY_SAMPLES;
84464b2e
         buf += NELLY_BLOCK_LEN;
636b13c5
     }
0eea2129
 
0fe4056f
     *got_frame_ptr = 1;
636b13c5
 
5b0b5ecf
     return buf_size;
636b13c5
 }
 
98a6fff9
 static av_cold int decode_end(AVCodecContext * avctx) {
636b13c5
     NellyMoserDecodeContext *s = avctx->priv_data;
 
eb1c687b
     ff_mdct_end(&s->imdct_ctx);
0eea2129
 
636b13c5
     return 0;
 }
 
d36beb3f
 AVCodec ff_nellymoser_decoder = {
ec6402b7
     .name           = "nellymoser",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
ec6402b7
     .type           = AVMEDIA_TYPE_AUDIO,
36ef5369
     .id             = AV_CODEC_ID_NELLYMOSER,
ec6402b7
     .priv_data_size = sizeof(NellyMoserDecodeContext),
     .init           = decode_init,
     .close          = decode_end,
     .decode         = decode_tag,
ce949481
     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_PARAM_CHANGE,
84464b2e
     .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLT,
                                                       AV_SAMPLE_FMT_NONE },
636b13c5
 };