diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-23 15:47:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-24 15:36:54 +0200 |
commit | 87a2bf2459537b81ddeb64ae2ba7b4e8bae29250 (patch) | |
tree | 8edfc23d10d4986dc29e62ebfcc78c8c5c0b3a02 /libavutil/bprint.h | |
parent | 9c50e520054c15da935196cf2c5d9a90297ae6c8 (diff) | |
download | ffmpeg-87a2bf2459537b81ddeb64ae2ba7b4e8bae29250.tar.gz |
avutil/bprint: Fix doxygen comments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/bprint.h')
-rw-r--r-- | libavutil/bprint.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/bprint.h b/libavutil/bprint.h index df78916f4a..dc86f12415 100644 --- a/libavutil/bprint.h +++ b/libavutil/bprint.h @@ -74,10 +74,10 @@ */ typedef struct AVBPrint { FF_PAD_STRUCTURE(1024, - char *str; /** string so far */ - unsigned len; /** length so far */ - unsigned size; /** allocated memory */ - unsigned size_max; /** maximum allocated memory */ + char *str; /**< string so far */ + unsigned len; /**< length so far */ + unsigned size; /**< allocated memory */ + unsigned size_max; /**< maximum allocated memory */ char reserved_internal_buffer[1]; ) } AVBPrint; |