Commit 87a2bf24 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/bprint: Fix doxygen comments

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9c50e520
...@@ -74,10 +74,10 @@ ...@@ -74,10 +74,10 @@
*/ */
typedef struct AVBPrint { typedef struct AVBPrint {
FF_PAD_STRUCTURE(1024, FF_PAD_STRUCTURE(1024,
char *str; /** string so far */ char *str; /**< string so far */
unsigned len; /** length so far */ unsigned len; /**< length so far */
unsigned size; /** allocated memory */ unsigned size; /**< allocated memory */
unsigned size_max; /** maximum allocated memory */ unsigned size_max; /**< maximum allocated memory */
char reserved_internal_buffer[1]; char reserved_internal_buffer[1];
) )
} AVBPrint; } AVBPrint;
......
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