mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-21 11:08:23 +00:00
avfilter/af_headphone: fix type=time with hrir=multich
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
783df2eb59
commit
e1c8bd2389
@ -567,8 +567,8 @@ static int convert_coeffs(AVFilterContext *ctx, AVFilterLink *inlink)
|
||||
if (s->type == TIME_DOMAIN) {
|
||||
offset = idx * FFALIGN(len, 16);
|
||||
for (j = 0; j < len; j++) {
|
||||
data_ir_l[offset + j] = ptr[len * 2 - j * 2 - 2] * gain_lin;
|
||||
data_ir_r[offset + j] = ptr[len * 2 - j * 2 - 1] * gain_lin;
|
||||
data_ir_l[offset + j] = ptr[len * N - j * N - N + I ] * gain_lin;
|
||||
data_ir_r[offset + j] = ptr[len * N - j * N - N + I + 1] * gain_lin;
|
||||
}
|
||||
} else {
|
||||
memset(fft_in_l, 0, n_fft * sizeof(*fft_in_l));
|
||||
|
Loading…
Reference in New Issue
Block a user