diff options
author | Måns Rullgård <mans@mansr.com> | 2010-06-30 20:09:44 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-06-30 20:09:44 +0000 |
commit | 12633044b1910ff6dd6dbe3b458b1277eeee06ba (patch) | |
tree | b96deb68906aee2cfb73bb77a3aebf287d38ecbb | |
parent | 82012619962ed0fd97e8ec36b732265103a0a2a3 (diff) | |
download | ffmpeg-12633044b1910ff6dd6dbe3b458b1277eeee06ba.tar.gz |
aes: improve av_aes_crypt() documentation
Originally committed as revision 23908 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/aes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/aes.h b/libavutil/aes.h index f64d527fb7..368f70cbbb 100644 --- a/libavutil/aes.h +++ b/libavutil/aes.h @@ -35,7 +35,7 @@ struct AVAES; int av_aes_init(struct AVAES *a, const uint8_t *key, int key_bits, int decrypt); /** - * Encrypt / decrypt. + * Encrypt or decrypt a buffer using a previously initialized context. * @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 |