diff options
author | Timothy Gu <timothygu99@gmail.com> | 2013-11-02 15:03:30 -0700 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-07 01:31:36 +0200 |
commit | 486e3649cef50190105265fc51846e72d908d1bb (patch) | |
tree | ed72eab8fa2442d4e44f46b1a87e9c75b5f7118d | |
parent | f73495686d109ffffaa8c0387e790e7997326229 (diff) | |
download | ffmpeg-486e3649cef50190105265fc51846e72d908d1bb.tar.gz |
xtea: Add Doxy @file and group
-rw-r--r-- | libavutil/xtea.c | 7 | ||||
-rw-r--r-- | libavutil/xtea.h | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/libavutil/xtea.c b/libavutil/xtea.c index d1efebf590..53c0bfe603 100644 --- a/libavutil/xtea.c +++ b/libavutil/xtea.c @@ -21,6 +21,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/** + * @file + * @brief XTEA 32-bit implementation + * @author Samuel Pitoiset + * @ingroup lavu_xtea + */ + #include "avutil.h" #include "common.h" #include "intreadwrite.h" diff --git a/libavutil/xtea.h b/libavutil/xtea.h index 7d2b07bbc7..0fc3810dd2 100644 --- a/libavutil/xtea.h +++ b/libavutil/xtea.h @@ -24,6 +24,8 @@ #include <stdint.h> /** + * @file + * @brief Public header for libavutil XTEA algorithm * @defgroup lavu_xtea XTEA * @ingroup lavu_crypto * @{ |