You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/af_dynaudnorm: fix parameter for copy samples function
This commit is contained in:
@@ -707,7 +707,7 @@ static int analyze_frame(DynamicAudioNormalizerContext *s, AVFilterLink *outlink
|
||||
analyze_frame = s->window;
|
||||
} else {
|
||||
av_samples_copy(s->window->extended_data, (*frame)->extended_data, 0, 0,
|
||||
s->frame_len, (*frame)->ch_layout.nb_channels, (*frame)->format);
|
||||
FFMIN(s->frame_len, (*frame)->nb_samples), (*frame)->ch_layout.nb_channels, (*frame)->format);
|
||||
analyze_frame = *frame;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user