X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Favformat%2Ffilter_avdeinterlace.c;h=35e6541526247a373b656691987c2d285937b5de;hb=789602d13b803a0247634d15769c372b510307f8;hp=f1d1a3f3a6ceb4600c884d4fdbf765d99c01b27c;hpb=1f8135566477df29f2b62528f9bf18359c0ab971;p=melted diff --git a/src/modules/avformat/filter_avdeinterlace.c b/src/modules/avformat/filter_avdeinterlace.c index f1d1a3f..35e6541 100644 --- a/src/modules/avformat/filter_avdeinterlace.c +++ b/src/modules/avformat/filter_avdeinterlace.c @@ -26,7 +26,7 @@ #include // ffmpeg Header files -#include +#include #ifdef USE_MMX #include "mmx.h" @@ -297,8 +297,8 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format * // Check that we want progressive and we aren't already progressive if ( *format == mlt_image_yuv422 && - !mlt_properties_get_int( mlt_frame_properties( this ), "progressive" ) && - mlt_properties_get_int( mlt_frame_properties( this ), "consumer_deinterlace" ) ) + !mlt_properties_get_int( MLT_FRAME_PROPERTIES( this ), "progressive" ) && + mlt_properties_get_int( MLT_FRAME_PROPERTIES( this ), "consumer_deinterlace" ) ) { // Create a picture AVPicture *output = mlt_pool_alloc( sizeof( AVPicture ) ); @@ -317,7 +317,7 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format * mlt_pool_release( output ); // Make sure that others know the frame is deinterlaced - mlt_properties_set_int( mlt_frame_properties( this ), "progressive", 1 ); + mlt_properties_set_int( MLT_FRAME_PROPERTIES( this ), "progressive", 1 ); } else {