Memory pooling part 2 and other optimisations
[melted] / src / framework / mlt_properties.c
index b781660..d830e44 100644 (file)
@@ -144,7 +144,7 @@ static mlt_property mlt_properties_add( mlt_properties this, char *name )
        // Check that we have space and resize if necessary
        if ( list->count == list->size )
        {
-               list->size += 10;
+               list->size += 50;
                list->name = realloc( list->name, list->size * sizeof( char * ) );
                list->value = realloc( list->value, list->size * sizeof( mlt_property ) );
        }