diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-11-20 20:38:24 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-11-22 17:16:02 +0100 |
commit | 757cd8d876b18c07e00b53fd4e5c01bedc106d2e (patch) | |
tree | eab216085c5b151ac19d37f0f57df76f9d60031d /libavutil/rational.h | |
parent | 384bdaceeb9c82d5b64a6f73e5273298b38028e9 (diff) | |
download | ffmpeg-757cd8d876b18c07e00b53fd4e5c01bedc106d2e.tar.gz |
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/rational.h')
-rw-r--r-- | libavutil/rational.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavutil/rational.h b/libavutil/rational.h index a4871148bd..0ec18ec969 100644 --- a/libavutil/rational.h +++ b/libavutil/rational.h @@ -33,6 +33,11 @@ #include "attributes.h" /** + * @addtogroup lavu_math + * @{ + */ + +/** * rational number numerator/denominator */ typedef struct AVRational{ @@ -132,4 +137,8 @@ int av_nearer_q(AVRational q, AVRational q1, AVRational q2); */ int av_find_nearest_q_idx(AVRational q, const AVRational* q_list); +/** + * @} + */ + #endif /* AVUTIL_RATIONAL_H */ |