alcinos

Results 29 comments of alcinos

Is flowblade relying on xml to create producers at some point?

Ok, that's indeed warrants further investigation. Regarding the xml producer, it is counter-intuitive that creating the producer has side-effects on the profile. This should be either prevented, preventable or at...

I modified the test code a bit: ``` #include using namespace Mlt; int main( int, char **argv ) { Factory::init( NULL ); Profile profile; Producer producer(profile,"color", "red"); producer.set("length", 20); producer.set("out",...

This commit solves the problem when there is no plugin. I'll try to have a look at the other problems.

For frei0r, one source of the leaks are the line looking registering the metadata ``` MLT_REGISTER_METADATA( producer_type, pluginname, fill_param_info, strdup(name) ); ``` (factory.c:461, 470 and 479) The strdup seems not...

The investigation goes on! I've tried to trackdown the leaks in libmltsox. The traceback is poor, I assume it is because of the dlopen step. So I tried to call...

Here is a proposition including the modifications: https://gist.github.com/alcinos/3bedb2f7c4518fa93220

@futurely The point is that the net structure should be independant from the nodes. The same node can be involved in different topologies depending on the context. For example, in...

@pavanky Well let's say we have a 3 layers stacked auto-encoder. I will denote by "O" an output layer, "I" an input layer, "E" an encoding layer and "D" a...