Module: libav
Branch: release/9
Commit: 3a6bc3e381647bb4434317113f131f7e0ab5bf83

Author:    Diego Biurrun <[email protected]>
Committer: Diego Biurrun <[email protected]>
Date:      Tue Jul 29 05:43:04 2014 -0700

vf_select: Drop a debug av_log with an unchecked double to enum conversion

CC: [email protected]
(cherry picked from commit a8d803a320fb08b3ad5db4fffc79abd401206905)
Signed-off-by: Diego Biurrun <[email protected]>

---

 libavfilter/vf_select.c |   13 -------------
 1 file changed, 13 deletions(-)

diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c
index 674151d..924dc1d 100644
--- a/libavfilter/vf_select.c
+++ b/libavfilter/vf_select.c
@@ -203,19 +203,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;
 

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to