mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/vf_drawtext: replace round by llrint
llrint is at least as fast, and avoids an implicit cast. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
This commit is contained in:
parent
7af14b3726
commit
ff1442a51d
|
@ -814,7 +814,7 @@ static int func_pts(AVFilterContext *ctx, AVBPrint *bp,
|
|||
if (isnan(pts)) {
|
||||
av_bprintf(bp, " ??:??:??.???");
|
||||
} else {
|
||||
int64_t ms = round(pts * 1000);
|
||||
int64_t ms = llrint(pts * 1000);
|
||||
char sign = ' ';
|
||||
if (ms < 0) {
|
||||
sign = '-';
|
||||
|
|
Loading…
Reference in New Issue