summaryrefslogtreecommitdiff
path: root/libavcodec/g729postfilter.h
Commit message (Collapse)AuthorAge
* fix "@param foo[in/out]" to "@param[in, out] foo"Andrew Sayers2024-03-04
| | | | | | | | | | | | | | Fix a few invalid doxygen comments: /** * @param[in,out] correctly_formatted * @param incorrect1[in] - [in] must come immediately after @param * @param incorrect2[in/out] - '/' must be ',' */ Actual command: sed -i -e "s/\(\* .*param\)\( [^\[]*\)\(\[.*\]\)/\1\3\2/g" -e "s/in\//in,/" $( git grep -l "\* .*param .*\[\(in\|out\)" ) Signed-off-by: Andrew Sayers <ffmpeg-devel@pileofstuff.org>
* avcodec/g729postfilter.h: Include acelp_pitch_delay.hAndreas Rheinhardt2021-07-22
| | | | | | Needed for PITCH_DELAY_MAX. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* all: Make header guard names consistentTimothy Gu2016-01-31
|
* Merge commit '9a9e2f1c8aa4539a261625145e5c1f46a8106ac2'Michael Niedermayer2014-06-22
| | | | | | | | | | | | | | | | * commit '9a9e2f1c8aa4539a261625145e5c1f46a8106ac2': dsputil: Split audio operations off into a separate context Conflicts: configure libavcodec/takdec.c libavcodec/x86/Makefile libavcodec/x86/dsputil.asm libavcodec/x86/dsputil_init.c libavcodec/x86/dsputil_mmx.c libavcodec/x86/dsputil_x86.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
* lavc/g729postfilter: fix make checkheaders.Clément Bœsch2012-05-18
|
* g729dec: Fix warnings:Vitor Sessak2011-09-25
| | | | | | | | libavcodec/g729dec.c: In function ‘decode_frame’: libavcodec/g729dec.c:662: warning: passing argument 3 of ‘ff_g729_postfilter’ from incompatible pointer type libavcodec/g729postfilter.h:96: note: expected ‘int16_t *’ but argument is of type ‘int *’ Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* g729dec: Add ff_ prefix to g729_postfilter() and g729_adaptive_gain_control()Vitor Sessak2011-09-25
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Adaptive gain controlVladimir Voroshilov2011-09-24
|
* G.729 postfilterVladimir Voroshilov2011-09-24