summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.c
Commit message (Collapse)AuthorAge
* more usage of av_clip()Aurelien Jacobs2007-08-11
| | | | Originally committed as revision 10082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* one more simplificationAurelien Jacobs2007-08-11
| | | | Originally committed as revision 10081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* various simplifications around recent av_clip_int16() usageAurelien Jacobs2007-08-11
| | | | Originally committed as revision 10080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_clip_int16() where it makes senseAurelien Jacobs2007-08-11
| | | | Originally committed as revision 10078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't encode the first sample twice.Benjamin Larsson2007-08-06
| | | | Originally committed as revision 9962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic, indentationBaptiste Coudurier2007-08-06
| | | | Originally committed as revision 9960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix decoding of adpcm swf big frames, fix RamboMJPEGAVP6_1Mbps.swfBaptiste Coudurier2007-08-05
| | | | Originally committed as revision 9946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set the step index correctly for flash adpcm. Patch by BaptisteBaptiste Coudurier2007-07-18
| | | | | | Coudurier. Originally committed as revision 9743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate the correct blocksize for flash adpcm. Patch by BaptisteBaptiste Coudurier2007-07-18
| | | | | | Coudurier. Originally committed as revision 9742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_xx throughout libavcodecRamiro Polla2007-06-02
| | | | Originally committed as revision 9169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Per reference swf/flv adpcm encoder.Benjamin Larsson2007-04-11
| | | | Originally committed as revision 8713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix an underflow/overflow that was causing some crackles when playingMarco Gerards2007-04-10
| | | | | | | certain THP files. patch by Marco Gerards, mgerards xs4all nl Originally committed as revision 8703 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentation fixMarco Gerards2007-04-08
| | | | | | patch by Marco Gerards, mgerards xs4all nl Originally committed as revision 8680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use bytestream reader instead of bitstream for THPMichael Niedermayer2007-04-07
| | | | | | | 5% smaller adpcm.o 20% faster Originally committed as revision 8657 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CRYO APC demuxerAnssi Hannula2007-04-07
| | | | | | patch by Anssi Hannula, anssi.hannula gmail com Originally committed as revision 8656 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-04-07
| | | | Originally committed as revision 8655 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prev1/2 -> prev[2]Michael Niedermayer2007-04-07
| | | | Originally committed as revision 8654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-04-07
| | | | Originally committed as revision 8653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* general purpose vars should be intMichael Niedermayer2007-04-07
| | | | Originally committed as revision 8652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* table[index][ch] -> table[ch][index] (might be faster ...)Michael Niedermayer2007-04-07
| | | | Originally committed as revision 8651 to svn://svn.ffmpeg.org/ffmpeg/trunk
* THP PCM decoder, used on the Nintendo GameCube.Marco Gerards2007-04-07
| | | | | | patch by Marco Gerards, mgerards xs4all nl Originally committed as revision 8646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix adpcm swf decodingBaptiste Coudurier2007-03-02
| | | | Originally committed as revision 8186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to clip functionsReimar Döffinger2007-02-25
| | | | Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FIXMEMichael Niedermayer2007-02-02
| | | | Originally committed as revision 7804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some (probably exploitable) out of array write fixesMichael Niedermayer2007-02-02
| | | | Originally committed as revision 7802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-19
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make the adx adpcm codec availableMåns Rullgård2006-07-08
| | | | Originally committed as revision 5679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ADPCM: trellis quantizationLoren Merritt2006-06-03
| | | | Originally committed as revision 5451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adpcm_ima & adpcm_yamaha: improved quantizationLoren Merritt2006-06-03
| | | | Originally committed as revision 5449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup IMA-ADPCM WAV decoderMichael Niedermayer2006-03-02
| | | | Originally committed as revision 5095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add Creative 8 bits ADPCM schemes supportAurelien Jacobs2006-02-16
| | | | Originally committed as revision 5024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-22
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yamaha adpcm nibbles in the wrong order fix by (Vidar Madsen: vidarino, ↵Michael Niedermayer2005-07-16
| | | | | | gmail com) Originally committed as revision 4446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Yamaha ADPCM encoding/decoding patch by (Vidar Madsen: vidarino, gmail com)Vidar Madsen2005-07-15
| | | | Originally committed as revision 4442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adding a few constMichael Niedermayer2005-06-01
| | | | Originally committed as revision 4337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* macromedia flavour adpcm decoding (used in flv and swf)Alex Beregszaszi2005-02-21
| | | | Originally committed as revision 3969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Creative ADPCM decoder, format 0x200, courtesy of Konstantin ShishkovMike Melanson2004-10-12
| | | | Originally committed as revision 3589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* data_size = 0 cleanupMichael Niedermayer2004-05-21
| | | | Originally committed as revision 3146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->Mike Melanson2004-03-14
| | | | | | MKTAG/MKBETAG Originally committed as revision 2886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* M$ ADPCM encoding & some simplificationsMichael Niedermayer2004-02-08
| | | | Originally committed as revision 2765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added support for EA ADPCM and SMJPEG IMA ADPCMMike Melanson2004-02-03
| | | | Originally committed as revision 2744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* handle 0-length buffersMike Melanson2004-01-31
| | | | Originally committed as revision 2732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2004-01-10
| | | | Originally committed as revision 2684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initial predictors are not sent to the output in QT IMA; fix stereo QTMike Melanson2003-12-16
| | | | | | IMA decoding Originally committed as revision 2618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* comment fixFabrice Bellard2003-11-10
| | | | Originally committed as revision 2490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux2003-11-03
| | | | Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk