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:
@@ -814,7 +814,7 @@ static int func_pts(AVFilterContext *ctx, AVBPrint *bp,
|
|||||||
if (isnan(pts)) {
|
if (isnan(pts)) {
|
||||||
av_bprintf(bp, " ??:??:??.???");
|
av_bprintf(bp, " ??:??:??.???");
|
||||||
} else {
|
} else {
|
||||||
int64_t ms = round(pts * 1000);
|
int64_t ms = llrint(pts * 1000);
|
||||||
char sign = ' ';
|
char sign = ' ';
|
||||||
if (ms < 0) {
|
if (ms < 0) {
|
||||||
sign = '-';
|
sign = '-';
|
||||||
|
|||||||
Reference in New Issue
Block a user