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:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-23 17:47:32 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-05-24 17:36:54 +0400
commit87a2bf2459537b81ddeb64ae2ba7b4e8bae29250 (patch)
tree8edfc23d10d4986dc29e62ebfcc78c8c5c0b3a02 /libavutil/bprint.h
parent9c50e520054c15da935196cf2c5d9a90297ae6c8 (diff)
avutil/bprint: Fix doxygen comments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/bprint.h')
-rw-r--r--libavutil/bprint.h8
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;