Browse Source

avfilter/af_compand: %f is for printing doubles

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 11 years ago
parent
commit
1bbf94d84f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/af_compand.c

+ 1
- 1
libavfilter/af_compand.c View File

@@ -355,7 +355,7 @@ static int config_output(AVFilterLink *outlink)
return AVERROR(EINVAL);
}
S(i).y -= S(i).x;
av_log(ctx, AV_LOG_DEBUG, "%d: x=%lf y=%lf\n", i, S(i).x, S(i).y);
av_log(ctx, AV_LOG_DEBUG, "%d: x=%f y=%f\n", i, S(i).x, S(i).y);
new_nb_items++;
}
num = new_nb_items;


Loading…
Cancel
Save