[FFmpeg-devel] [PATCH 1/4] lavfi/fieldorder: remove redundant get_video_buffer()
Paul B Mahol
onemda at gmail.com
Fri Sep 6 16:45:28 CEST 2013
Signed-off-by: Paul B Mahol <onemda at gmail.com>
---
libavfilter/vf_fieldorder.c | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/libavfilter/vf_fieldorder.c b/libavfilter/vf_fieldorder.c
index 7ff8841..16310ce 100644
--- a/libavfilter/vf_fieldorder.c
+++ b/libavfilter/vf_fieldorder.c
@@ -82,14 +82,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;
@@ -163,7 +155,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,
},
--
1.7.11.2
More information about the ffmpeg-devel
mailing list