Browse Source

Set nb_fields to 2 for p_dst[0], too

Signed-off-by: Laurent Aimar <fenrir@videolan.org>
pull/2/head
Juha Jeronen 15 years ago
committed by Laurent Aimar
parent
commit
542f25d1b3
  1. 3
      modules/video_filter/deinterlace.c

3
modules/video_filter/deinterlace.c

@ -2563,8 +2563,7 @@ static picture_t *Deinterlace( filter_t *p_filter, picture_t *p_pic )
}
}
p_dst[0]->b_progressive = true;
for( int i = 1; i < DEINTERLACE_DST_SIZE; ++i )
for( int i = 0; i < DEINTERLACE_DST_SIZE; ++i )
{
if( p_dst[i] )
{

Loading…
Cancel
Save