From 469d07a0e41718bf3b7393badb958434cf3eaead Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Tue, 14 Aug 2012 18:49:17 +0200 Subject: [PATCH] vf_select: require AV_PERM_PRESERVE. This is only necessary because of the poll_frame implementation. Removing it altogether would be another solution. --- libavfilter/vf_select.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c index db1b038069..d47876bbba 100644 --- a/libavfilter/vf_select.c +++ b/libavfilter/vf_select.c @@ -416,6 +416,7 @@ AVFilter avfilter_vf_select = { .inputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer = ff_null_get_video_buffer, + .min_perms = AV_PERM_PRESERVE, .config_props = config_input, .start_frame = start_frame, .draw_slice = draw_slice,