Commit 22df70e9 authored by Timothy Gu's avatar Timothy Gu

doxygen: Add a note on libavutil's modular nature

parent 52ec4cc0
...@@ -23,7 +23,8 @@ ...@@ -23,7 +23,8 @@
/** /**
* @file * @file
* external API header * @ingroup lavu
* Convenience header that includes @ref lavu "libavutil"'s core.
*/ */
/** /**
...@@ -81,11 +82,14 @@ ...@@ -81,11 +82,14 @@
* @defgroup lavu Common utility functions * @defgroup lavu Common utility functions
* *
* @brief * @brief
* libavutil contains the code shared across all the other FFmpeg * libavutil contains the code shared across all the other FFmpeg libraries.
* libraries *
* * @note
* @note In order to use the functions provided by avutil you must include * libavutil is designed to be modular. In most cases, in order to use the
* the specific header. * functions provided by one component of libavutil you must explicitly include
* the specific header containing that feature. If you are only using
* media-related components, you could simply include libavutil/avutil.h, which
* brings in most of the "core" components.
* *
* @{ * @{
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment