Browse Source

bprint: implement vsnprintf for win32.

tags/n1.0
Nicolas George 13 years ago
parent
commit
69bf775e9f
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      libavutil/bprint.c

+ 19
- 0
libavutil/bprint.c View File

@@ -26,6 +26,25 @@
#include "error.h"
#include "mem.h"

#if defined(_WIN32)

static int vsnprintf_fixed(char *s, size_t n, const char *format, va_list va)
{
va_list va2;
int r;

va_copy(va2, va);
r = vsnprintf(s, n, format, va2);
va_end(va2);
if (r == -1)
r = _vscprintf(format, va);
return r;
}

#define vsnprintf vsnprintf_fixed

#endif

#define av_bprint_room(buf) ((buf)->size - FFMIN((buf)->len, (buf)->size))
#define av_bprint_is_allocated(buf) ((buf)->str != (buf)->reserved_internal_buffer)



Loading…
Cancel
Save