]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_properties.c
Some fixes for alpha masks
[mlt] / src / framework / mlt_properties.c
index 1d13714634b051a3e815981dd76650378de08452..ab2c206fc70bb7a08bd8047b887efcef8c3bd91d 100644 (file)
@@ -648,6 +648,8 @@ void mlt_properties_debug( mlt_properties this, char *title, FILE *output )
                for ( i = 0; i < list->count; i ++ )
                        if ( mlt_properties_get( this, list->name[ i ] ) != NULL )
                                fprintf( output, ", %s=%s", list->name[ i ], mlt_properties_get( this, list->name[ i ] ) );
+                       else
+                               fprintf( output, ", %s=%p", list->name[ i ], mlt_properties_get_data( this, list->name[ i ], NULL ) );
                fprintf( output, " ]" );
        }
        fprintf( stderr, "\n" );