FFmpeg
Loading...
Searching...
No Matches
af_rubberband.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include <rubberband/rubberband-c.h>
20
22#include "libavutil/common.h"
23#include "libavutil/opt.h"
24
25#include "audio.h"
26#include "avfilter.h"
27#include "filters.h"
28
43
44#define OFFSET(x) offsetof(RubberBandContext, x)
45#define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
46#define AT AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
47
48static const AVOption rubberband_options[] = {
49 { "tempo", "set tempo scale factor", OFFSET(tempo), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0.01, 100, AT },
50 { "pitch", "set pitch scale factor", OFFSET(pitch), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0.01, 100, AT },
51 { "transients", "set transients", OFFSET(transients), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, A, .unit = "transients" },
52 { "crisp", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionTransientsCrisp}, 0, 0, A, .unit = "transients" },
53 { "mixed", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionTransientsMixed}, 0, 0, A, .unit = "transients" },
54 { "smooth", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionTransientsSmooth}, 0, 0, A, .unit = "transients" },
55 { "detector", "set detector", OFFSET(detector), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, A, .unit = "detector" },
56 { "compound", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionDetectorCompound}, 0, 0, A, .unit = "detector" },
57 { "percussive", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionDetectorPercussive}, 0, 0, A, .unit = "detector" },
58 { "soft", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionDetectorSoft}, 0, 0, A, .unit = "detector" },
59 { "phase", "set phase", OFFSET(phase), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, A, .unit = "phase" },
60 { "laminar", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionPhaseLaminar}, 0, 0, A, .unit = "phase" },
61 { "independent", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionPhaseIndependent}, 0, 0, A, .unit = "phase" },
62 { "window", "set window", OFFSET(window), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, A, .unit = "window" },
63 { "standard", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionWindowStandard}, 0, 0, A, .unit = "window" },
64 { "short", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionWindowShort}, 0, 0, A, .unit = "window" },
65 { "long", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionWindowLong}, 0, 0, A, .unit = "window" },
66 { "smoothing", "set smoothing", OFFSET(smoothing), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, A, .unit = "smoothing" },
67 { "off", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionSmoothingOff}, 0, 0, A, .unit = "smoothing" },
68 { "on", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionSmoothingOn}, 0, 0, A, .unit = "smoothing" },
69 { "formant", "set formant", OFFSET(formant), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, A, .unit = "formant" },
70 { "shifted", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionFormantShifted}, 0, 0, A, .unit = "formant" },
71 { "preserved", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionFormantPreserved}, 0, 0, A, .unit = "formant" },
72 { "pitchq", "set pitch quality", OFFSET(opitch), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, A, .unit = "pitch" },
73 { "quality", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionPitchHighQuality}, 0, 0, A, .unit = "pitch" },
74 { "speed", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionPitchHighSpeed}, 0, 0, A, .unit = "pitch" },
75 { "consistency", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionPitchHighConsistency}, 0, 0, A, .unit = "pitch" },
76 { "channels", "set channels", OFFSET(channels), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, A, .unit = "channels" },
77 { "apart", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionChannelsApart}, 0, 0, A, .unit = "channels" },
78 { "together", 0, 0, AV_OPT_TYPE_CONST, {.i64=RubberBandOptionChannelsTogether}, 0, 0, A, .unit = "channels" },
79 { NULL },
80};
81
83
85{
86 RubberBandContext *s = ctx->priv;
87
88 if (s->rbs)
89 rubberband_delete(s->rbs);
90}
91
92static int filter_frame(AVFilterLink *inlink, AVFrame *in)
93{
94 AVFilterContext *ctx = inlink->dst;
95 RubberBandContext *s = ctx->priv;
96 AVFilterLink *outlink = ctx->outputs[0];
97 AVFrame *out;
98 int ret = 0, nb_samples;
99
100 if (s->first_pts == AV_NOPTS_VALUE)
101 s->first_pts = in->pts;
102
103 rubberband_process(s->rbs, (const float *const *)in->extended_data, in->nb_samples, s->eof);
104 s->nb_samples_in += in->nb_samples;
105
106 nb_samples = rubberband_available(s->rbs);
107 if (nb_samples > 0) {
108 out = ff_get_audio_buffer(outlink, nb_samples);
109 if (!out) {
110 av_frame_free(&in);
111 return AVERROR(ENOMEM);
112 }
113 out->pts = s->first_pts + av_rescale_q(s->nb_samples_out,
114 (AVRational){ 1, outlink->sample_rate },
115 outlink->time_base);
116 s->last_pts = out->pts;
117 nb_samples = rubberband_retrieve(s->rbs, (float *const *)out->extended_data, nb_samples);
118 out->nb_samples = nb_samples;
119 ret = ff_filter_frame(outlink, out);
120 s->nb_samples_out += nb_samples;
121 }
122
123 av_frame_free(&in);
124 if (ff_inlink_queued_samples(inlink) >= s->nb_samples)
126 return ret < 0 ? ret : nb_samples;
127}
128
129static int config_input(AVFilterLink *inlink)
130{
131 AVFilterContext *ctx = inlink->dst;
132 RubberBandContext *s = ctx->priv;
133 int opts = s->transients|s->detector|s->phase|s->window|
134 s->smoothing|s->formant|s->opitch|s->channels|
135 RubberBandOptionProcessRealTime;
136
137 if (s->rbs)
138 rubberband_delete(s->rbs);
139 s->rbs = rubberband_new(inlink->sample_rate, inlink->ch_layout.nb_channels, opts, 1. / s->tempo, s->pitch);
140 if (!s->rbs)
141 return AVERROR(ENOMEM);
142
143 s->nb_samples = rubberband_get_samples_required(s->rbs);
144 s->first_pts = AV_NOPTS_VALUE;
145
146 return 0;
147}
148
150{
151 AVFilterLink *inlink = ctx->inputs[0];
152 AVFilterLink *outlink = ctx->outputs[0];
153 RubberBandContext *s = ctx->priv;
154 AVFrame *in = NULL;
155 int64_t pts;
156 int status, ret;
157
158 FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink);
159
160 ret = ff_inlink_consume_samples(inlink, s->nb_samples, s->nb_samples, &in);
161
162 if (ff_inlink_acknowledge_status(inlink, &status, &pts))
163 s->eof |= status == AVERROR_EOF;
164
165 if (ret < 0)
166 return ret;
167 if (ret > 0) {
168 ret = filter_frame(inlink, in);
169 if (ret != 0)
170 return ret;
171 }
172
173 if (s->eof) {
174 ff_outlink_set_status(outlink, AVERROR_EOF, s->last_pts);
175 return 0;
176 }
177
178 FF_FILTER_FORWARD_WANTED(outlink, inlink);
179
180 return FFERROR_NOT_READY;
181}
182
183static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
184 char *res, int res_len, int flags)
185{
186 RubberBandContext *s = ctx->priv;
187 int ret;
188
189 ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
190 if (ret < 0)
191 return ret;
192
193 rubberband_set_time_ratio(s->rbs, 1. / s->tempo);
194 rubberband_set_pitch_scale(s->rbs, s->pitch);
195 s->nb_samples = rubberband_get_samples_required(s->rbs);
196
197 return 0;
198}
199
201 {
202 .name = "default",
203 .type = AVMEDIA_TYPE_AUDIO,
204 .config_props = config_input,
205 },
206};
207
209 .p.name = "rubberband",
210 .p.description = NULL_IF_CONFIG_SMALL("Apply time-stretching and pitch-shifting."),
211 .p.priv_class = &rubberband_class,
212 .priv_size = sizeof(RubberBandContext),
213 .uninit = uninit,
218 .process_command = process_command,
219};
#define AT
Definition af_aap.c:76
static int config_input(AVFilterLink *inlink)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
const FFFilter ff_af_rubberband
static const AVOption rubberband_options[]
static int config_input(AVFilterLink *inlink)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static const AVFilterPad rubberband_inputs[]
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
static int activate(AVFilterContext *ctx)
static av_cold void uninit(AVFilterContext *ctx)
#define OFFSET(x)
static FILE * out
static AVFormatContext * ctx
static AVDictionary * opts
channels
Definition aptx.h:31
#define A(x)
Definition vpx_arith.h:28
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition audio.c:34
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition audio.c:74
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Definition avfilter.c:1467
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition avfilter.c:906
int ff_inlink_consume_samples(AVFilterLink *link, unsigned min, unsigned max, AVFrame **rframe)
Take samples from the link's FIFO and update the link's stats.
Definition avfilter.c:1540
void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
Mark a filter ready and schedule it for activation.
Definition avfilter.c:229
int ff_inlink_queued_samples(AVFilterLink *link)
Definition avfilter.c:1495
Main libavfilter public API header.
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
common internal and external API header
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static SDL_Window * window
Definition ffplay.c:365
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_DOUBLE
Underlying C type is double.
Definition opt.h:266
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition samplefmt.h:66
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FF_FILTER_FORWARD_WANTED(outlink, inlink)
Forward the frame_wanted_out flag from an output link to an input link.
Definition filters.h:694
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
Definition filters.h:629
#define FFERROR_NOT_READY
Filters implementation helper functions and internal structures.
Definition filters.h:34
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
Definition filters.h:639
#define FILTER_SINGLE_SAMPLEFMT(sample_fmt_)
Definition filters.h:257
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
AVOptions.
int nb_channels
Number of channels in this layout.
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int nb_samples
number of audio samples (per channel) described by this frame
Definition frame.h:552
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition frame.h:574
uint8_t ** extended_data
pointers to the data planes/channels.
Definition frame.h:533
AVOption.
Definition opt.h:428
Rational number (pair of numerator and denominator).
Definition rational.h:58
RubberBandState rbs
static int64_t pts