Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-07-19avcodec/dca: move bits per sample array to dca.cfoo86
It will be used by the parser. This change avoids unwanted parser dependency on dcadata. Signed-off-by: James Almer <jamrial@gmail.com>
2017-05-08avcodec/dcaenc: Initial implementation of ADPCM encoding for DCA encoderDaniil Cherednik
2017-01-15dcaenc: Implementation of Huffman codes for DCA encoderDaniil Cherednik
Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com>
2016-06-21Merge commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb'Clément Bœsch
* commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb': cosmetics: Fix spelling mistakes Merged-by: Clément Bœsch <u@pkh.me>
2016-05-26avcodec/dca: move EXSS sampling frequency arrays to dca.cfoo86
Avoids unwanted parser dependency on dcadata. Signed-off-by: James Almer <jamrial@gmail.com>
2016-05-21avcodec/dca: use LUT for LBR frequency rangesfoo86
Values for unsupported frequencies > 48000 Hz are still included (parser will make use of them). Also convert sampling frequencies array to unsigned. Signed-off-by: James Almer <jamrial@gmail.com>
2016-05-11avcodec/dca_lbr: explicitly initialize structs with zeroHendrik Leppkes
This fixes build on MSVC and conforms to the usual init style used.
2016-05-11avcodec/dca: add DTS Express (LBR) decoderfoo86
Signed-off-by: James Almer <jamrial@gmail.com>
2016-05-04cosmetics: Fix spelling mistakesVittorio Giovara
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2016-05-01avcodec/dca: move huffman data into separate object filefoo86
Signed-off-by: James Almer <jamrial@gmail.com>
2016-05-01avcodec/dcaenc: move channel reordering tables to dcaenc.hfoo86
DCA core decoder no longer uses fixed tables for channel reordering. Move them into private encoder header (and drop ff_dca_ prefix). Signed-off-by: James Almer <jamrial@gmail.com>
2016-01-31avcodec/dca: add more tablesfoo86
2016-01-31avcodec/dca: remove old decoderfoo86
Remove all files and functions which are not going to be reused, and disable all functions and FATE tests temporarily which will be.
2016-01-02avcodec/dca: remove unused float quant tableHendrik Leppkes
2016-01-02Merge commit '2008f76054906e9ff6bf744800af0e5a5bfe61be'Hendrik Leppkes
* commit '2008f76054906e9ff6bf744800af0e5a5bfe61be': dca: remove unused decode_hf function and quant_d tables Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-12-24dca: remove unused decode_hf function and quant_d tablesAlexandra Hájková
They were superseded with their integer equivalents. Rename integer decode_hf to decode_hf.
2015-03-16Merge commit '217e4ff4d1f845b76e44634e29371cd09313d1c2'Michael Niedermayer
* commit '217e4ff4d1f845b76e44634e29371cd09313d1c2': dca: Support for XLL (lossless extension) Conflicts: Changelog doc/general.texi libavcodec/Makefile libavcodec/dca.h libavcodec/dca_exss.c libavcodec/dcadata.h libavcodec/dcadec.c libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-15dca: Support for XLL (lossless extension)Niels Möller
Cleanup and integration by Diego Biurrun. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2015-03-12Merge commit '78c892284150e12f6b08b287bdf7e62307c6985f'Michael Niedermayer
* commit '78c892284150e12f6b08b287bdf7e62307c6985f': dca: Document the permuted order in the lfe_fir_64 and lfe_fir_128 tables Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-12dca: Document the permuted order in the lfe_fir_64 and lfe_fir_128 tablesNiels Möller
2015-02-20avcodec/dca: move remaining tables to dcadataMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-16Merge commit '3a651f599a18b023602370b67a77eb0efa309b20'Michael Niedermayer
* commit '3a651f599a18b023602370b67a77eb0efa309b20': dca: Move data tables from a header to an object file Conflicts: libavcodec/Makefile libavcodec/dcadata.h libavcodec/dcadec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-16dca: Move data tables from a header to an object fileDiego Biurrun
This allows sharing them with the DCA XLL extension w/o duplication.