Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2010-01-29 19:49:06 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2010-01-29 19:49:06 +0300
commit5e4e9042c4e11bcf4fd1734f17e0379eab422e41 (patch)
tree49f0c79ec1beb7d25c95794847b18ef7bbfcc8ec /libavcodec/acelp_vectors.h
parent4a27f326c538ffcbb484aca67e4120b03091a85a (diff)
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(). Originally committed as revision 21528 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/acelp_vectors.h')
-rw-r--r--libavcodec/acelp_vectors.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/acelp_vectors.h b/libavcodec/acelp_vectors.h
index 3a72ef91e7..2cc5f36649 100644
--- a/libavcodec/acelp_vectors.h
+++ b/libavcodec/acelp_vectors.h
@@ -30,6 +30,7 @@ typedef struct {
int n;
int x[10];
float y[10];
+ int no_repeat_mask;
int pitch_lag;
float pitch_fac;
} AMRFixed;