strcmp( name, "in" ) != 0 &&
strcmp( name, "out" ) != 0 &&
strcmp( name, "id" ) != 0 &&
+ strcmp( name, "title" ) != 0 &&
strcmp( name, "root" ) != 0 &&
strcmp( name, "width" ) != 0 &&
strcmp( name, "height" ) != 0 )
int out = mlt_properties_get_position( properties, "out" );
p = xmlNewChild( node, NULL, "filter", NULL );
xmlNewProp( p, "id", id );
+ if ( mlt_properties_get( properties, "title" ) )
+ xmlNewProp( p, "title", mlt_properties_get( properties, "title" ) );
if ( in != 0 || out != 0 )
{
char temp[ 20 ];
// Set the id
xmlNewProp( child, "id", id );
+ if ( mlt_properties_get( properties, "title" ) )
+ xmlNewProp( child, "title", mlt_properties_get( properties, "title" ) );
xmlNewProp( child, "in", mlt_properties_get( properties, "in" ) );
xmlNewProp( child, "out", mlt_properties_get( properties, "out" ) );
serialise_properties( context, properties, child );
// Set the id
xmlNewProp( child, "id", id );
+ if ( mlt_properties_get( properties, "title" ) )
+ xmlNewProp( child, "title", mlt_properties_get( properties, "title" ) );
// Store application specific properties
serialise_store_properties( context, properties, child, context->store );
// Set the id
xmlNewProp( child, "id", id );
+ if ( mlt_properties_get( properties, "title" ) )
+ xmlNewProp( child, "title", mlt_properties_get( properties, "title" ) );
+ if ( mlt_properties_get( properties, "global_feed" ) )
+ xmlNewProp( child, "global_feed", mlt_properties_get( properties, "global_feed" ) );
xmlNewProp( child, "in", mlt_properties_get( properties, "in" ) );
xmlNewProp( child, "out", mlt_properties_get( properties, "out" ) );
// Set the id
xmlNewProp( child, "id", id );
+ if ( mlt_properties_get( properties, "title" ) )
+ xmlNewProp( child, "title", mlt_properties_get( properties, "title" ) );
xmlNewProp( child, "in", mlt_properties_get( properties, "in" ) );
xmlNewProp( child, "out", mlt_properties_get( properties, "out" ) );
// Set the id
xmlNewProp( child, "id", id );
+ if ( mlt_properties_get( properties, "title" ) )
+ xmlNewProp( child, "title", mlt_properties_get( properties, "title" ) );
xmlNewProp( child, "in", mlt_properties_get( properties, "in" ) );
xmlNewProp( child, "out", mlt_properties_get( properties, "out" ) );
// Assign a title property
if ( mlt_properties_get( properties, "title" ) != NULL )
xmlNewProp( root, "title", mlt_properties_get( properties, "title" ) );
+ mlt_properties_set_int( properties, "global_feed", 1 );
// Construct the context maps
context->id_map = mlt_properties_new();