Commit ec2fa765 authored by Rafaël Carré's avatar Rafaël Carré

Another workaround to not forbid development

I should do a real fix within a short time
Probably using vlc_gc_* for picture_t
parent 1b72149a
......@@ -234,6 +234,7 @@ 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