summaryrefslogtreecommitdiff
path: root/libavutil/error.h
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2011-11-20 20:38:24 +0100
committerLuca Barbato <lu_zero@gentoo.org>2011-11-22 17:16:02 +0100
commit757cd8d876b18c07e00b53fd4e5c01bedc106d2e (patch)
treeeab216085c5b151ac19d37f0f57df76f9d60031d /libavutil/error.h
parent384bdaceeb9c82d5b64a6f73e5273298b38028e9 (diff)
doxy: provide a start page and document libavutil
Introduce a basic layout, the subpages are currently left empty. Split libavutil in multiple groups as example of the structure
Diffstat (limited to 'libavutil/error.h')
-rw-r--r--libavutil/error.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libavutil/error.h b/libavutil/error.h
index ba12d2bfae..8ed77342ef 100644
--- a/libavutil/error.h
+++ b/libavutil/error.h
@@ -27,6 +27,13 @@
#include <errno.h>
#include "avutil.h"
+/**
+ * @addtogroup lavu_error
+ *
+ * @{
+ */
+
+
/* error handling */
#if EDOM > 0
#define AVERROR(e) (-(e)) ///< Returns a negative error code from a POSIX error code, to return from library functions.
@@ -65,4 +72,8 @@
*/
int av_strerror(int errnum, char *errbuf, size_t errbuf_size);
+/**
+ * @}
+ */
+
#endif /* AVUTIL_ERROR_H */