diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-30 18:27:33 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-05 13:06:58 +0100 |
commit | c68fafe0d2bdf3d4943a3602c52b0a7c83be8171 (patch) | |
tree | 23bfd8a037b362354f1638e63e2f86e9c355f004 /libavutil/lzo.c | |
parent | 714cd7e758ef8c579a3f98b364d8b3d746ee289b (diff) | |
download | ffmpeg-c68fafe0d2bdf3d4943a3602c52b0a7c83be8171.tar.gz |
doxygen: eliminate Qt-style doxygen syntax
Diffstat (limited to 'libavutil/lzo.c')
-rw-r--r-- | libavutil/lzo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/lzo.c b/libavutil/lzo.c index 743d596656..26cda12112 100644 --- a/libavutil/lzo.c +++ b/libavutil/lzo.c @@ -21,14 +21,14 @@ #include "avutil.h" #include "common.h" -//! Avoid e.g. MPlayers fast_memcpy, it slows things down here. +/// Avoid e.g. MPlayers fast_memcpy, it slows things down here. #undef memcpy #include <string.h> #include "lzo.h" -//! Define if we may write up to 12 bytes beyond the output buffer. +/// Define if we may write up to 12 bytes beyond the output buffer. #define OUTBUF_PADDED 1 -//! Define if we may read up to 8 bytes beyond the input buffer. +/// Define if we may read up to 8 bytes beyond the input buffer. #define INBUF_PADDED 1 typedef struct LZOContext { const uint8_t *in, *in_end; |