Browse Source

avfilter/af_headphone: fix regression after 7c201e420

tags/n4.2
Paul B Mahol 7 years ago
parent
commit
9ce96a744d
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavfilter/af_headphone.c

+ 4
- 4
libavfilter/af_headphone.c View File

@@ -208,12 +208,12 @@ static int headphone_convolute(AVFilterContext *ctx, void *arg, int jobnr, int n
continue;
}

read = (wr - *(delay + l) - (air_len - 1) + buffer_length) & modulo;
read = (wr - *(delay + l) - (ir_len - 1) + buffer_length) & modulo;

if (read + air_len < buffer_length) {
memcpy(temp_src, bptr + read, air_len * sizeof(*temp_src));
if (read + ir_len < buffer_length) {
memcpy(temp_src, bptr + read, ir_len * sizeof(*temp_src));
} else {
int len = FFMIN(air_len - (read % air_len), buffer_length - read);
int len = FFMIN(air_len - (read % ir_len), buffer_length - read);

memcpy(temp_src, bptr + read, len * sizeof(*temp_src));
memcpy(temp_src + len, bptr, (air_len - len) * sizeof(*temp_src));


Loading…
Cancel
Save