summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-07-29 05:43:04 -0700
committerDiego Biurrun <diego@biurrun.de>2014-07-29 09:37:01 -0700
commita8d803a320fb08b3ad5db4fffc79abd401206905 (patch)
tree6e909e20ea42921aa04cedfdfa997ae89f7459ff /libavfilter
parentccbf370f2000b9b27f4af259c23007d67f7ea46e (diff)
vf_select: Drop a debug av_log with an unchecked double to enum conversion
CC: libav-stable@libav.org
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_select.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c
index 22be1fd4fc..8d0e6c3be0 100644
--- a/libavfilter/vf_select.c
+++ b/libavfilter/vf_select.c
@@ -205,18 +205,6 @@ static int select_frame(AVFilterContext *ctx, AVFrame *frame)
select->var_values[VAR_PICT_TYPE] = frame->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 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],
- 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;