diff options
author | Justin Ruggles | 2011-02-13 14:49:50 -0500 |
---|---|---|
committer | Ronald S. Bultje | 2011-02-13 16:49:39 -0500 |
commit | fbb6b49dabc3398440c6dfa838aa090a7a6ebc0d (patch) | |
tree | 050f0baf5915823f816682340bde83417541854c /libavcodec/ac3dsp.h | |
parent | 1a973feb45826a1998b4286ecfe1fa7a602b8780 (diff) |
ac3enc: Add x86-optimized function to speed up log2_tab().
AC3DSPContext.ac3_max_msb_abs_int16() finds the maximum MSB of the absolute
value of each element in an array of int16_t.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavcodec/ac3dsp.h')
-rw-r--r-- | libavcodec/ac3dsp.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libavcodec/ac3dsp.h b/libavcodec/ac3dsp.h index 7f13b11f3b..a4f141f2f5 100644 --- a/libavcodec/ac3dsp.h +++ b/libavcodec/ac3dsp.h @@ -35,6 +35,17 @@ typedef struct AC3DSPContext { * @param nb_coefs number of frequency coefficients. */ void (*ac3_exponent_min)(uint8_t *exp, int num_reuse_blocks, int nb_coefs); + + /** + * Calculate the maximum MSB of the absolute value of each element in an + * array of int16_t. + * @param src input array + * constraints: align 16. values must be in range [-32767,32767] + * @param len number of values in the array + * constraints: multiple of 16 greater than 0 + * @return a value with the same MSB as max(abs(src[])) + */ + int (*ac3_max_msb_abs_int16)(const int16_t *src, int len); } AC3DSPContext; void ff_ac3dsp_init (AC3DSPContext *c); |