mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '6b9b42cc5576e1819ad1e29d98940066fd14b2d6'
* commit '6b9b42cc5576e1819ad1e29d98940066fd14b2d6': drawtext: Remove the ifdef for localtime_r Conflicts: libavfilter/vf_drawtext.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
4360c6ff61
|
@ -52,6 +52,7 @@
|
|||
#include "libavutil/random_seed.h"
|
||||
#include "libavutil/parseutils.h"
|
||||
#include "libavutil/timecode.h"
|
||||
#include "libavutil/time_internal.h"
|
||||
#include "libavutil/tree.h"
|
||||
#include "libavutil/lfg.h"
|
||||
#include "avfilter.h"
|
||||
|
@ -843,13 +844,6 @@ static int func_metadata(AVFilterContext *ctx, AVBPrint *bp,
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if !HAVE_LOCALTIME_R
|
||||
static void localtime_r(const time_t *t, struct tm *tm)
|
||||
{
|
||||
*tm = *localtime(t);
|
||||
}
|
||||
#endif
|
||||
|
||||
static int func_strftime(AVFilterContext *ctx, AVBPrint *bp,
|
||||
char *fct, unsigned argc, char **argv, int tag)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue