]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/bprint.h
Merge commit '97b052e56807fab6887e9ba210a28a622e6a4b78'
[ffmpeg] / libavutil / bprint.h
index bb1de25c4aafb8ddeba80a1769572bca71b0e404..839ec1ec0d782b21a8f9c5f6bb49fa83f44322b1 100644 (file)
@@ -133,6 +133,15 @@ void av_vbprintf(AVBPrint *buf, const char *fmt, va_list vl_arg);
  */
 void av_bprint_chars(AVBPrint *buf, char c, unsigned n);
 
+/**
+ * Append data to a print buffer.
+ *
+ * param buf  bprint buffer to use
+ * param data pointer to data
+ * param size size of data
+ */
+void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size);
+
 struct tm;
 /**
  * Append a formatted date and time to a print buffer.