| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove/replace some unnecessary avcodec.h inclusions | Andreas Rheinhardt | 2021-07-22 | 1 | -1/+2 |
* | avcodec/g723_1: Deduplicate arrays | Andreas Rheinhardt | 2021-01-08 | 1 | -14/+1085 |
* | avcodec/g723_1: Fix runtime error: signed integer overflow: -1013481472 + -11... | Michael Niedermayer | 2017-05-23 | 1 | -2/+2 |
* | avcodec/g723_1: Fix multiple runtime error: left shift of negative value | Michael Niedermayer | 2017-05-06 | 1 | -9/+9 |
* | Merge commit 'f023d57d355ff3b917f1aad9b03db5c293ec4244' | Hendrik Leppkes | 2015-12-07 | 1 | -1/+1 |
|\ |
|
| * | lavc: G.723.1 encoder | Mohamed Naufal | 2015-11-30 | 1 | -7/+2 |
* | | Merge commit '165cc6fb9defcd79fd71c08167f3e8df26b058ff' | Hendrik Leppkes | 2015-12-07 | 1 | -0/+261 |
|\| |
|
| * | g723_1: Move sharable functions to a separate file | Vittorio Giovara | 2015-11-30 | 1 | -0/+267 |
|/ |
|
* | g723_1: Rename files to better reflect their purpose | Vittorio Giovara | 2015-11-30 | 1 | -1378/+0 |
* | g723_1: Handle values at the ends of the table in lsp2lpc() | Michael Niedermayer | 2015-11-30 | 1 | -1/+1 |
* | lavc: AV-prefix all codec capabilities | Vittorio Giovara | 2015-07-27 | 1 | -1/+1 |
* | avcodec: Don't anonymously typedef structs | Diego Biurrun | 2015-02-14 | 1 | -2/+2 |
* | cosmetics: Group .name and .long_name together in codec/format declarations | Diego Biurrun | 2013-10-03 | 1 | -1/+1 |
* | lavc decoders: work with refcounted frames. | Anton Khirnov | 2013-03-08 | 1 | -1/+1 |
* | g723.1: decode directly to the user-provided AVFrame | Justin Ruggles | 2013-02-12 | 1 | -10/+6 |
* | lavc: add a wrapper for AVCodecContext.get_buffer(). | Anton Khirnov | 2012-12-04 | 1 | -1/+2 |
* | Include libavutil/channel_layout.h instead of libavutil/audioconvert.h | Justin Ruggles | 2012-11-11 | 1 | -1/+1 |
* | avutil: Move memcpy_backptr() to mem.c | Diego Biurrun | 2012-10-25 | 1 | -1/+1 |
* | g.723.1: add missing CODEC_CAP_DR1 | Anton Khirnov | 2012-10-24 | 1 | -1/+1 |
* | avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union member | Martin Storsjö | 2012-09-04 | 1 | -1/+1 |
* | g723_1: add comfort noise generation | Kostya Shishkov | 2012-08-30 | 1 | -7/+219 |
* | g723.1: simplify scale_vector() | Mans Rullgard | 2012-08-14 | 1 | -6/+2 |
* | g723.1: simplify normalize_bits() | Mans Rullgard | 2012-08-14 | 1 | -7/+0 |
* | g723.1: do not pass large structs by value | Mans Rullgard | 2012-08-13 | 1 | -21/+21 |
* | g723.1: do not bounce intermediate values via memory | Mans Rullgard | 2012-08-13 | 1 | -3/+2 |
* | g723.1: declare a variable in the block it is used | Mans Rullgard | 2012-08-13 | 1 | -2/+2 |
* | g723.1: avoid saving/restoring excitation | Mans Rullgard | 2012-08-13 | 1 | -16/+11 |
* | g723.1: avoid unnecessary memcpy() in residual_interp() | Mans Rullgard | 2012-08-13 | 1 | -8/+15 |
* | g723.1: make postfilter write directly to output buffer | Mans Rullgard | 2012-08-13 | 1 | -11/+11 |
* | g723.1: drop unnecessary variable buf_ptr in formant_postfilter() | Mans Rullgard | 2012-08-13 | 1 | -7/+7 |
* | g723.1: make scale_vector() output to a separate buffer | Mans Rullgard | 2012-08-13 | 1 | -7/+6 |
* | g723.1: make autocorr_max() work on an arbitrary buffer | Mans Rullgard | 2012-08-13 | 1 | -6/+5 |
* | g723.1: do not needlessly use int64_t | Mans Rullgard | 2012-08-13 | 1 | -1/+1 |
* | g723.1: use saturating addition functions | Mans Rullgard | 2012-08-13 | 1 | -15/+14 |
* | g723.1: optimise scale_vector() | Mans Rullgard | 2012-08-13 | 1 | -5/+7 |
* | g723.1: remove useless uses of MUL64() | Mans Rullgard | 2012-08-13 | 1 | -4/+4 |
* | g723.1: remove unnecessary argument 'shift' from dot_product() | Mans Rullgard | 2012-08-13 | 1 | -15/+11 |
* | g723.1: deobfuscate "(x << 4) - x" to "15 * x" | Mans Rullgard | 2012-08-13 | 1 | -1/+1 |
* | g723.1: fix addition overflow | Mans Rullgard | 2012-08-10 | 1 | -1/+1 |
* | g723.1: simplify and fix multiplication overflow | Mans Rullgard | 2012-08-10 | 1 | -2/+2 |
* | g723.1: deobfuscate an expression | Mans Rullgard | 2012-08-10 | 1 | -2/+1 |
* | g723.1: remove unused #includes | Mans Rullgard | 2012-08-10 | 1 | -2/+0 |
* | g723_1: clip argument for 15-bit version of normalize_bits() | Kostya Shishkov | 2012-08-08 | 1 | -0/+1 |
* | g723_1: use all LPC vectors in formant postfilter | Kostya Shishkov | 2012-08-08 | 1 | -0/+1 |
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -1/+1 |
* | g723_1: scale output as supposed for the case with postfilter disabled | Kostya Shishkov | 2012-08-03 | 1 | -4/+10 |
* | g723_1: increase excitation storage by 4 | Kostya Shishkov | 2012-08-03 | 1 | -1/+1 |
* | g723_1: fix upper bound parameter from inverse maximum autocorrelation | Kostya Shishkov | 2012-08-03 | 1 | -1/+4 |
* | g723_1: make scale_vector() behave like the reference | Kostya Shishkov | 2012-08-03 | 1 | -2/+3 |
* | g723_1: fix off-by-one error in normalize_bits() | Kostya Shishkov | 2012-08-03 | 1 | -1/+1 |