aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Expand)AuthorAgeFilesLines
* avoid overflow in the 3rd lifting step, this now needs mmx2 at minimumMichael Niedermayer2007-08-262-30/+77
* avoid an overflow in the 1 horizontal lifting stepMichael Niedermayer2007-08-251-12/+12
* prevent one overflow in the first vertical lifting stepMichael Niedermayer2007-08-251-6/+6
* update mmx code to latest snow changesMichael Niedermayer2007-08-252-238/+210
* prettyprinting cosmeticsDiego Biurrun2007-08-251-60/+60
* cleanup (remove some old experimentation related code)Michael Niedermayer2007-08-252-304/+2
* we only have 2 wavelets, the 3rd was just for experimentation ...Michael Niedermayer2007-08-251-1/+1
* use 16bit IDWT (a SIMD implementation of it should be >2x faster then withMichael Niedermayer2007-08-254-137/+200
* whitespace/indentation cosmeticsDiego Biurrun2007-08-241-112/+112
* Remove HAVE_ALTIVEC preprocessor directives that are only compiledDiego Biurrun2007-08-242-12/+0
* Fix trivial mixed declarations and code warning caused by a double semicolon.Diego Biurrun2007-08-241-1/+1
* Remove SYS_DARWIN preprocessor directive that is just a duplicate of aDiego Biurrun2007-08-241-6/+0
* Replace SYS_DARWIN by the more correct __APPLE_CC__, these preprocessorDiego Biurrun2007-08-241-1/+1
* Merge __MWERKS__ preprocessor directives.Diego Biurrun2007-08-241-3/+1
* Move Apple gcc AltiVec vector declaration syntax to libavutil.Diego Biurrun2007-08-241-5/+1
* Replace SYS_DARWIN by the more correct __APPLE_CC__, these preprocessorDiego Biurrun2007-08-242-2/+2
* int->uint8_tMichael Niedermayer2007-08-241-6/+6
* int->int8_t (no need for them to be int ...)Michael Niedermayer2007-08-241-2/+2
* Add request_channels member to AVCodecContext so we now have a properReimar Döffinger2007-08-233-2/+11
* use more bits on the encoder sideMichael Niedermayer2007-08-231-1/+8
* Initialize the "stc" variable before using it in ff_find_start_code()Luca Abeni2007-08-231-1/+1
* Rename CONFIG_DARWIN to SYS_DARWIN, it is not configurable (in FFmpeg).Diego Biurrun2007-08-225-11/+11
* simplifyMichael Niedermayer2007-08-221-1/+1
* right filename in doxygen commentBenoit Fouet2007-08-221-1/+1
* cosmetics: alphabetical orderDiego Biurrun2007-08-221-3/+3
* Simplify preprocessor directives.Diego Biurrun2007-08-221-4/+2
* make clean bfinMarc Hoffman2007-08-221-0/+1
* Identifiers starting with underscores are reserved.Diego Biurrun2007-08-223-9/+9
* parsers and bsfs declarations are not meant to be part of public APIAurelien Jacobs2007-08-212-24/+26
* Change rounding of the horizontal DWT to match the vertical one.Michael Niedermayer2007-08-213-35/+25
* asv1.c directly uses Put/GetBitContext, so it should include bitstream.hAurelien Jacobs2007-08-211-0/+1
* remove code which become unused by the previous changesMichael Niedermayer2007-08-211-9/+0
* Simplify and optimize the 4th vertical lifting step of the SSE2 code (untested)Michael Niedermayer2007-08-211-2/+1
* Simplify and optimize the 4th vertical lifting step of the MMX codeMichael Niedermayer2007-08-211-2/+1
* Simplify and speedup code, reduce needed headroom by 2 bits in the 3rdMichael Niedermayer2007-08-201-5/+4
* simplify, speedup and reduce needed headroom by 2 bits in the 3rdMichael Niedermayer2007-08-201-5/+4
* replace <<1 by add for SSE2 (untested)Michael Niedermayer2007-08-201-2/+2
* replace <<1 by addMichael Niedermayer2007-08-201-2/+2
* slightly change horizontal lift3 so it needs 1 bit less headroomMichael Niedermayer2007-08-201-6/+6
* remove idiotc double subtraction from the sse2 code (untested, no sse2 here)Michael Niedermayer2007-08-201-18/+15
* fixme noteMichael Niedermayer2007-08-201-1/+1
* and of course the unneeded double subtractions were blindly put in theMichael Niedermayer2007-08-201-18/+15
* more stupid double subtractionsMichael Niedermayer2007-08-201-2/+2
* get rid of idiotc double subtractionMichael Niedermayer2007-08-201-2/+2
* Cosmetics, indentation.Benjamin Larsson2007-08-191-4/+4
* Trellis quantization support for adpcm_swf.Benjamin Larsson2007-08-191-2/+16
* Use defines instead of raw hex numbers to specify CRC polynomialsReimar Döffinger2007-08-191-3/+3
* CONFIG_7REGS -> HAVE_7REGSRamiro Polla2007-08-152-6/+6
* Make the Golomb decoder work for DiracMarco Gerards2007-08-152-11/+50
* Statements like a = b = c = d = e; store from right-to-left, so ifAlexander Strange2007-08-141-28/+28