diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2013-11-04 14:37:06 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2013-11-04 14:37:06 +0100 |
commit | 446e37dc97e533e37f6aa0a11355124207e3a7f7 (patch) | |
tree | e516adc0da8471a706a7886337bbe1f43d2ec885 /libavfilter | |
parent | 454959a5aa73b585e2937b948178310c74bfc297 (diff) | |
download | ffmpeg-446e37dc97e533e37f6aa0a11355124207e3a7f7.tar.gz |
vf_fieldorder: remove superfluous get_video_buffer
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_fieldorder.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavfilter/vf_fieldorder.c b/libavfilter/vf_fieldorder.c index a930e1571d..5185cf4123 100644 --- a/libavfilter/vf_fieldorder.c +++ b/libavfilter/vf_fieldorder.c @@ -84,14 +84,6 @@ static int config_input(AVFilterLink *inlink) return 0; } -static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h) -{ - AVFilterContext *ctx = inlink->dst; - AVFilterLink *outlink = ctx->outputs[0]; - - return ff_get_video_buffer(outlink, w, h); -} - static int filter_frame(AVFilterLink *inlink, AVFrame *frame) { AVFilterContext *ctx = inlink->dst; @@ -174,7 +166,6 @@ static const AVFilterPad avfilter_vf_fieldorder_inputs[] = { .name = "default", .type = AVMEDIA_TYPE_VIDEO, .config_props = config_input, - .get_video_buffer = get_video_buffer, .filter_frame = filter_frame, .needs_writable = 1, }, |