summaryrefslogtreecommitdiff
path: root/libavfilter/vf_select.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-10-10 00:36:19 +0200
committerClément Bœsch <ubitux@gmail.com>2012-10-21 17:29:11 +0200
commitde23953de2d827381886c900b02e9ead02ad56a3 (patch)
treef35f3dda2d54f3f37f91b9289d0af6ef1e7cddd3 /libavfilter/vf_select.c
parent6fb2fd895e858ab93f46e656a322778ee181c307 (diff)
lavfi/select: store scene score in buf ref metadata.
Diffstat (limited to 'libavfilter/vf_select.c')
-rw-r--r--libavfilter/vf_select.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c
index 7cb5aae783..341361da51 100644
--- a/libavfilter/vf_select.c
+++ b/libavfilter/vf_select.c
@@ -241,8 +241,13 @@ static int select_frame(AVFilterContext *ctx, AVFilterBufferRef *picref)
AVFilterLink *inlink = ctx->inputs[0];
double res;
- if (CONFIG_AVCODEC && select->do_scene_detect)
+ if (CONFIG_AVCODEC && select->do_scene_detect) {
+ char buf[32];
select->var_values[VAR_SCENE] = get_scene_score(ctx, picref);
+ // TODO: document metadata
+ snprintf(buf, sizeof(buf), "%f", select->var_values[VAR_SCENE]);
+ av_dict_set(&picref->metadata, "lavfi.scene_score", buf, 0);
+ }
if (isnan(select->var_values[VAR_START_PTS]))
select->var_values[VAR_START_PTS] = TS2D(picref->pts);
if (isnan(select->var_values[VAR_START_T]))