avfilter/af_sofalizer: Fix occured typo

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/167/head
Michael Niedermayer 9 years ago
parent 73840bbe4e
commit c67cf84d7c
  1. 2
      libavfilter/af_sofalizer.c

@ -830,7 +830,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
} }
emms_c(); emms_c();
/* display error message if clipping occured */ /* display error message if clipping occurred */
if (n_clippings[0] + n_clippings[1] > 0) { if (n_clippings[0] + n_clippings[1] > 0) {
av_log(ctx, AV_LOG_WARNING, "%d of %d samples clipped. Please reduce gain.\n", av_log(ctx, AV_LOG_WARNING, "%d of %d samples clipped. Please reduce gain.\n",
n_clippings[0] + n_clippings[1], out->nb_samples * 2); n_clippings[0] + n_clippings[1], out->nb_samples * 2);

Loading…
Cancel
Save