diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-28 23:16:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-28 23:16:49 +0000 |
commit | 7d685b486b03ddf734fc5d14ea29fbf0ffc9e51c (patch) | |
tree | e5a81591fb2bab9e11aba6ebadc4775ea65993db /libavutil/des.h | |
parent | bfe3676feb5548993292b806de45a1cbc746c05f (diff) | |
download | ffmpeg-7d685b486b03ddf734fc5d14ea29fbf0ffc9e51c.tar.gz |
spelling/grammar/consistency review part III
Originally committed as revision 16849 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/des.h')
-rw-r--r-- | libavutil/des.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavutil/des.h b/libavutil/des.h index 88240594ee..56145d1274 100644 --- a/libavutil/des.h +++ b/libavutil/des.h @@ -26,13 +26,13 @@ #include "common.h" /** - * \brief en- or decrypt an 64-bit block of data with DES - * \param in data to process. - * \param key key to use for en-/decryption. - * \param decrypt if 0 encrypt, else decrypt. + * \brief Encrypt/decrypt a 64-bit block of data with DES. + * \param in data to process + * \param key key to use for encryption/decryption + * \param decrypt if 0 encrypt, else decrypt * \return processed data * - * If your input data is in 8-bit blocks treat it as big-endian + * If your input data is in 8-bit blocks, treat it as big-endian * (use e.g. AV_RB64 and AV_WB64). */ uint64_t ff_des_encdec(uint64_t in, uint64_t key, int decrypt) av_const; |