diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-10 18:42:09 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-10 18:42:09 +0000 |
commit | 7ce6892373c812e9fff7af2f8107e6ee3d0567b0 (patch) | |
tree | a6271df5a1ed1996c7017f5105cc15d6793f628c /libavutil | |
parent | 06de58d2a862f1a8f536527d1f659170a62ba978 (diff) | |
download | ffmpeg-7ce6892373c812e9fff7af2f8107e6ee3d0567b0.tar.gz |
misc spelling fixes
Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/aes.h | 4 | ||||
-rw-r--r-- | libavutil/avutil.h | 2 | ||||
-rw-r--r-- | libavutil/bswap.h | 2 | ||||
-rw-r--r-- | libavutil/common.h | 2 | ||||
-rw-r--r-- | libavutil/mem.c | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/libavutil/aes.h b/libavutil/aes.h index 438ba170e4..25efdf4d64 100644 --- a/libavutil/aes.h +++ b/libavutil/aes.h @@ -28,14 +28,14 @@ extern const int av_aes_size; struct AVAES; /** - * initializes an AVAES context + * Initializes an AVAES context. * @param key_bits 128, 192 or 256 * @param decrypt 0 for encryption, 1 for decryption */ int av_aes_init(struct AVAES *a, const uint8_t *key, int key_bits, int decrypt); /** - * encrypts / decrypts. + * Encrypts / decrypts. * @param count number of 16 byte blocks * @param dst destination array, can be equal to src * @param src source array, can be equal to dst diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 3d2bd4be28..1e84557cda 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -23,7 +23,7 @@ /** * @file avutil.h - * external api header. + * external API header */ diff --git a/libavutil/bswap.h b/libavutil/bswap.h index 8a0df7a875..2f04cd4fdd 100644 --- a/libavutil/bswap.h +++ b/libavutil/bswap.h @@ -20,7 +20,7 @@ /** * @file bswap.h - * byte swap. + * byte swapping routines */ #ifndef FFMPEG_BSWAP_H diff --git a/libavutil/common.h b/libavutil/common.h index ce017b0908..fd1d00c7b3 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -20,7 +20,7 @@ /** * @file common.h - * common internal and external api header. + * common internal and external API header */ #ifndef FFMPEG_COMMON_H diff --git a/libavutil/mem.c b/libavutil/mem.c index 2444759681..436f846458 100644 --- a/libavutil/mem.c +++ b/libavutil/mem.c @@ -69,10 +69,10 @@ void *av_malloc(unsigned int size) But I don't want to code such logic here! */ /* Why 16? - because some cpus need alignment, for example SSE2 on P4, & most RISC cpus + Because some CPUs need alignment, for example SSE2 on P4, & most RISC CPUs it will just trigger an exception and the unaligned load will be done in the exception handler or it will just segfault (SSE2 on P4) - Why not larger? because i didnt see a difference in benchmarks ... + Why not larger? because i did not see a difference in benchmarks ... */ /* benchmarks with p3 memalign(64)+1 3071,3051,3032 |