aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-09 19:12:38 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-09 19:12:46 +0200
commitc4dabc38a3a221dde64e1dddb66a7eee6ec4039f (patch)
tree98c58fb564b2ba023a03741d7fce40a5a92af0aa
parentd60f680fa741cda235a361c85ea246939201576f (diff)
parente4fdfdf65d520ce3af13a21ff8a3649e37757af8 (diff)
downloadffmpeg-c4dabc38a3a221dde64e1dddb66a7eee6ec4039f.tar.gz
Merge commit 'e4fdfdf65d520ce3af13a21ff8a3649e37757af8' into release/0.10
* commit 'e4fdfdf65d520ce3af13a21ff8a3649e37757af8': vf_select: Drop a debug av_log with an unchecked double to enum conversion Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavfilter/vf_select.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c
index 5cbe663ea1..3d92b4e7a2 100644
--- a/libavfilter/vf_select.c
+++ b/libavfilter/vf_select.c
@@ -187,19 +187,6 @@ static int select_frame(AVFilterContext *ctx, AVFilterBufferRef *picref)
select->var_values[VAR_PICT_TYPE] = picref->video->pict_type;
res = av_expr_eval(select->expr, select->var_values, NULL);
- av_log(inlink->dst, AV_LOG_DEBUG,
- "n:%d pts:%d t:%f pos:%d interlace_type:%c key:%d pict_type:%c "
- "-> select:%f\n",
- (int)select->var_values[VAR_N],
- (int)select->var_values[VAR_PTS],
- select->var_values[VAR_T],
- (int)select->var_values[VAR_POS],
- select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_P ? 'P' :
- select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_T ? 'T' :
- select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_B ? 'B' : '?',
- (int)select->var_values[VAR_KEY],
- av_get_picture_type_char(select->var_values[VAR_PICT_TYPE]),
- res);
select->var_values[VAR_N] += 1.0;