all: Fix doxy comments wrongly designated as trailing ///<

The ///< or /**< form of doxygen comments are only to be used
when the documentation follows the member and the comment
block starts on the same line as the member. This commit
fixes wrong uses of them; in particular, this fixes the comment
for mb_height in H.264 SPS's structure which was wrongly added
to mb_width.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2025-03-09 16:03:20 +01:00
parent e99faf28d5
commit a6c58450da
15 changed files with 29 additions and 32 deletions

View file

@ -110,9 +110,9 @@ typedef struct FFFilterContext {
*/
unsigned ready;
///< parsed expression
/// parsed expression
struct AVExpr *enable;
///< variable values for the enable expression
/// variable values for the enable expression
double *var_values;
struct AVFilterCommand *command_queue;