diff options
author | Timothy Gu <timothygu99@gmail.com> | 2013-11-02 15:03:30 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-03 00:59:38 +0100 |
commit | 50f52a5498ff02c997d16b8181f32b933ce94b6b (patch) | |
tree | 157be07890d0af36dc10a0453f503ddd1ff3b876 | |
parent | 624672fcce84c41e9e2fe9ff3ec3fd56140b175f (diff) | |
download | ffmpeg-streaming-50f52a5498ff02c997d16b8181f32b933ce94b6b.zip ffmpeg-streaming-50f52a5498ff02c997d16b8181f32b933ce94b6b.tar.gz |
avutil/xtea: add Doxy @file and group
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 5bb4cf7..1750cbc 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 0899c92..6f1e71e 100644 --- a/libavutil/xtea.h +++ b/libavutil/xtea.h @@ -25,6 +25,8 @@ #include <stdint.h> /** + * @file + * @brief Public header for libavutil XTEA algorithm * @defgroup lavu_xtea XTEA * @ingroup lavu_crypto * @{ |