comparison acelp_vectors.h @ 11052:00fcecde822b libavcodec

Add no_repeat_mask option, so that single-pulse vectors can also be expressed in a AMRFixed structure and handled by ff_set_fixed_vector().
author rbultje
date Fri, 29 Jan 2010 16:49:06 +0000
parents 2da0262d550b
children c2e19a511e26
comparison
equal deleted inserted replaced
11051:5d4991dd23de 11052:00fcecde822b
28 /** Sparse representation for the algebraic codebook (fixed) vector */ 28 /** Sparse representation for the algebraic codebook (fixed) vector */
29 typedef struct { 29 typedef struct {
30 int n; 30 int n;
31 int x[10]; 31 int x[10];
32 float y[10]; 32 float y[10];
33 int no_repeat_mask;
33 int pitch_lag; 34 int pitch_lag;
34 float pitch_fac; 35 float pitch_fac;
35 } AMRFixed; 36 } AMRFixed;
36 37
37 /** 38 /**