diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-12-07 15:50:45 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-12-07 15:50:45 +0100 |
commit | 90c93fb12948f0b00720df91961a09e187703060 (patch) | |
tree | 6da306f52459e1178c7d75c058b0389b49db6d89 /libavcodec/g723_1.c | |
parent | 6c9cc21bcca952ca86a6cf08376afa9f3b7a2034 (diff) | |
parent | f023d57d355ff3b917f1aad9b03db5c293ec4244 (diff) | |
download | ffmpeg-90c93fb12948f0b00720df91961a09e187703060.tar.gz |
Merge commit 'f023d57d355ff3b917f1aad9b03db5c293ec4244'
* commit 'f023d57d355ff3b917f1aad9b03db5c293ec4244':
lavc: G.723.1 encoder
Split existing FFmpeg G.723.1 encoder into a new file.
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavcodec/g723_1.c')
-rw-r--r-- | libavcodec/g723_1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c index 71f3514a02..a11fec8a9e 100644 --- a/libavcodec/g723_1.c +++ b/libavcodec/g723_1.c @@ -53,7 +53,7 @@ int ff_g723_1_normalize_bits(int num, int width) int ff_g723_1_dot_product(const int16_t *a, const int16_t *b, int length) { - int sum = ff_dot_product(a,b,length); + int sum = ff_dot_product(a, b, length); return av_sat_add32(sum, sum); } |