mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/af_rubberband: add process_command()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
562ba4a827
commit
1d7d824494
@ -207,6 +207,38 @@ static int request_frame(AVFilterLink *outlink)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
|
||||||
|
char *res, int res_len, int flags)
|
||||||
|
{
|
||||||
|
RubberBandContext *s = ctx->priv;
|
||||||
|
|
||||||
|
if (!strcmp(cmd, "tempo")) {
|
||||||
|
double arg;
|
||||||
|
|
||||||
|
sscanf(args, "%lf", &arg);
|
||||||
|
if (arg < 0.01 || arg > 100) {
|
||||||
|
av_log(ctx, AV_LOG_ERROR,
|
||||||
|
"Tempo scale factor '%f' out of range\n", arg);
|
||||||
|
return AVERROR(EINVAL);
|
||||||
|
}
|
||||||
|
rubberband_set_time_ratio(s->rbs, 1. / arg);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!strcmp(cmd, "pitch")) {
|
||||||
|
double arg;
|
||||||
|
|
||||||
|
sscanf(args, "%lf", &arg);
|
||||||
|
if (arg < 0.01 || arg > 100) {
|
||||||
|
av_log(ctx, AV_LOG_ERROR,
|
||||||
|
"Pitch scale factor '%f' out of range\n", arg);
|
||||||
|
return AVERROR(EINVAL);
|
||||||
|
}
|
||||||
|
rubberband_set_pitch_scale(s->rbs, arg);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static const AVFilterPad rubberband_inputs[] = {
|
static const AVFilterPad rubberband_inputs[] = {
|
||||||
{
|
{
|
||||||
.name = "default",
|
.name = "default",
|
||||||
@ -235,4 +267,5 @@ AVFilter ff_af_rubberband = {
|
|||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
.inputs = rubberband_inputs,
|
.inputs = rubberband_inputs,
|
||||||
.outputs = rubberband_outputs,
|
.outputs = rubberband_outputs,
|
||||||
|
.process_command = process_command,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user