aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/f_setpts.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-12 15:47:16 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-12 15:47:16 +0200
commit3dedcef8b889c07f700f6f5d5632a120eb46f593 (patch)
treeef331fc66d3332fc7ee177bd16098a257682123d /libavfilter/f_setpts.c
parent1007de703305a2cb36a3fc5633d2635270206b15 (diff)
downloadffmpeg-3dedcef8b889c07f700f6f5d5632a120eb46f593.tar.gz
avfilter: add missing AV_OPT_FLAG_FILTERING_PARAM
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/f_setpts.c')
-rw-r--r--libavfilter/f_setpts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/f_setpts.c b/libavfilter/f_setpts.c
index eec527ac53..c0fd42257b 100644
--- a/libavfilter/f_setpts.c
+++ b/libavfilter/f_setpts.c
@@ -257,7 +257,7 @@ AVFilter avfilter_af_asetpts = {
#if CONFIG_SETPTS_FILTER
#define OFFSET(x) offsetof(SetPTSContext, x)
-#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
+#define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
static const AVOption options[] = {
{ "expr", "Expression determining the frame timestamp", OFFSET(expr_str), AV_OPT_TYPE_STRING, { .str = "PTS" }, .flags = FLAGS },
{ NULL },