FFmpeg
Data Structures | Macros | Functions | Variables
ra288.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/float_dsp.h"
#include "libavutil/internal.h"
#include "libavutil/mem_internal.h"
#include "avcodec.h"
#include "celp_filters.h"
#include "codec_internal.h"
#include "decode.h"
#include "get_bits.h"
#include "lpc_functions.h"
#include "ra288.h"

Go to the source code of this file.

Data Structures

struct  RA288Context
 

Macros

#define BITSTREAM_READER_LE
 
#define MAX_BACKWARD_FILTER_ORDER   36
 
#define MAX_BACKWARD_FILTER_LEN   40
 
#define MAX_BACKWARD_FILTER_NONREC   35
 
#define RA288_BLOCK_SIZE   5
 
#define RA288_BLOCKS_PER_FRAME   32
 

Functions

static av_cold int ra288_decode_init (AVCodecContext *avctx)
 
static void convolve (float *tgt, const float *src, int len, int n)
 
static void decode (RA288Context *ractx, float gain, int cb_coef)
 
static void do_hybrid_window (RA288Context *ractx, int order, int n, int non_rec, float *out, float *hist, float *out2, const float *window)
 Hybrid window filtering, see blocks 36 and 49 of the G.728 specification. More...
 
static void backward_filter (RA288Context *ractx, float *hist, float *rec, const float *window, float *lpc, const float *tab, int order, int n, int non_rec, int move_size)
 Backward synthesis filter, find the LPC coefficients from past speech data. More...
 
static int ra288_decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
 

Variables

const FFCodec ff_ra_288_decoder
 

Macro Definition Documentation

◆ BITSTREAM_READER_LE

#define BITSTREAM_READER_LE

Definition at line 27 of file ra288.c.

◆ MAX_BACKWARD_FILTER_ORDER

#define MAX_BACKWARD_FILTER_ORDER   36

Definition at line 36 of file ra288.c.

◆ MAX_BACKWARD_FILTER_LEN

#define MAX_BACKWARD_FILTER_LEN   40

Definition at line 37 of file ra288.c.

◆ MAX_BACKWARD_FILTER_NONREC

#define MAX_BACKWARD_FILTER_NONREC   35

Definition at line 38 of file ra288.c.

◆ RA288_BLOCK_SIZE

#define RA288_BLOCK_SIZE   5

Definition at line 40 of file ra288.c.

◆ RA288_BLOCKS_PER_FRAME

#define RA288_BLOCKS_PER_FRAME   32

Definition at line 41 of file ra288.c.

Function Documentation

◆ ra288_decode_init()

static av_cold int ra288_decode_init ( AVCodecContext avctx)
static

Definition at line 66 of file ra288.c.

◆ convolve()

static void convolve ( float tgt,
const float src,
int  len,
int  n 
)
static

Definition at line 89 of file ra288.c.

Referenced by do_hybrid_window().

◆ decode()

static void decode ( RA288Context ractx,
float  gain,
int  cb_coef 
)
static

Definition at line 96 of file ra288.c.

Referenced by ra288_decode_frame().

◆ do_hybrid_window()

static void do_hybrid_window ( RA288Context ractx,
int  order,
int  n,
int  non_rec,
float out,
float hist,
float out2,
const float window 
)
static

Hybrid window filtering, see blocks 36 and 49 of the G.728 specification.

Parameters
orderfilter order
ninput length
non_recnumber of non-recursive samples
outfilter output
histpointer to the input history of the filter
outpointer to the non-recursive part of the output
out2pointer to the recursive part of the output
windowpointer to the windowing function table

Definition at line 145 of file ra288.c.

Referenced by backward_filter().

◆ backward_filter()

static void backward_filter ( RA288Context ractx,
float hist,
float rec,
const float window,
float lpc,
const float tab,
int  order,
int  n,
int  non_rec,
int  move_size 
)
static

Backward synthesis filter, find the LPC coefficients from past speech data.

Definition at line 175 of file ra288.c.

Referenced by ra288_decode_frame().

◆ ra288_decode_frame()

static int ra288_decode_frame ( AVCodecContext avctx,
AVFrame frame,
int got_frame_ptr,
AVPacket avpkt 
)
static

Definition at line 190 of file ra288.c.

Variable Documentation

◆ ff_ra_288_decoder

const FFCodec ff_ra_288_decoder
Initial value:
= {
.p.name = "real_288",
CODEC_LONG_NAME("RealAudio 2.0 (28.8K)"),
.p.type = AVMEDIA_TYPE_AUDIO,
.priv_data_size = sizeof(RA288Context),
}

Definition at line 240 of file ra288.c.

FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:287
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
ra288_decode_init
static av_cold int ra288_decode_init(AVCodecContext *avctx)
Definition: ra288.c:66
AV_CODEC_CAP_CHANNEL_CONF
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition: codec.h:106
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:365
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
RA288Context
Definition: ra288.c:43
AV_CODEC_ID_RA_288
@ AV_CODEC_ID_RA_288
Definition: codec_id.h:426
ra288_decode_frame
static int ra288_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Definition: ra288.c:190