From 7d685b486b03ddf734fc5d14ea29fbf0ffc9e51c Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 28 Jan 2009 23:16:49 +0000 Subject: spelling/grammar/consistency review part III Originally committed as revision 16849 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/des.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libavutil/des.h') 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; -- cgit v1.2.3