Commit ca0d8e83 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/volume: extend volume logging

parent 97aa5546
...@@ -249,16 +249,17 @@ static int set_volume(AVFilterContext *ctx) ...@@ -249,16 +249,17 @@ static int set_volume(AVFilterContext *ctx)
} }
vol->var_values[VAR_VOLUME] = vol->volume; vol->var_values[VAR_VOLUME] = vol->volume;
av_log(ctx, AV_LOG_VERBOSE, "n:%f t:%f pts:%f precision:%s ",
vol->var_values[VAR_N], vol->var_values[VAR_T], vol->var_values[VAR_PTS],
precision_str[vol->precision]);
if (vol->precision == PRECISION_FIXED) { if (vol->precision == PRECISION_FIXED) {
vol->volume_i = (int)(vol->volume * 256 + 0.5); vol->volume_i = (int)(vol->volume * 256 + 0.5);
vol->volume = vol->volume_i / 256.0; vol->volume = vol->volume_i / 256.0;
av_log(ctx, AV_LOG_VERBOSE, "volume:(%d/256)(%f)(%1.2fdB) precision:fixed\n", av_log(ctx, AV_LOG_VERBOSE, "volume_i:%d/255 ", vol->volume_i);
vol->volume_i, vol->volume, 20.0*log(vol->volume)/M_LN10);
} else {
av_log(ctx, AV_LOG_VERBOSE, "volume:(%f)(%1.2fdB) precision:%s\n",
vol->volume, 20.0*log(vol->volume)/M_LN10,
precision_str[vol->precision]);
} }
av_log(ctx, AV_LOG_VERBOSE, "volume:%f volume_dB:%f\n",
vol->volume, 20.0*log(vol->volume)/M_LN10);
volume_init(vol); volume_init(vol);
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment