diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-05-01 10:46:20 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-05-01 10:49:12 +0200 |
commit | 8f4358888f373e21a47e079ce1ac3fc3a13f82cc (patch) | |
tree | 405681cfc86f816665490aeb41c0210628149cbc /libavcodec/lossless_audiodsp.h | |
parent | b286ff69c03e648453fd161f8ff1c4fcce396fa8 (diff) | |
download | ffmpeg-8f4358888f373e21a47e079ce1ac3fc3a13f82cc.tar.gz |
avcodec/wmalosslessdec: fix type for coeffs and lms_updates in cdlms struct
They should really be int16_t.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/lossless_audiodsp.h')
-rw-r--r-- | libavcodec/lossless_audiodsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/lossless_audiodsp.h b/libavcodec/lossless_audiodsp.h index 930fe30c59..eea5d49fa9 100644 --- a/libavcodec/lossless_audiodsp.h +++ b/libavcodec/lossless_audiodsp.h @@ -37,9 +37,9 @@ typedef struct LLAudDSPContext { const int16_t *v3, int len, int mul); - int32_t (*scalarproduct_and_madd_int32)(int32_t *v1 /* align 16 */, + int32_t (*scalarproduct_and_madd_int32)(int16_t *v1 /* align 16 */, const int32_t *v2, - const int32_t *v3, + const int16_t *v3, int len, int mul); } LLAudDSPContext; |