Skip to content

Commit

Permalink
Do not deinterlace framw with test_image.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Mar 24, 2013
1 parent bd5eb4c commit 2aa5821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/xine/filter_deinterlace.c
Expand Up @@ -195,7 +195,7 @@ static int filter_get_image( mlt_frame frame, uint8_t **image, mlt_image_format
// At this point - before image was requested - (progressive == 0) cannot be trusted because
// some producers (avformat) do not yet know.

if ( deinterlace )
if ( deinterlace && !mlt_properties_get_int( properties, "test_image" ) )
{
// Determine deinterlace method
char *method_str = mlt_properties_get( MLT_FILTER_PROPERTIES( filter ), "method" );
Expand Down

0 comments on commit 2aa5821

Please sign in to comment.