Commit eb7a6d08 authored by Nicolas George's avatar Nicolas George

lavu/bprint: add const to av_bprint_is_complete() argument.

parent 08e2b0da
...@@ -179,7 +179,7 @@ void av_bprint_clear(AVBPrint *buf); ...@@ -179,7 +179,7 @@ void av_bprint_clear(AVBPrint *buf);
* It may have been truncated due to a memory allocation failure * It may have been truncated due to a memory allocation failure
* or the size_max limit (compare size and size_max if necessary). * or the size_max limit (compare size and size_max if necessary).
*/ */
static inline int av_bprint_is_complete(AVBPrint *buf) static inline int av_bprint_is_complete(const AVBPrint *buf)
{ {
return buf->len < buf->size; return buf->len < buf->size;
} }
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
#define LIBAVUTIL_VERSION_MAJOR 54 #define LIBAVUTIL_VERSION_MAJOR 54
#define LIBAVUTIL_VERSION_MINOR 7 #define LIBAVUTIL_VERSION_MINOR 7
#define LIBAVUTIL_VERSION_MICRO 100 #define LIBAVUTIL_VERSION_MICRO 101
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
LIBAVUTIL_VERSION_MINOR, \ LIBAVUTIL_VERSION_MINOR, \
......
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