Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-11-22 15:08:45 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-11-22 16:14:19 +0400
commiteb87b340e8c8ad3902e9dc0857724c8f659a113f (patch)
tree99be87cac993a3952cea6a7b25dbe3b8b3f6eaf0
parentdcbf72836c90d077067248a0ddc4e4c7556e2461 (diff)
lavfi/drawtext: add support for printing frame numbers
Fix trac ticket #1949.
-rw-r--r--doc/filters.texi3
-rw-r--r--libavfilter/version.h2
-rw-r--r--libavfilter/vf_drawtext.c11
3 files changed, 15 insertions, 1 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 5bdd745fd7..99654ebcfb 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -2083,6 +2083,9 @@ It can accept an argument: a strftime() format string.
The time at which the filter is running, expressed in the local time zone.
It can accept an argument: a strftime() format string.
+@item n, frame_num
+The frame number, starting from 0.
+
@item pts
The timestamp of the current frame, in seconds, with microsecond accuracy.
diff --git a/libavfilter/version.h b/libavfilter/version.h
index ddebb1a985..04d6fa160a 100644
--- a/libavfilter/version.h
+++ b/libavfilter/version.h
@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 3
#define LIBAVFILTER_VERSION_MINOR 23
-#define LIBAVFILTER_VERSION_MICRO 101
+#define LIBAVFILTER_VERSION_MICRO 102
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
index a78a3ea9bf..96512ab390 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -611,6 +611,15 @@ static int func_pts(AVFilterContext *ctx, AVBPrint *bp,
return 0;
}
+static int func_frame_num(AVFilterContext *ctx, AVBPrint *bp,
+ char *fct, unsigned argc, char **argv, int tag)
+{
+ DrawTextContext *dtext = ctx->priv;
+
+ av_bprintf(bp, "%d", (int)dtext->var_values[VAR_N]);
+ return 0;
+}
+
#if !HAVE_LOCALTIME_R
static void localtime_r(const time_t *t, struct tm *tm)
{
@@ -643,6 +652,8 @@ static const struct drawtext_function {
{ "pts", 0, 0, 0, func_pts },
{ "gmtime", 0, 1, 'G', func_strftime },
{ "localtime", 0, 1, 'L', func_strftime },
+ { "frame_num", 0, 0, 0, func_frame_num },
+ { "n", 0, 0, 0, func_frame_num },
};
static int eval_function(AVFilterContext *ctx, AVBPrint *bp, char *fct,