[FFmpeg-cvslog] avutil/bprint: C++ compatible AVBPrint definition.
Vadim Kalinsky
git at videolan.org
Sat Nov 29 04:27:07 CET 2014
ffmpeg | branch: master | Vadim Kalinsky <vadim at kalinsky.ru> | Mon Nov 24 10:38:05 2014 -0500| [2db29482f1ae42f9e3c40cc019fb9e04522aa0bb] | committer: Michael Niedermayer
avutil/bprint: C++ compatible AVBPrint definition.
Previous version reviewed-by: Nicolas George <george at nsup.org>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2db29482f1ae42f9e3c40cc019fb9e04522aa0bb
---
libavutil/bprint.h | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/libavutil/bprint.h b/libavutil/bprint.h
index d1682fc..c09b1ac 100644
--- a/libavutil/bprint.h
+++ b/libavutil/bprint.h
@@ -30,9 +30,13 @@
* Define a structure with extra padding to a fixed size
* This helps ensuring binary compatibility with future versions.
*/
-#define FF_PAD_STRUCTURE(size, ...) \
+
+#define FF_PAD_STRUCTURE(name, size, ...) \
+struct ff_pad_helper_##name { __VA_ARGS__ }; \
+typedef struct name { \
__VA_ARGS__ \
- char reserved_padding[size - sizeof(struct { __VA_ARGS__ })];
+ char reserved_padding[size - sizeof(struct ff_pad_helper_##name)]; \
+} name;
/**
* Buffer to print data progressively
@@ -74,15 +78,14 @@
* internal buffer is large enough to hold a reasonable paragraph of text,
* such as the current paragraph.
*/
-typedef struct AVBPrint {
- FF_PAD_STRUCTURE(1024,
+
+FF_PAD_STRUCTURE(AVBPrint, 1024,
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;
+)
/**
* Convenience macros for special values for av_bprint_init() size_max
More information about the ffmpeg-cvslog
mailing list