diff options
author | Timothy Gu <timothygu99@gmail.com> | 2013-11-09 15:36:41 -0800 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-11-14 09:51:10 +0100 |
commit | 62923e9014baeba54ee5d01e9ab825d841a81004 (patch) | |
tree | 86c6ffb13e0e6e9ff846ee70aae33aa7bec56143 | |
parent | 52955c412c60f6b1444f4800c4a3cc72fe36f1b6 (diff) | |
download | ffmpeg-62923e9014baeba54ee5d01e9ab825d841a81004.tar.gz |
doc: remove avutil.txt
No useful contents. Also hard to keep up-to-date.
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
-rw-r--r-- | doc/avutil.txt | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/doc/avutil.txt b/doc/avutil.txt deleted file mode 100644 index 0847683d1d..0000000000 --- a/doc/avutil.txt +++ /dev/null @@ -1,36 +0,0 @@ -AVUtil -====== -libavutil is a small lightweight library of generally useful functions. -It is not a library for code needed by both libavcodec and libavformat. - - -Overview: -========= -adler32.c adler32 checksum -aes.c AES encryption and decryption -fifo.c resizeable first in first out buffer -intfloat_readwrite.c portable reading and writing of floating point values -log.c "printf" with context and level -md5.c MD5 Message-Digest Algorithm -rational.c code to perform exact calculations with rational numbers -tree.c generic AVL tree -crc.c generic CRC checksumming code -integer.c 128bit integer math -lls.c -mathematics.c greatest common divisor, integer sqrt, integer log2, ... -mem.c memory allocation routines with guaranteed alignment - -Headers: -bswap.h big/little/native-endian conversion code -x86_cpu.h a few useful macros for unifying x86-64 and x86-32 code -avutil.h -common.h -intreadwrite.h reading and writing of unaligned big/little/native-endian integers - - -Goals: -====== -* Modular (few interdependencies and the possibility of disabling individual parts during ./configure) -* Small (source and object) -* Efficient (low CPU and memory usage) -* Useful (avoid useless features almost no one needs) |