Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-11-29 05:09:40 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-11-29 05:09:40 +0400
commit88f8af26a92b66f1e7cdace21be01df25278b0b3 (patch)
treea722524d09001711b194c666ce06f33f34966635 /libavfilter/vf_format.c
parent7c42814782e3b68e908fc91c690767ff5069884c (diff)
vf_format: switch to filter_frame
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_format.c')
-rw-r--r--libavfilter/vf_format.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c
index e33c25e6af..df3c77ab99 100644
--- a/libavfilter/vf_format.c
+++ b/libavfilter/vf_format.c
@@ -102,9 +102,6 @@ static const AVFilterPad avfilter_vf_format_inputs[] = {
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
- .start_frame = ff_null_start_frame,
- .draw_slice = ff_null_draw_slice,
- .end_frame = ff_null_end_frame,
},
{ NULL }
};
@@ -144,9 +141,6 @@ static const AVFilterPad avfilter_vf_noformat_inputs[] = {
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
- .start_frame = ff_null_start_frame,
- .draw_slice = ff_null_draw_slice,
- .end_frame = ff_null_end_frame,
},
{ NULL }
};