[FFmpeg-cvslog] vf_fieldorder: remove superfluous get_video_buffer
Vittorio Giovara
git at videolan.org
Mon Nov 4 21:20:14 CET 2013
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Mon Nov 4 14:37:06 2013 +0100| [446e37dc97e533e37f6aa0a11355124207e3a7f7] | committer: Vittorio Giovara
vf_fieldorder: remove superfluous get_video_buffer
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=446e37dc97e533e37f6aa0a11355124207e3a7f7
---
libavfilter/vf_fieldorder.c | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/libavfilter/vf_fieldorder.c b/libavfilter/vf_fieldorder.c
index a930e15..5185cf4 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,
},
More information about the ffmpeg-cvslog
mailing list