Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2022-09-24 20:19:36 +0300
committerAnton Khirnov <anton@khirnov.net>2022-10-17 10:55:19 +0300
commit9570a833a06db293f8815956c3647ce0f74203dd (patch)
tree9e0dcea3888eb46a4854a9df9dcd5cacd99df25e /libavutil
parentc2c4ef6ae410cd8dc774a6fe2acd01132f4637af (diff)
avutil/display: consolidate group doxy
Make it a bit easier to grasp the grouping when not unnecessarily splitting comment blocks. Additionally do not try to add lavu_video_display to itself, resolving the following doxy warning: warning: Refusing to add group lavu_video_display to itself
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/display.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/libavutil/display.h b/libavutil/display.h
index 0c73bff5da..612faa3728 100644
--- a/libavutil/display.h
+++ b/libavutil/display.h
@@ -29,15 +29,9 @@
#include <stdint.h>
/**
- * @addtogroup lavu_video
- * @{
- *
* @defgroup lavu_video_display Display transformation matrix functions
- * @{
- */
-
-/**
- * @addtogroup lavu_video_display
+ * @ingroup lavu_video
+ *
* The display transformation matrix specifies an affine transformation that
* should be applied to video frames for correct presentation. It is compatible
* with the matrices stored in the ISO/IEC 14496-12 container format.
@@ -71,6 +65,8 @@
* q' = (b * p + d * q + y) / z;
* z = u * p + v * q + w
* @endcode
+ *
+ * @{
*/
/**
@@ -107,7 +103,6 @@ void av_display_matrix_flip(int32_t matrix[9], int hflip, int vflip);
/**
* @}
- * @}
*/
#endif /* AVUTIL_DISPLAY_H */