summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.c
Commit message (Expand)AuthorAge
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
* Remove final semicolon from some macrosMans Rullgard2011-02-10
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
* adpcm: Skip samples whose ssd calculation has wrapped aroundMartin Storsjö2010-12-01
* adpcm: Fix a comment in the trellis heap codeMartin Storsjö2010-11-20
* adpcm: Only increment heap_pos after finding a good enough sampleMartin Storsjö2010-11-19
* adpcm: Use a hash table to improve checking for duplicate samplesMartin Storsjö2010-11-19
* adpcm: Fix a commentMartin Storsjö2010-11-14
* adpcm: Replace any of the leaf nodes in the heapMartin Storsjö2010-11-12
* ReindentMartin Storsjö2010-11-12
* adpcm: Store the trellis nodes in a heap instead of a sorted arrayMartin Storsjö2010-11-12
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
* Flush the PutBitsContext at the end of each block when encoding ADPCM IMA QTMartin Storsjö2010-08-26
* Only 4-bit ADPCM IMA WAV files are supported.Carl Eugen Hoyos2010-07-25
* adpcm: convert VLAs to malloc/freeMåns Rullgård2010-06-27
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
* Revert Revision: 21362Michael Niedermayer2010-01-27
* Set CODEC_CAP_SUBFRAMES for adpcm decodersMåns Rullgård2010-01-21
* Build extradata in adpcm_ms encoder.Daniel Verkamp2009-10-22
* Indicate that AdaptCoeff1 and 2 are functions of the actual coefficients.Daniel Verkamp2009-10-22
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-06
* ADPCM: remove unreachable break statement after returnMåns Rullgård2009-07-01
* Fix indentation after last commit.Carl Eugen Hoyos2009-06-20
* Fix yamaha adpcm stereo (issue 1117).Yoshihisa Uchida2009-06-20
* Check if there is enough bytes before reading the buffer in the EA ADPCMVitor Sessak2009-04-27
* Skip 0x0000 frame footer in EA ADPCM decoder.Vitor Sessak2009-04-27
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-12
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
* cosmetics: Reformat long_names so that "ADPCM" comes first.Diego Biurrun2009-03-02
* Change a bunch of codec long_names to be more consistent and descriptive.Diego Biurrun2009-03-02
* Add missing av_cold in static init/close functions.Daniel Verkamp2009-02-22
* check validity of pointer srcCStefan Gehrer2009-02-03
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
* remove duplicate tablesStefan Gehrer2009-01-30
* avoid indeterminate order of accessing srcStefan Gehrer2009-01-30
* added demuxer for FunCom ISS audio files,Stefan Gehrer2009-01-17
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-31
* bitstream: move put_sbits() from flacenc.c to bitstream.h and use itRamiro Polla2008-07-13
* clip MS ADPCM predictor range to correct [0..6] range, not [0..7]Reimar Döffinger2008-07-13
* Use bytestream and AV_RL* functions in ADPCM code where possibleReimar Döffinger2008-07-13
* Fix MS ADPCM de- and encoding: first and second sample are swapped.Reimar Döffinger2008-07-13
* 100l, fix MS ADPCM decoding for e.g. http://samples.mplayerhq.hu/mov/qtaudio/...Reimar Döffinger2008-07-12
* 10l, forgot to replace a / 256 for r14173.Reimar Döffinger2008-07-12
* Change MS ADPCM table so they fit into int8_t and change array type.Reimar Döffinger2008-07-11
* Add a note to remind people that new PCM/ADPCM formats need to be added toDiego Biurrun2008-07-05
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
* Prevent 128*1<<trellis from becoming 0 and creating 0 sized arrays.Michael Niedermayer2008-05-28