libavcodec/cngdec.c
9b500b8f
 /*
  * RFC 3389 comfort noise generator
  * Copyright (c) 2012 Martin Storsjo
  *
e79c3858
  * This file is part of FFmpeg.
9b500b8f
  *
e79c3858
  * FFmpeg is free software; you can redistribute it and/or
9b500b8f
  * 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.
  *
e79c3858
  * FFmpeg is distributed in the hope that it will be useful,
9b500b8f
  * 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
e79c3858
  * License along with FFmpeg; if not, write to the Free Software
9b500b8f
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <math.h>
 
 #include "libavutil/common.h"
db1a642c
 #include "libavutil/ffmath.h"
e7b9d136
 #include "libavutil/intreadwrite.h"
9b500b8f
 #include "avcodec.h"
 #include "celp_filters.h"
594d4d5d
 #include "internal.h"
9b500b8f
 #include "libavutil/lfg.h"
 
 typedef struct CNGContext {
     float *refl_coef, *target_refl_coef;
     float *lpc_coef;
     int order;
     int energy, target_energy;
6b68223d
     int inited;
9b500b8f
     float *filter_out;
     float *excitation;
     AVLFG lfg;
 } CNGContext;
 
 static av_cold int cng_decode_close(AVCodecContext *avctx)
 {
     CNGContext *p = avctx->priv_data;
2a26b22a
     av_freep(&p->refl_coef);
     av_freep(&p->target_refl_coef);
     av_freep(&p->lpc_coef);
     av_freep(&p->filter_out);
     av_freep(&p->excitation);
9b500b8f
     return 0;
 }
 
 static av_cold int cng_decode_init(AVCodecContext *avctx)
 {
     CNGContext *p = avctx->priv_data;
 
     avctx->sample_fmt  = AV_SAMPLE_FMT_S16;
     avctx->channels    = 1;
     avctx->sample_rate = 8000;
 
     p->order            = 12;
     avctx->frame_size   = 640;
f703dae7
     p->refl_coef        = av_mallocz_array(p->order, sizeof(*p->refl_coef));
     p->target_refl_coef = av_mallocz_array(p->order, sizeof(*p->target_refl_coef));
     p->lpc_coef         = av_mallocz_array(p->order, sizeof(*p->lpc_coef));
     p->filter_out       = av_mallocz_array(avctx->frame_size + p->order,
9b500b8f
                                      sizeof(*p->filter_out));
f703dae7
     p->excitation       = av_mallocz_array(avctx->frame_size, sizeof(*p->excitation));
9b500b8f
     if (!p->refl_coef || !p->target_refl_coef || !p->lpc_coef ||
         !p->filter_out || !p->excitation) {
         cng_decode_close(avctx);
         return AVERROR(ENOMEM);
     }
 
     av_lfg_init(&p->lfg, 0);
 
     return 0;
 }
 
 static void make_lpc_coefs(float *lpc, const float *refl, int order)
 {
     float buf[100];
     float *next, *cur;
     int m, i;
     next = buf;
     cur  = lpc;
     for (m = 0; m < order; m++) {
         next[m] = refl[m];
         for (i = 0; i < m; i++)
             next[i] = cur[i] + refl[m] * cur[m - i - 1];
         FFSWAP(float*, next, cur);
     }
     if (cur != lpc)
         memcpy(lpc, cur, sizeof(*lpc) * order);
 }
 
6b68223d
 static void cng_decode_flush(AVCodecContext *avctx)
 {
     CNGContext *p = avctx->priv_data;
     p->inited = 0;
 }
 
9b500b8f
 static int cng_decode_frame(AVCodecContext *avctx, void *data,
ab9545a2
                             int *got_frame_ptr, AVPacket *avpkt)
9b500b8f
 {
cddf8998
     AVFrame *frame = data;
9b500b8f
     CNGContext *p = avctx->priv_data;
     int buf_size  = avpkt->size;
     int ret, i;
     int16_t *buf_out;
     float e = 1.0;
     float scaling;
 
     if (avpkt->size) {
036e6c37
         int dbov = -avpkt->data[0];
b0e28da3
         p->target_energy = 1081109975 * ff_exp10(dbov / 10.0) * 0.75;
cafefd88
         memset(p->target_refl_coef, 0, p->order * sizeof(*p->target_refl_coef));
9b500b8f
         for (i = 0; i < FFMIN(avpkt->size - 1, p->order); i++) {
             p->target_refl_coef[i] = (avpkt->data[1 + i] - 127) / 128.0;
         }
     }
 
e7b9d136
     if (avctx->internal->skip_samples > 10 * avctx->frame_size) {
         avctx->internal->skip_samples = 0;
         return AVERROR_INVALIDDATA;
     }
 
6b68223d
     if (p->inited) {
         p->energy = p->energy / 2 + p->target_energy / 2;
         for (i = 0; i < p->order; i++)
             p->refl_coef[i] = 0.6 *p->refl_coef[i] + 0.4 * p->target_refl_coef[i];
     } else {
         p->energy = p->target_energy;
         memcpy(p->refl_coef, p->target_refl_coef, p->order * sizeof(*p->refl_coef));
         p->inited = 1;
     }
9b50d20c
     make_lpc_coefs(p->lpc_coef, p->refl_coef, p->order);
9b500b8f
 
     for (i = 0; i < p->order; i++)
         e *= 1.0 - p->refl_coef[i]*p->refl_coef[i];
 
     scaling = sqrt(e * p->energy / 1081109975);
     for (i = 0; i < avctx->frame_size; i++) {
         int r = (av_lfg_get(&p->lfg) & 0xffff) - 0x8000;
         p->excitation[i] = scaling * r;
     }
     ff_celp_lp_synthesis_filterf(p->filter_out + p->order, p->lpc_coef,
                                  p->excitation, avctx->frame_size, p->order);
 
cddf8998
     frame->nb_samples = avctx->frame_size;
1ec94b0f
     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
9b500b8f
         return ret;
cddf8998
     buf_out = (int16_t *)frame->data[0];
9b500b8f
     for (i = 0; i < avctx->frame_size; i++)
ed87b8b6
         buf_out[i] = av_clip_int16(p->filter_out[i + p->order]);
9b500b8f
     memcpy(p->filter_out, p->filter_out + avctx->frame_size,
            p->order * sizeof(*p->filter_out));
 
cddf8998
     *got_frame_ptr = 1;
9b500b8f
 
     return buf_size;
 }
 
 AVCodec ff_comfortnoise_decoder = {
     .name           = "comfortnoise",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("RFC 3389 comfort noise generator"),
9b500b8f
     .type           = AVMEDIA_TYPE_AUDIO,
     .id             = AV_CODEC_ID_COMFORT_NOISE,
     .priv_data_size = sizeof(CNGContext),
     .init           = cng_decode_init,
     .decode         = cng_decode_frame,
6b68223d
     .flush          = cng_decode_flush,
9b500b8f
     .close          = cng_decode_close,
     .sample_fmts    = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
                                                      AV_SAMPLE_FMT_NONE },
e2def5f3
     .capabilities   = AV_CODEC_CAP_DR1,
9b500b8f
 };