diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-28 13:53:48 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-28 16:43:34 +0100 |
commit | cd7febd33f20b42aac14cf9cb87efdf619b39b0a (patch) | |
tree | 6826129a1f327836e1c980449b2fa7308307b615 /libavfilter/af_atempo.c | |
parent | 16af29a7a6deff3f6081fca1e36ad96cf8fec77d (diff) | |
download | ffmpeg-cd7febd33f20b42aac14cf9cb87efdf619b39b0a.tar.gz |
lavfi: replace filter_samples by filter_frame
Based on patch by Anton Khirnov
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_atempo.c')
-rw-r--r-- | libavfilter/af_atempo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/af_atempo.c b/libavfilter/af_atempo.c index 06c80ac01d..77e5ff6bd5 100644 --- a/libavfilter/af_atempo.c +++ b/libavfilter/af_atempo.c @@ -138,7 +138,7 @@ typedef struct { RDFTContext *complex_to_real; FFTSample *correlation; - // for managing AVFilterPad.request_frame and AVFilterPad.filter_samples + // for managing AVFilterPad.request_frame and AVFilterPad.filter_frame int request_fulfilled; AVFilterBufferRef *dst_buffer; uint8_t *dst; @@ -1033,7 +1033,7 @@ static void push_samples(ATempoContext *atempo, (AVRational){ 1, outlink->sample_rate }, outlink->time_base); - ff_filter_samples(outlink, atempo->dst_buffer); + ff_filter_frame(outlink, atempo->dst_buffer); atempo->dst_buffer = NULL; atempo->dst = NULL; atempo->dst_end = NULL; @@ -1041,7 +1041,7 @@ static void push_samples(ATempoContext *atempo, atempo->nsamples_out += n_out; } -static int filter_samples(AVFilterLink *inlink, +static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *src_buffer) { AVFilterContext *ctx = inlink->dst; @@ -1148,7 +1148,7 @@ AVFilter avfilter_af_atempo = { .inputs = (const AVFilterPad[]) { { .name = "default", .type = AVMEDIA_TYPE_AUDIO, - .filter_samples = filter_samples, + .filter_frame = filter_frame, .config_props = config_props, .min_perms = AV_PERM_READ, }, { .name = NULL} |