summaryrefslogtreecommitdiff
path: root/libavcodec/dcamath.h
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2017-02-20 23:22:51 +0000
committerRostislav Pehlivanov <atomnuker@gmail.com>2017-05-08 05:56:14 +0100
commitb8c2b9c39279171f647d9c81f34ffa3d3ae93c47 (patch)
treefc50e13f8009274c05ab06eeeb80757b6dc10a94 /libavcodec/dcamath.h
parent5f928c5201c077b9765610bc5304235c3f1d9bd6 (diff)
avcodec/dcaenc: Initial implementation of ADPCM encoding for DCA encoder
Diffstat (limited to 'libavcodec/dcamath.h')
-rw-r--r--libavcodec/dcamath.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dcamath.h b/libavcodec/dcamath.h
index e0d6f4fdaa..38fa9a6235 100644
--- a/libavcodec/dcamath.h
+++ b/libavcodec/dcamath.h
@@ -49,6 +49,7 @@ static inline int32_t mul17(int32_t a, int32_t b) { return mul__(a, b, 17); }
static inline int32_t mul22(int32_t a, int32_t b) { return mul__(a, b, 22); }
static inline int32_t mul23(int32_t a, int32_t b) { return mul__(a, b, 23); }
static inline int32_t mul31(int32_t a, int32_t b) { return mul__(a, b, 31); }
+static inline int32_t mul32(int32_t a, int32_t b) { return mul__(a, b, 32); }
static inline int32_t clip23(int32_t a) { return av_clip_intp2(a, 23); }