[FFmpeg-cvslog] avfilter/af_dynaudnorm: Use av_frame_get_channels()
Michael Niedermayer
git at videolan.org
Sat Jul 18 10:59:39 CEST 2015
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sat Jul 18 10:45:12 2015 +0200| [2927b61c559fefd2da1c693c0787fcdbd7706b09] | committer: Michael Niedermayer
avfilter/af_dynaudnorm: Use av_frame_get_channels()
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2927b61c559fefd2da1c693c0787fcdbd7706b09
---
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 ba3a008..60d6c87 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++) {
More information about the ffmpeg-cvslog
mailing list