2003-06-29 22:11:55 +03:00
|
|
|
/*
|
|
|
|
* Real Audio 1.0 (14.4K)
|
2014-08-23 22:39:22 +03:00
|
|
|
* Copyright (c) 2003 The FFmpeg Project
|
2003-06-29 22:11:55 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2003-06-29 22:11:55 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-06-29 22:11:55 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2003-06-29 22:11:55 +03:00
|
|
|
* 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
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-06-29 22:11:55 +03:00
|
|
|
*/
|
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#ifndef AVCODEC_RA144_H
|
|
|
|
#define AVCODEC_RA144_H
|
2003-06-29 22:11:55 +03:00
|
|
|
|
2008-06-16 11:25:48 +03:00
|
|
|
#include <stdint.h>
|
2011-01-21 02:11:44 +02:00
|
|
|
#include "lpc.h"
|
2012-02-28 09:48:31 +03:00
|
|
|
#include "audio_frame_queue.h"
|
2014-06-22 18:58:28 +03:00
|
|
|
#include "audiodsp.h"
|
2008-06-16 11:25:48 +03:00
|
|
|
|
2010-06-11 11:01:51 +03:00
|
|
|
#define NBLOCKS 4 ///< number of subblocks within a block
|
|
|
|
#define BLOCKSIZE 40 ///< subblock size in 16-bit words
|
|
|
|
#define BUFFERSIZE 146 ///< the size of the adaptive codebook
|
2010-06-11 12:01:25 +03:00
|
|
|
#define FIXED_CB_SIZE 128 ///< size of fixed codebooks
|
2013-06-30 14:45:10 +03:00
|
|
|
#define FRAME_SIZE 20 ///< size of encoded frame
|
2010-06-11 12:01:25 +03:00
|
|
|
#define LPC_ORDER 10 ///< order of LPC filter
|
2010-06-11 11:01:51 +03:00
|
|
|
|
2012-09-27 11:19:53 +03:00
|
|
|
typedef struct RA144Context {
|
2010-06-11 11:01:51 +03:00
|
|
|
AVCodecContext *avctx;
|
2014-06-22 18:58:28 +03:00
|
|
|
AudioDSPContext adsp;
|
2011-01-21 02:11:44 +02:00
|
|
|
LPCContext lpc_ctx;
|
2012-02-28 09:48:31 +03:00
|
|
|
AudioFrameQueue afq;
|
2012-02-28 09:02:28 +03:00
|
|
|
int last_frame;
|
2010-06-11 11:01:51 +03:00
|
|
|
|
|
|
|
unsigned int old_energy; ///< previous frame energy
|
|
|
|
|
|
|
|
unsigned int lpc_tables[2][10];
|
|
|
|
|
|
|
|
/** LPC coefficients: lpc_coef[0] is the coefficients of the current frame
|
|
|
|
* and lpc_coef[1] of the previous one. */
|
|
|
|
unsigned int *lpc_coef[2];
|
|
|
|
|
|
|
|
unsigned int lpc_refl_rms[2];
|
|
|
|
|
2010-06-11 12:01:25 +03:00
|
|
|
int16_t curr_block[NBLOCKS * BLOCKSIZE];
|
|
|
|
|
2010-06-11 11:01:51 +03:00
|
|
|
/** The current subblock padded by the last 10 values of the previous one. */
|
|
|
|
int16_t curr_sblock[50];
|
|
|
|
|
|
|
|
/** Adaptive codebook, its size is two units bigger to avoid a
|
|
|
|
* buffer overflow. */
|
2013-04-17 22:09:06 +03:00
|
|
|
int16_t adapt_cb[146+2];
|
2012-03-04 15:28:16 +03:00
|
|
|
|
|
|
|
DECLARE_ALIGNED(16, int16_t, buffer_a)[FFALIGN(BLOCKSIZE,16)];
|
2010-06-11 11:01:51 +03:00
|
|
|
} RA144Context;
|
|
|
|
|
2010-06-11 11:03:43 +03:00
|
|
|
void ff_copy_and_dup(int16_t *target, const int16_t *source, int offset);
|
|
|
|
int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx);
|
|
|
|
void ff_eval_coefs(int *coefs, const int *refl);
|
|
|
|
void ff_int_to_int16(int16_t *out, const int *inp);
|
|
|
|
int ff_t_sqrt(unsigned int x);
|
|
|
|
unsigned int ff_rms(const int *data);
|
|
|
|
int ff_interp(RA144Context *ractx, int16_t *out, int a, int copyold,
|
|
|
|
int energy);
|
|
|
|
unsigned int ff_rescale_rms(unsigned int rms, unsigned int energy);
|
2014-06-22 18:58:28 +03:00
|
|
|
int ff_irms(AudioDSPContext *adsp, const int16_t *data/*align 16*/);
|
2013-04-17 22:09:06 +03:00
|
|
|
void ff_subblock_synthesis(RA144Context *ractx, const int16_t *lpc_coefs,
|
2010-06-11 11:05:17 +03:00
|
|
|
int cba_idx, int cb1_idx, int cb2_idx,
|
|
|
|
int gval, int gain);
|
2010-06-11 11:01:51 +03:00
|
|
|
|
2010-06-11 11:03:43 +03:00
|
|
|
extern const int16_t ff_gain_val_tab[256][3];
|
|
|
|
extern const uint8_t ff_gain_exp_tab[256];
|
|
|
|
extern const int8_t ff_cb1_vects[128][40];
|
|
|
|
extern const int8_t ff_cb2_vects[128][40];
|
|
|
|
extern const uint16_t ff_cb1_base[128];
|
|
|
|
extern const uint16_t ff_cb2_base[128];
|
|
|
|
extern const int16_t ff_energy_tab[32];
|
|
|
|
extern const int16_t * const ff_lpc_refl_cb[10];
|
2003-06-29 22:11:55 +03:00
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#endif /* AVCODEC_RA144_H */
|