aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil
Commit message (Collapse)AuthorAgeFilesLines
* Fix compilation when using the --disable-opts parameter. This to help thosePanagiotis Issaris2007-03-291-0/+4
| | | | | | | | | | interested in using a debugger to debug FFmpeg. Original thread: Subject: [PATCH] Fix compilation when using --disable-opts Date: 2007-03-15 16:58:35 GMT Originally committed as revision 8549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prevent exit missuseMichael Niedermayer2007-03-271-0/+1
| | | | Originally committed as revision 8536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* expose av_base64_decode and av_base64_encodeLuca Barbato2007-03-194-9/+9
| | | | Originally committed as revision 8448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 160 bytes smaller object file, ask gcc devels whyMichael Niedermayer2007-03-141-5/+6
| | | | Originally committed as revision 8407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* explain where the T table comes fromMichael Niedermayer2007-03-141-1/+1
| | | | Originally committed as revision 8406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill 3 more av_mallocz_static()Michael Niedermayer2007-03-142-0/+14
| | | | Originally committed as revision 8397 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic (order context variables like in sha1)Michael Niedermayer2007-03-131-1/+1
| | | | Originally committed as revision 8386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* s/context/ctx/Michael Niedermayer2007-03-131-29/+29
| | | | Originally committed as revision 8385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #undef printf under #ifdef TEST (needed for testing)Michael Niedermayer2007-03-131-0/+1
| | | | Originally committed as revision 8384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* borrow finalization algo from sha1 (100byte smaller)Michael Niedermayer2007-03-131-14/+6
| | | | Originally committed as revision 8383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of b_used variable (same size with CONFIG_SMALL)Michael Niedermayer2007-03-131-10/+10
| | | | Originally committed as revision 8382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* smaller av_sha1_update()Michael Niedermayer2007-03-131-0/+10
| | | | Originally committed as revision 8381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use CONFIG_SMALLMichael Niedermayer2007-03-131-3/+1
| | | | Originally committed as revision 8380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put state[5] last so no padding is needed on arch where uint64_t needs 8byte ↵Michael Niedermayer2007-03-131-1/+1
| | | | | | alignment Originally committed as revision 8379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2007-03-131-2/+1
| | | | Originally committed as revision 8378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont memcpy() simpler and same speedMichael Niedermayer2007-03-131-3/+1
| | | | Originally committed as revision 8377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-03-131-9/+5
| | | | Originally committed as revision 8376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove middle variant (keep fastest and smallest)Michael Niedermayer2007-03-131-40/+1
| | | | Originally committed as revision 8375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2007-03-131-0/+1
| | | | Originally committed as revision 8374 to svn://svn.ffmpeg.org/ffmpeg/trunk
* double ;;Michael Niedermayer2007-03-131-1/+1
| | | | Originally committed as revision 8373 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorize VARIANT2 (smaller and slower)Michael Niedermayer2007-03-131-26/+9
| | | | Originally committed as revision 8372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert 2% speed loss change (r8360)Michael Niedermayer2007-03-131-6/+15
| | | | | | so VARIANT0 will be big and a few % faster, VARIANT1/2 are unaffected Originally committed as revision 8371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* zero byte idea by richMichael Niedermayer2007-03-131-1/+1
| | | | Originally committed as revision 8368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2 other variants of how to implement the core partMichael Niedermayer2007-03-131-4/+79
| | | | | | benchmarks welcome ... Originally committed as revision 8367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic cleanupMichael Niedermayer2007-03-121-6/+4
| | | | Originally committed as revision 8362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic cleanupMichael Niedermayer2007-03-121-5/+1
| | | | Originally committed as revision 8361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10% smaller object file, 2% slowerMichael Niedermayer2007-03-121-6/+8
| | | | Originally committed as revision 8360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* very slightly smaller object fileMichael Niedermayer2007-03-121-3/+2
| | | | Originally committed as revision 8358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make count count bytes not bits (this is simpler and leads to a very ↵Michael Niedermayer2007-03-121-4/+4
| | | | | | slightly smaller object file) Originally committed as revision 8357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove bigger and slower codeMichael Niedermayer2007-03-121-23/+2
| | | | Originally committed as revision 8356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont recommand testing with -O3Michael Niedermayer2007-03-121-1/+1
| | | | Originally committed as revision 8355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid silly ring buffer logic (faster with -O2, -O3 is always slower then -O2)Michael Niedermayer2007-03-121-2/+2
| | | | Originally committed as revision 8354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* its faster to copy the data to the stack it seems ...Michael Niedermayer2007-03-121-1/+4
| | | | Originally committed as revision 8353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* explain how to test itMichael Niedermayer2007-03-121-0/+2
| | | | Originally committed as revision 8352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simple SHA-1 implementationMichael Niedermayer2007-03-122-0/+162
| | | | Originally committed as revision 8351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Install mem.h on "make install" as:Panagiotis Issaris2007-03-121-1/+1
| | | | | | | * the mem.h functions are part of the public API * common.h includes mem.h and common.h is installed Originally committed as revision 8345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the memory related functions out of common.h into their own header filePanagiotis Issaris2007-03-122-40/+67
| | | | | | mem.h. Originally committed as revision 8342 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give context to dprintfMichel Bardiaux2007-03-121-2/+2
| | | | Originally committed as revision 8338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in Doxygen comments.Panagiotis Issaris2007-03-091-1/+1
| | | | Originally committed as revision 8307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrections so that builds with DEBUG workMichel Bardiaux2007-03-081-2/+2
| | | | Originally committed as revision 8295 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add little endian 24bit read/writeAlex Beregszaszi2007-03-061-0/+8
| | | | Originally committed as revision 8269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move unaltered av_freep() comments to the header file.Panagiotis Issaris2007-03-052-4/+5
| | | | Originally committed as revision 8253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move unaltered av_free() comments to the header file.Panagiotis Issaris2007-03-052-5/+6
| | | | Originally committed as revision 8252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move unaltered av_realloc() comments to the header file.Panagiotis Issaris2007-03-052-5/+6
| | | | Originally committed as revision 8251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move unaltered av_malloc() comments to the header file.Panagiotis Issaris2007-03-052-5/+6
| | | | Originally committed as revision 8250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_log2_i()'s unaltered comments to the header file.Panagiotis Issaris2007-03-042-4/+5
| | | | Originally committed as revision 8232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_i2int()'s unaltered comments to the header file.Panagiotis Issaris2007-03-042-5/+6
| | | | Originally committed as revision 8231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_int2i()'s unaltered comments to the header file.Panagiotis Issaris2007-03-042-3/+4
| | | | Originally committed as revision 8230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_cmp_i()'s unaltered comment to the header file.Panagiotis Issaris2007-03-042-3/+4
| | | | Originally committed as revision 8229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_shr_i()'s unaltered comments to the header file.Panagiotis Issaris2007-03-042-4/+5
| | | | Originally committed as revision 8228 to svn://svn.ffmpeg.org/ffmpeg/trunk