From b0b37df31faf01cd88e22ef5be882628b3d8d607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ekstr=C3=B6m?= Date: Wed, 20 Jan 2021 20:07:08 +0200 Subject: filters/auto_filters: switch from scaletempo to scaletempo2 Part 1 of "look how well it performs, then start cleaning up the old one." Closes #8376 --- filters/f_auto_filters.c | 4 ++-- filters/f_auto_filters.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'filters') diff --git a/filters/f_auto_filters.c b/filters/f_auto_filters.c index a5394dd35a..5dd3a4adff 100644 --- a/filters/f_auto_filters.c +++ b/filters/f_auto_filters.c @@ -329,9 +329,9 @@ static void aspeed_process(struct mp_filter *f) if (req_filter) { if (req_filter == 1) { - MP_VERBOSE(f, "adding scaletempo\n"); + MP_VERBOSE(f, "adding scaletempo2\n"); p->sub.filter = mp_create_user_filter(f, MP_OUTPUT_CHAIN_AUDIO, - "scaletempo", NULL); + "scaletempo2", NULL); } else if (req_filter == 2) { MP_VERBOSE(f, "adding drop\n"); p->sub.filter = mp_create_user_filter(f, MP_OUTPUT_CHAIN_AUDIO, diff --git a/filters/f_auto_filters.h b/filters/f_auto_filters.h index 98043c9301..f315084158 100644 --- a/filters/f_auto_filters.h +++ b/filters/f_auto_filters.h @@ -9,5 +9,5 @@ struct mp_filter *mp_deint_create(struct mp_filter *parent); // Rotate according to mp_image.rotate and VO capabilities. struct mp_filter *mp_autorotate_create(struct mp_filter *parent); -// Insert a filter that inserts scaletempo depending on speed settings. +// Insert a filter that inserts scaletempo2 depending on speed settings. struct mp_filter *mp_autoaspeed_create(struct mp_filter *parent); -- cgit v1.2.3