Commit 270e0812 authored by Rafaël Carré's avatar Rafaël Carré

Workaround invalid use reference counting of pictures

parent a095d6b7
......@@ -311,7 +311,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
p_pic_dst->b_progressive = p_pic->b_progressive;
p_pic_dst->b_top_field_first = p_pic->b_top_field_first;
p_pic->pf_release( p_pic );
if( p_pic->pf_release )
p_pic->pf_release( p_pic );
return p_pic_dst;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment