asyncts: use clipped delta value when setting resample compensation
The max_comp option is supposed to limit maximum compensation, but currently the clipped value is not actually used.
This commit is contained in:
parent
f266486b2e
commit
8083332c2d
@ -197,7 +197,7 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *buf)
|
|||||||
if (s->resample) {
|
if (s->resample) {
|
||||||
int comp = av_clip(delta, -s->max_comp, s->max_comp);
|
int comp = av_clip(delta, -s->max_comp, s->max_comp);
|
||||||
av_log(ctx, AV_LOG_VERBOSE, "Compensating %d samples per second.\n", comp);
|
av_log(ctx, AV_LOG_VERBOSE, "Compensating %d samples per second.\n", comp);
|
||||||
avresample_set_compensation(s->avr, delta, inlink->sample_rate);
|
avresample_set_compensation(s->avr, comp, inlink->sample_rate);
|
||||||
}
|
}
|
||||||
delta = 0;
|
delta = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user