diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-07-29 05:43:04 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-30 13:06:22 -0700 |
commit | e4fdfdf65d520ce3af13a21ff8a3649e37757af8 (patch) | |
tree | 5712cfccd191e98b19d6b09d10ba4827cda141b1 | |
parent | 187cfd3c13a1deb47661486824a5b8f41e158a7a (diff) | |
download | ffmpeg-e4fdfdf65d520ce3af13a21ff8a3649e37757af8.tar.gz |
vf_select: Drop a debug av_log with an unchecked double to enum conversion
CC: libav-stable@libav.org
(cherry picked from commit a8d803a320fb08b3ad5db4fffc79abd401206905)
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-rw-r--r-- | libavfilter/vf_select.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c index 0ec443aec5..83afe3d87b 100644 --- a/libavfilter/vf_select.c +++ b/libavfilter/vf_select.c @@ -200,19 +200,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; |