]> git.sesse.net Git - ffmpeg/commitdiff
vf_drawtext: Add pkt_pos, pkt_duration, pkt_size as variables
authorCalvin Walton <calvin.walton@kepstin.ca>
Fri, 21 Jun 2019 13:08:03 +0000 (09:08 -0400)
committerGyan Doshi <ffmpeg@gyani.pro>
Sun, 7 Jul 2019 05:42:07 +0000 (11:12 +0530)
Changes to vf_drawtext.c written by
Calvin Walton <calvin.walton@kepstin.ca>

Changes to filters.texi written by
greg Luce <electron.rotoscope@gmail.com>
with lots of help from Moritz Barsnick and Gyan

Fixes #7947.

doc/filters.texi
libavfilter/version.h
libavfilter/vf_drawtext.c

index 3c406a4791b36ce7aea6aa286452323336dc6fee..ee6a93ffbfa00e2a1e8e147f200bfe7a789dfe36 100644 (file)
@@ -9002,6 +9002,17 @@ to each other, so you can for example specify @code{y=x/dar}.
 
 @item pict_type
 A one character description of the current frame's picture type.
+
+@item pkt_pos
+The current packet's position in the input file or stream
+(in bytes, from the start of the input). A value of -1 indicates
+this info is not available.
+
+@item pkt_duration
+The current packet's duration, in seconds.
+
+@item pkt_size
+The current packet's size (in bytes).
 @end table
 
 @anchor{drawtext_expansion}
index 1347e4c7b7d20518247c3b3f60e41967cf3866b6..5bf37fa8b407e5b95d4f669da81fb4d33b5a2127 100644 (file)
@@ -31,7 +31,8 @@
 
 #define LIBAVFILTER_VERSION_MAJOR   7
 #define LIBAVFILTER_VERSION_MINOR  56
-#define LIBAVFILTER_VERSION_MICRO 100
+#define LIBAVFILTER_VERSION_MICRO 101
+
 
 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
                                                LIBAVFILTER_VERSION_MINOR, \
index 01cd7fa122e103e555006c0017af1c92823e19d3..8f4badbdb50a4579480482b8e04fc76a4531fdaa 100644 (file)
@@ -88,6 +88,9 @@ static const char *const var_names[] = {
     "x",
     "y",
     "pict_type",
+    "pkt_pos",
+    "pkt_duration",
+    "pkt_size",
     NULL
 };
 
@@ -125,6 +128,9 @@ enum var_name {
     VAR_X,
     VAR_Y,
     VAR_PICT_TYPE,
+    VAR_PKT_POS,
+    VAR_PKT_DURATION,
+    VAR_PKT_SIZE,
     VAR_VARS_NB
 };
 
@@ -1516,6 +1522,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
         NAN : frame->pts * av_q2d(inlink->time_base);
 
     s->var_values[VAR_PICT_TYPE] = frame->pict_type;
+    s->var_values[VAR_PKT_POS] = frame->pkt_pos;
+    s->var_values[VAR_PKT_DURATION] = frame->pkt_duration * av_q2d(inlink->time_base);
+    s->var_values[VAR_PKT_SIZE] = frame->pkt_size;
     s->metadata = frame->metadata;
 
     draw_text(ctx, frame, frame->width, frame->height);