mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-10 00:30:14 +00:00
bprint: Remove custom vsnprintf
A proper implementation was introduced in
ba53720280
for MSVC, and
MinGW already has vsnprintf.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
parent
663c21d4ac
commit
d512e74dec
@ -27,25 +27,6 @@
|
|||||||
#include "error.h"
|
#include "error.h"
|
||||||
#include "mem.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_room(buf) ((buf)->size - FFMIN((buf)->len, (buf)->size))
|
||||||
#define av_bprint_is_allocated(buf) ((buf)->str != (buf)->reserved_internal_buffer)
|
#define av_bprint_is_allocated(buf) ((buf)->str != (buf)->reserved_internal_buffer)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user