From 4868855b13058896075f583ce17c890f9b70bdb6 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 10 May 2013 17:37:50 +0000 Subject: [PATCH] lavfi/select: set forgotten VAR_PICT_TYPE_BI Signed-off-by: Paul B Mahol --- libavfilter/f_select.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/f_select.c b/libavfilter/f_select.c index b0df507d00..5237fc3818 100644 --- a/libavfilter/f_select.c +++ b/libavfilter/f_select.c @@ -205,6 +205,7 @@ static int config_input(AVFilterLink *inlink) select->var_values[VAR_PICT_TYPE_B] = AV_PICTURE_TYPE_B; select->var_values[VAR_PICT_TYPE_SI] = AV_PICTURE_TYPE_SI; select->var_values[VAR_PICT_TYPE_SP] = AV_PICTURE_TYPE_SP; + select->var_values[VAR_PICT_TYPE_BI] = AV_PICTURE_TYPE_BI; select->var_values[VAR_INTERLACE_TYPE_P] = INTERLACE_TYPE_P; select->var_values[VAR_INTERLACE_TYPE_T] = INTERLACE_TYPE_T;