X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_profile.h;h=6b0c42d9f328d82b31f9fe6e55eefd21a96cd7d6;hb=f0f9e433051b21e14471bb48bc5d140e6c2b14c5;hp=29ee633d4ba47dd824ace2fa6c09f2045c6e186b;hpb=40b169c095486ba1b868486eb98a47c41f36ce8c;p=melted diff --git a/src/framework/mlt_profile.h b/src/framework/mlt_profile.h index 29ee633..6b0c42d 100644 --- a/src/framework/mlt_profile.h +++ b/src/framework/mlt_profile.h @@ -25,7 +25,7 @@ struct mlt_profile_s { - char* name; + char* description; int frame_rate_num; int frame_rate_den; int width; @@ -37,13 +37,12 @@ struct mlt_profile_s int display_aspect_den; }; -extern mlt_profile mlt_profile_get( ); -extern mlt_profile mlt_profile_select( const char *name ); +extern mlt_profile mlt_profile_init( const char *name ); extern mlt_profile mlt_profile_load_file( const char *file ); extern mlt_profile mlt_profile_load_properties( mlt_properties properties ); extern mlt_profile mlt_profile_load_string( const char *string ); extern double mlt_profile_fps( mlt_profile profile ); extern double mlt_profile_sar( mlt_profile profile ); extern double mlt_profile_dar( mlt_profile profile ); -extern void mlt_profile_close( ); +extern void mlt_profile_close( mlt_profile profile ); #endif