]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_properties.h
Rename functions with _pos to anim_.
[mlt] / src / framework / mlt_properties.h
index 5832ccfa8b6ec3a8b19c152ce7866526be277e7b..93c283cd05abcb81be5d1c1d923384cd32f99448 100644 (file)
@@ -90,13 +90,13 @@ extern void mlt_properties_lock( mlt_properties self );
 extern void mlt_properties_unlock( mlt_properties self );
 extern char *mlt_properties_get_time( mlt_properties, const char* name, mlt_time_format );
 
-extern int mlt_properties_get_int_pos( mlt_properties self, const char *name, int position, int length );
-extern int mlt_properties_set_int_pos( mlt_properties self, const char *name, int value, mlt_keyframe_type keyframe_type, int position, int length );
+extern int mlt_properties_anim_get_int( mlt_properties self, const char *name, int position, int length );
+extern int mlt_properties_anim_set_int( mlt_properties self, const char *name, int value, mlt_keyframe_type keyframe_type, int position, int length );
 
 extern int mlt_properties_set_rect( mlt_properties self, const char *name, mlt_rect value );
 extern mlt_rect mlt_properties_get_rect( mlt_properties self, const char *name );
 
-extern int mlt_properties_set_rect_pos( mlt_properties self, const char *name, mlt_rect value, mlt_keyframe_type keyframe_type, int position, int length );
-extern mlt_rect mlt_properties_get_rect_pos( mlt_properties self, const char *name, int position, int length );
+extern int mlt_properties_anim_set_rect( mlt_properties self, const char *name, mlt_rect value, mlt_keyframe_type keyframe_type, int position, int length );
+extern mlt_rect mlt_properties_anim_get_rect( mlt_properties self, const char *name, int position, int length );
 
 #endif