summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-10-30 18:27:33 +0100
committerDiego Biurrun <diego@biurrun.de>2011-12-05 13:06:58 +0100
commitc68fafe0d2bdf3d4943a3602c52b0a7c83be8171 (patch)
tree23bfd8a037b362354f1638e63e2f86e9c355f004 /libavutil
parent714cd7e758ef8c579a3f98b364d8b3d746ee289b (diff)
doxygen: eliminate Qt-style doxygen syntax
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/lzo.c6
-rw-r--r--libavutil/lzo.h8
2 files changed, 7 insertions, 7 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;
diff --git a/libavutil/lzo.h b/libavutil/lzo.h
index b4c71c0933..d2c3466239 100644
--- a/libavutil/lzo.h
+++ b/libavutil/lzo.h
@@ -33,13 +33,13 @@
/** @name Error flags returned by av_lzo1x_decode
* \{ */
-//! end of the input buffer reached before decoding finished
+/// end of the input buffer reached before decoding finished
#define AV_LZO_INPUT_DEPLETED 1
-//! decoded data did not fit into output buffer
+/// decoded data did not fit into output buffer
#define AV_LZO_OUTPUT_FULL 2
-//! a reference to previously decoded data was wrong
+/// a reference to previously decoded data was wrong
#define AV_LZO_INVALID_BACKPTR 4
-//! a non-specific error in the compressed bitstream
+/// a non-specific error in the compressed bitstream
#define AV_LZO_ERROR 8
/** \} */