diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-01-29 16:49:06 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-01-29 16:49:06 +0000 |
commit | 5e4e9042c4e11bcf4fd1734f17e0379eab422e41 (patch) | |
tree | 49f0c79ec1beb7d25c95794847b18ef7bbfcc8ec /libavcodec/acelp_vectors.h | |
parent | 4a27f326c538ffcbb484aca67e4120b03091a85a (diff) | |
download | ffmpeg-5e4e9042c4e11bcf4fd1734f17e0379eab422e41.tar.gz |
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.h | 1 |
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; |