aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil
Commit message (Collapse)AuthorAgeFilesLines
...
* Replace deprecated PIX_FMT names by the newer variants.Diego Biurrun2007-02-071-11/+2
| | | | Originally committed as revision 7867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify and remove useless index in AV_W*Michael Niedermayer2007-02-061-18/+18
| | | | Originally committed as revision 7852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move lzo decompression to libavutilReimar Döffinger2007-01-314-3/+312
| | | | Originally committed as revision 7789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase the av_log() levels, and add some documentation for themLuca Abeni2007-01-211-0/+39
| | | | Originally committed as revision 7614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)Alex Beregszaszi2007-01-192-8/+31
| | | | Originally committed as revision 7588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-191-5/+5
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change while loops to do-while as the condition is true the first time and ↵Michael Niedermayer2007-01-181-4/+4
| | | | | | the check just wastes cpu cycles Originally committed as revision 7576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simpler branch structure in init (16 bytes smaller object file)Michael Niedermayer2007-01-171-1/+1
| | | | Originally committed as revision 7575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* doxygenizeMichael Niedermayer2007-01-171-2/+2
| | | | Originally committed as revision 7574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid code duplicationMichael Niedermayer2007-01-171-3/+1
| | | | Originally committed as revision 7573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better to set things to NULL instead of random in case of out of memMichael Niedermayer2007-01-171-1/+1
| | | | Originally committed as revision 7572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify av_fifo_realloc()Michael Niedermayer2007-01-171-11/+7
| | | | Originally committed as revision 7571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove near duplicate functionMichael Niedermayer2007-01-171-15/+6
| | | | Originally committed as revision 7570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-171-8/+3
| | | | Originally committed as revision 7569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-171-5/+2
| | | | Originally committed as revision 7568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l (aes_crypt -> av_aes_crypt)Michael Niedermayer2007-01-172-5/+5
| | | | Originally committed as revision 7559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix CONFIG_SMALL againMichael Niedermayer2007-01-161-18/+8
| | | | Originally committed as revision 7554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 30byte smaller object fileMichael Niedermayer2007-01-161-3/+3
| | | | Originally committed as revision 7553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l typoMichael Niedermayer2007-01-161-1/+1
| | | | Originally committed as revision 7552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* public APIMichael Niedermayer2007-01-161-0/+10
| | | | Originally committed as revision 7551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cbc supportMichael Niedermayer2007-01-161-12/+23
| | | | Originally committed as revision 7550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid memcpy()Michael Niedermayer2007-01-161-4/+3
| | | | Originally committed as revision 7549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give crypt a src and dstMichael Niedermayer2007-01-161-23/+21
| | | | | | same speed, 100bytes larger object file Originally committed as revision 7548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change subshift a little, this reduces the object size a litlleMichael Niedermayer2007-01-161-5/+7
| | | | Originally committed as revision 7546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use 2 state arrays so that fewer temporary variables are neededMichael Niedermayer2007-01-161-33/+32
| | | | Originally committed as revision 7545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless parameterMichael Niedermayer2007-01-161-4/+4
| | | | Originally committed as revision 7544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unused variableMichael Niedermayer2007-01-161-1/+1
| | | | Originally committed as revision 7543 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge shift into mixMichael Niedermayer2007-01-151-20/+28
| | | | | | this need -fno-strict-aliasing to work (needs to be fixed of course) Originally committed as revision 7534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make aes_en/decrypt() static until we decided on the public APIMichael Niedermayer2007-01-151-5/+5
| | | | Originally committed as revision 7533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move #include log.h into the selftesting code where it belongsMichael Niedermayer2007-01-151-1/+1
| | | | Originally committed as revision 7529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove dependancy on *malloc()Michael Niedermayer2007-01-152-21/+24
| | | | Originally committed as revision 7528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check the last? entry written for detecting already initalized tablesMichael Niedermayer2007-01-151-1/+1
| | | | Originally committed as revision 7527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace / by >> this makes the .o ~150 bytes smallerMichael Niedermayer2007-01-151-4/+4
| | | | Originally committed as revision 7525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2007-01-151-2/+0
| | | | Originally committed as revision 7524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_aes_init()Michael Niedermayer2007-01-151-0/+7
| | | | Originally committed as revision 7521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* the missing header ...Michael Niedermayer2007-01-151-0/+26
| | | | Originally committed as revision 7520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-141-10/+4
| | | | Originally committed as revision 7504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify multiply table initMichael Niedermayer2007-01-141-11/+11
| | | | Originally committed as revision 7503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify selftestMichael Niedermayer2007-01-141-27/+17
| | | | Originally committed as revision 7501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert simplification (broke 192 bit keys)Michael Niedermayer2007-01-141-3/+6
| | | | Originally committed as revision 7500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-141-6/+3
| | | | Originally committed as revision 7499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 2 warningsMichael Niedermayer2007-01-141-2/+2
| | | | Originally committed as revision 7498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seems i didnt copy anything from aes128.c so this should be more correct ?Michael Niedermayer2007-01-141-1/+3
| | | | Originally committed as revision 7497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unneededMichael Niedermayer2007-01-141-1/+0
| | | | Originally committed as revision 7496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unused thinkMichael Niedermayer2007-01-141-2/+2
| | | | Originally committed as revision 7495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge encrypt and decrypt so the source is simpler and the compiler can ↵Michael Niedermayer2007-01-141-23/+18
| | | | | | choose with inlining if it wants speed or small size Originally committed as revision 7494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2007-01-141-5/+5
| | | | Originally committed as revision 7493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove duplicate round_keyMichael Niedermayer2007-01-141-22/+24
| | | | | | one context is now either for encoding or decoding (makes more sense in reality too) Originally committed as revision 7492 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make decode look more like encodeMichael Niedermayer2007-01-141-3/+3
| | | | Originally committed as revision 7491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont use encode tables for decodingMichael Niedermayer2007-01-141-5/+7
| | | | Originally committed as revision 7490 to svn://svn.ffmpeg.org/ffmpeg/trunk