Browse Source

lavfi/drawtext: Fix microsecond display.

Fixes ticket #4792.
tags/n3.0
Carl Eugen Hoyos 9 years ago
parent
commit
ae9f2e6f28
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_drawtext.c

+ 1
- 1
libavfilter/vf_drawtext.c View File

@@ -824,7 +824,7 @@ static int func_pts(AVFilterContext *ctx, AVBPrint *bp,
(int)(ms / (60 * 60 * 1000)),
(int)(ms / (60 * 1000)) % 60,
(int)(ms / 1000) % 60,
(int)ms % 1000);
(int)(ms % 1000));
}
} else if (!strcmp(fmt, "localtime") ||
!strcmp(fmt, "gmtime")) {


Loading…
Cancel
Save