You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-06 08:29:25 +02:00
avfilter/vf_drawtext: use gm_time_r() for thread saftey
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -855,7 +855,7 @@ static int func_strftime(AVFilterContext *ctx, AVBPrint *bp,
|
||||
if (tag == 'L')
|
||||
localtime_r(&now, &tm);
|
||||
else
|
||||
tm = *gmtime(&now);
|
||||
tm = *gmtime_r(&now, &tm);
|
||||
av_bprint_strftime(bp, fmt, &tm);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user