From 65520f5933b41f779a161c3896c64e63007b6f38 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 2 Aug 2012 11:59:57 +0200 Subject: lavfi/video: remove duplicated function ff_null_start_frame_keep_ref() Semantic for the function ff_null_start_frame() was changed in 07bad27810cd, and it has now the same behavior of ff_null_start_frame_keep_ref(), thus it makes no sense to keep both of them. --- libavfilter/vf_bbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/vf_bbox.c') diff --git a/libavfilter/vf_bbox.c b/libavfilter/vf_bbox.c index b59d1bc3a8..a3b8a23758 100644 --- a/libavfilter/vf_bbox.c +++ b/libavfilter/vf_bbox.c @@ -100,7 +100,7 @@ AVFilter avfilter_vf_bbox = { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer = ff_null_get_video_buffer, - .start_frame = ff_null_start_frame_keep_ref, + .start_frame = ff_null_start_frame, .end_frame = end_frame, .min_perms = AV_PERM_READ, }, { .name = NULL } -- cgit v1.2.3