diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-12 18:50:50 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-12 18:50:50 +0000 |
commit | 90b5b51eab008ddb24701bb95aa4c017e62bb111 (patch) | |
tree | 47bc9eb153584ccf309c27277fb56c2d1468230f /libavutil/aes.h | |
parent | c294d7c6bafb5115dbaffd12aec4530ffed3a0b4 (diff) | |
download | ffmpeg-90b5b51eab008ddb24701bb95aa4c017e62bb111.tar.gz |
misc typo fixes
Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/aes.h')
-rw-r--r-- | libavutil/aes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/aes.h b/libavutil/aes.h index 34ba0a2faa..39a38b724d 100644 --- a/libavutil/aes.h +++ b/libavutil/aes.h @@ -26,7 +26,7 @@ extern const int av_aes_size; struct AVAES; /** - * initalizes a AVAES context + * initializes an AVAES context * @param key_bits 128, 192 or 256 * @param decrypt 0 for encryption, 1 for decryption */ @@ -37,7 +37,7 @@ int av_aes_init(struct AVAES *a, const uint8_t *key, int key_bits, int decrypt); * @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 - * @param iv initalization vector for CBC mode, if NULL then ECB will be used + * @param iv initialization vector for CBC mode, if NULL then ECB will be used * @param decrypt 0 for encryption, 1 for decryption */ void av_aes_crypt(struct AVAES *a, uint8_t *dst, uint8_t *src, int count, uint8_t *iv, int decrypt); |