]> git.sesse.net Git - mlt/blobdiff - src/modules/core/transition_mix.c
framework: remove global profile, rather share one mlt_profile across a service netwo...
[mlt] / src / modules / core / transition_mix.c
index 1dfda2e8236032513fc069273342dd279ec946cc..d3bad10c0fc33c471dd3265fa86537c3c5c22b5e 100644 (file)
@@ -18,7 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "transition_mix.h"
+#include <framework/mlt_transition.h>
 #include <framework/mlt_frame.h>
 
 #include <stdio.h>
@@ -150,7 +150,7 @@ static mlt_frame transition_process( mlt_transition this, mlt_frame a_frame, mlt
 /** Constructor for the transition.
 */
 
-mlt_transition transition_mix_init( char *arg )
+mlt_transition transition_mix_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
 {
        mlt_transition this = calloc( sizeof( struct mlt_transition_s ), 1 );
        if ( this != NULL && mlt_transition_init( this, NULL ) == 0 )