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/aes.h | |
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/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 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 |