On Sunday 01 January 2012 14:22:52 Dan Dennedy wrote: > On Sun, Jan 1, 2012 at 1:50 PM, j-b-m <[email protected]> wrote: > > Hello there! > > > > There are a few problems with the videostab module that currently make it > > unusable in Kdenlive. > > > > First, the filter crashes if more than one instance is used, because of > > the > > way lanc_kernel is used. > > > > This is reproducible for me with: > > > > melt stab.mlt stab.mlt > > > > (stab.mlt being a stabilized clip, playing it twice brings the crash). > > > > The crash happens when quitting melt, trying to close the 2 instances of > > the > > filter creates a double free corruption crash on lanc_kernel: > marco, it would be nice if you can take a look at this one. I just > fixed the build problem.
Hi Dan & Marco. Thanks for your quick feedback. The build problem is not yet solved, the simple patch below is required to make Dan's fix useful. I did a quick test with Marco's recent changes and it seems to work in Kdenlive now, great. regards diff --git a/src/modules/videostab/Makefile b/src/modules/videostab/Makefile index 38167d0..c6b45fd 100644 --- a/src/modules/videostab/Makefile +++ b/src/modules/videostab/Makefile @@ -1,3 +1,5 @@ +include ../../../config.mak + CFLAGS += -I../.. ifdef SSE2_FLAGS CFLAGS += -msse2 @@ -5,7 +7,6 @@ endif LDFLAGS += -L../../framework -lmlt -lm -include ../../../config.mak TARGET = ../libmltvideostab$(LIBSUF) ------------------------------------------------------------------------------ Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver seamless, secure access to virtual desktops. With this all-in-one solution, easily deploy virtual desktops for less than the cost of PCs and save 60% on VDI infrastructure costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox _______________________________________________ Mlt-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mlt-devel
