From 2927b61c559fefd2da1c693c0787fcdbd7706b09 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 18 Jul 2015 10:45:12 +0200 Subject: [PATCH] avfilter/af_dynaudnorm: Use av_frame_get_channels() Signed-off-by: Michael Niedermayer --- libavfilter/af_dynaudnorm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavfilter/af_dynaudnorm.c b/libavfilter/af_dynaudnorm.c index ba3a008e33..60d6c87b57 100644 --- a/libavfilter/af_dynaudnorm.c +++ b/libavfilter/af_dynaudnorm.c @@ -334,7 +334,7 @@ static double find_peak_magnitude(AVFrame *frame, int channel) int c, i; if (channel == -1) { - for (c = 0; c < frame->channels; c++) { + for (c = 0; c < av_frame_get_channels(frame); c++) { double *data_ptr = (double *)frame->extended_data[c]; for (i = 0; i < frame->nb_samples; i++) @@ -356,7 +356,7 @@ static double compute_frame_rms(AVFrame *frame, int channel) int c, i; if (channel == -1) { - for (c = 0; c < frame->channels; c++) { + for (c = 0; c < av_frame_get_channels(frame); c++) { const double *data_ptr = (double *)frame->extended_data[c]; for (i = 0; i < frame->nb_samples; i++) { @@ -364,7 +364,7 @@ static double compute_frame_rms(AVFrame *frame, int channel) } } - rms_value /= frame->nb_samples * frame->channels; + rms_value /= frame->nb_samples * av_frame_get_channels(frame); } else { const double *data_ptr = (double *)frame->extended_data[channel]; for (i = 0; i < frame->nb_samples; i++) {