]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_repository.h
framework: remove global profile, rather share one mlt_profile across a service netwo...
[mlt] / src / framework / mlt_repository.h
index 5332c57735a6aca0366c1ec4256f8181b5d80adf..f4b2e2c3974afc8eb920339b29375a829d149dfd 100644 (file)
@@ -22,6 +22,7 @@
 #define _MLT_REPOSITORY_H_
 
 #include "mlt_types.h"
+#include "mlt_profile.h"
 
 /** Repository structure forward reference.
 */
@@ -32,7 +33,7 @@ typedef struct mlt_repository_s *mlt_repository;
 */
 
 extern mlt_repository mlt_repository_init( mlt_properties object_list, const char *prefix, const char *file, const char *symbol );
-extern void *mlt_repository_fetch( mlt_repository self, const char *service, void *input );
+extern void *mlt_repository_fetch( mlt_repository self, mlt_profile profile, mlt_service_type type, const char *service, void *input );
 extern void mlt_repository_close( mlt_repository self );
 
 #endif