Rudimentary arithmetic property assignment
[melted] / src / framework / mlt_field.c
index a54d97e..eede159 100644 (file)
@@ -89,6 +89,14 @@ mlt_multitrack mlt_field_multitrack( mlt_field this )
        return this->multitrack;
 }
 
+/** Get the tractor.
+*/
+
+mlt_tractor mlt_field_tractor( mlt_field this )
+{
+       return this->tractor;
+}
+
 /** Get the properties associated to this field.
 */
 
@@ -144,8 +152,6 @@ int mlt_field_plant_transition( mlt_field this, mlt_transition that, int a_track
 
 void mlt_field_close( mlt_field this )
 {
-       mlt_tractor_close( this->tractor );
-       mlt_multitrack_close( this->multitrack );
        free( this );
 }