summaryrefslogtreecommitdiff
path: root/libavfilter/af_headphone.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_headphone.c')
-rw-r--r--libavfilter/af_headphone.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/af_headphone.c b/libavfilter/af_headphone.c
index 182f51c347..f3543fafb6 100644
--- a/libavfilter/af_headphone.c
+++ b/libavfilter/af_headphone.c
@@ -341,9 +341,9 @@ static int headphone_frame(HeadphoneContext *s, AVFrame *in, AVFilterLink *outli
td.temp_afft = s->temp_afft;
if (s->type == TIME_DOMAIN) {
- ctx->internal->execute(ctx, headphone_convolute, &td, NULL, 2);
+ ff_filter_execute(ctx, headphone_convolute, &td, NULL, 2);
} else {
- ctx->internal->execute(ctx, headphone_fast_convolute, &td, NULL, 2);
+ ff_filter_execute(ctx, headphone_fast_convolute, &td, NULL, 2);
}
emms_c();