#include "get_bits.h"
#include "gsm.h"
#include "gsmdec_data.h"
Go to the source code of this file.
Functions | |
static void | apcm_dequant_add (GetBitContext *gb, int16_t *dst) |
static int | gsm_mult (int a, int b) |
static void | long_term_synth (int16_t *dst, int lag, int gain_idx) |
static int | decode_log_area (int coded, int factor, int offset) |
static av_noinline int | get_rrp (int filtered) |
static int | filter_value (int in, int rrp[8], int v[9]) |
static void | short_term_synth (GSMContext *ctx, int16_t *dst, const int16_t *src) |
static int | postprocess (int16_t *data, int msr) |
static int | gsm_decode_block (AVCodecContext *avctx, int16_t *samples, GetBitContext *gb) |
Definition in file gsmdec_template.c.
static void apcm_dequant_add | ( | GetBitContext * | gb, | |
int16_t * | dst | |||
) | [static] |
static int decode_log_area | ( | int | coded, | |
int | factor, | |||
int | offset | |||
) | [inline, static] |
static int filter_value | ( | int | in, | |
int | rrp[8], | |||
int | v[9] | |||
) | [static] |
Definition at line 70 of file gsmdec_template.c.
Referenced by ff_vp3_h_loop_filter_c(), ff_vp3_v_loop_filter_c(), and short_term_synth().
static av_noinline int get_rrp | ( | int | filtered | ) | [static] |
static int gsm_decode_block | ( | AVCodecContext * | avctx, | |
int16_t * | samples, | |||
GetBitContext * | gb | |||
) | [static] |
Definition at line 120 of file gsmdec_template.c.
Referenced by ff_msgsm_decode_block(), and gsm_decode_frame().
static int gsm_mult | ( | int | a, | |
int | b | |||
) | [inline, static] |
Definition at line 40 of file gsmdec_template.c.
Referenced by decode_log_area(), filter_value(), long_term_synth(), and postprocess().
static void long_term_synth | ( | int16_t * | dst, | |
int | lag, | |||
int | gain_idx | |||
) | [static] |
static int postprocess | ( | int16_t * | data, | |
int | msr | |||
) | [static] |
static void short_term_synth | ( | GSMContext * | ctx, | |
int16_t * | dst, | |||
const int16_t * | src | |||
) | [static] |