summaryrefslogtreecommitdiff
path: root/libavcodec/gsmdec_data.c
Commit message (Collapse)AuthorAge
* Merge commit '81f769fa129edc51c28285649c2df6da717e718f'Clément Bœsch2016-06-29
|\ | | | | | | | | | | | | * commit '81f769fa129edc51c28285649c2df6da717e718f': gsm: Move requant_tab table to the gsm tables file Merged-by: Clément Bœsch <clement@stupeflix.com>
| * gsm: Move requant_tab table to the gsm tables fileDiego Biurrun2016-06-07
| | | | | | | | | | This avoids duplicating the table in the gsm template file. Also adjust the table type to uint8_t to save space.
* | Merge commit 'a16577d9857206089fd8bce6a342b31dbd7fb9b0'Michael Niedermayer2013-11-26
|\| | | | | | | | | | | | | | | | | | | * commit 'a16577d9857206089fd8bce6a342b31dbd7fb9b0': MSN Audio support Conflicts: libavformat/riff.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * MSN Audio supportKostya Shishkov2013-11-26
| | | | | | | | | | | | | | This is essentially a MS GSM decoder extension that supports more sampling rates and lower bitrates. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
|/ | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Fix GSM decoding: regular GSM and MSGSM do not use the sameReimar Döffinger2010-10-02
bitstream endianness, so they cannot reuse the same code without a lot of function call overhead. Thus use templating to compile two different binaries. Originally committed as revision 25312 to svn://svn.ffmpeg.org/ffmpeg/trunk