ref: 3b1312bec5ba218462ba9e8d3137ae7f30ccba7a
dir: /src/rate.c/
/* * libSoX rate change effect. * * Now obsolete, and implemented by resample. Name retained for * backwards compatibility. */ #include "sox_i.h" sox_effect_handler_t const * sox_rate_effect_fn(void) { static sox_effect_handler_t handler; handler = *sox_resample_effect_fn(); handler.name = "rate"; handler.getopts = NULL; handler.flags |= SOX_EFF_DEPRECATED; return &handler; }