From c9e183b490add7e3712974fec85db6c86c13b671 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 16 Jun 2012 09:47:46 +0000 Subject: lavfi: update some deprecated functions Signed-off-by: Paul B Mahol --- libavfilter/vf_bbox.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavfilter/vf_bbox.c') diff --git a/libavfilter/vf_bbox.c b/libavfilter/vf_bbox.c index f8dc625524..6fc693517c 100644 --- a/libavfilter/vf_bbox.c +++ b/libavfilter/vf_bbox.c @@ -52,7 +52,7 @@ static int query_formats(AVFilterContext *ctx) PIX_FMT_NONE, }; - avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts)); + ff_set_common_formats(ctx, ff_make_format_list(pix_fmts)); return 0; } @@ -87,7 +87,7 @@ static void end_frame(AVFilterLink *inlink) bbox->frame++; avfilter_unref_buffer(picref); - avfilter_end_frame(inlink->dst->outputs[0]); + ff_end_frame(inlink->dst->outputs[0]); } AVFilter avfilter_vf_bbox = { @@ -100,7 +100,7 @@ AVFilter avfilter_vf_bbox = { .inputs = (const AVFilterPad[]) { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, - .get_video_buffer = avfilter_null_get_video_buffer, + .get_video_buffer = ff_null_get_video_buffer, .start_frame = ff_null_start_frame_keep_ref, .end_frame = end_frame, .min_perms = AV_PERM_READ, }, -- cgit v1.2.3