diff des.h @ 637:683a6dbdd2b2 libavutil

spelling/grammar/consistency review part III
author diego
date Wed, 28 Jan 2009 23:16:49 +0000
parents bd4052d9050c
children 67fb0b442dd2
line wrap: on
line diff
--- a/des.h	Wed Jan 28 23:03:17 2009 +0000
+++ b/des.h	Wed Jan 28 23:16:49 2009 +0000
@@ -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;