]> git.sesse.net Git - mlt/blobdiff - src/modules/core/filter_gamma.c
add framerate adaption to consumer producer
[mlt] / src / modules / core / filter_gamma.c
index 710cbaa06eb6709830eec1e78ec979593dce38ec..08cfdcaab8a901ae099a8d6613049d9df170d4d3 100644 (file)
@@ -18,8 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "filter_gamma.h"
-
+#include <framework/mlt_filter.h>
 #include <framework/mlt_frame.h>
 
 #include <stdio.h>
 
 static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
 {
+       *format = mlt_image_yuv422;
        int error = mlt_frame_get_image( this, image, format, width, height, 1 );
 
-       if ( error == 0 && *format == mlt_image_yuv422 )
+       if ( error == 0 )
        {
                // Get the gamma value
                double gamma = mlt_properties_get_double( MLT_FRAME_PROPERTIES( this ), "gamma" );
@@ -77,7 +77,7 @@ static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
 /** Constructor for the filter.
 */
 
-mlt_filter filter_gamma_init( char *arg )
+mlt_filter filter_gamma_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
 {
        mlt_filter this = mlt_filter_new( );
        if ( this != NULL )