Re: [Mlt-devel] planning to release MLT this weekend

2012-02-09 Thread Maksym Veremeyenko
09.02.12 07:18, Dan Dennedy написав(ла): > I want to make a new release this weekend after I resolve of couple of > Maksym's patches. may be it has a sense to include sse2 and yuva fixes into next release... -- Maksym Veremeyenko

Re: [Mlt-devel] planning to release MLT this weekend

2012-02-09 Thread Dan Dennedy
2012/2/9 Maksym Veremeyenko : > 09.02.12 07:18, Dan Dennedy написав(ла): > >> I want to make a new release this weekend after I resolve of couple of >> Maksym's patches. > > may be it has a sense to include sse2 and yuva fixes into next release... Support for alpha from yuva is not going into it,

Re: [Mlt-devel] [PATCH] fix thread exit on error and thread termination

2012-02-09 Thread Maksym Veremeyenko
08.02.12 20:11, Dan Dennedy написав(ла): [...] > Well, the more critical goal was to fix a segfault, but I see your > point now about using "running" to cleanup "thread." I did not like > your conversion of the thread property from data to a int64; do you > know how data properties provide destruct

Re: [Mlt-devel] [PATCH] fix thread exit on error and thread termination

2012-02-09 Thread Dan Dennedy
2012/2/9 Maksym Veremeyenko : > 08.02.12 20:11, Dan Dennedy написав(ла): > [...] > >> Well, the more critical goal was to fix a segfault, but I see your >> point now about using "running" to cleanup "thread." I did not like >> your conversion of the thread property from data to a int64; do you >> k

Re: [Mlt-devel] opengl support

2012-02-09 Thread Christophe Thommeret
Hi Dan, I can now run "melt -consumer qgl clip.xxx" In this case, glsl.csc is created instead of avcolor_space. It does rgb24/rgb24a/yuv420p/yuv422 to gl texture. It calls mlt_frame_set_image( frame, (uint8_t*)dest, sizeof(struct glsl_texture_s), g->texture_destructor ); and sets "format

Re: [Mlt-devel] opengl support

2012-02-09 Thread Dan Dennedy
On Thu, Feb 9, 2012 at 1:03 PM, Christophe Thommeret wrote: > Hi Dan, > > I can now run "melt -consumer qgl clip.xxx" > In this case, glsl.csc is created instead of avcolor_space. > It does rgb24/rgb24a/yuv420p/yuv422 to gl texture. > It calls > mlt_frame_set_image( frame, (uint8_t*)dest, >      

Re: [Mlt-devel] opengl support

2012-02-09 Thread Christophe Thommeret
Le jeudi 9 février 2012 23:34:14, Dan Dennedy a écrit : > On Thu, Feb 9, 2012 at 1:03 PM, Christophe Thommeret wrote: > > Hi Dan, > > > > I can now run "melt -consumer qgl clip.xxx" > > In this case, glsl.csc is created instead of avcolor_space. > > It does rgb24/rgb24a/yuv420p/yuv422 to gl textu

[Mlt-devel] yml validation

2012-02-09 Thread Brian Matherly
Dan, Could you please make this tweak to the Makefile so that make returns an error if a yml file fails to validate? https://github.com/pez4brian/mlt/commit/cebee0605a027e6ff754ab79d78b2dda183f35a5 Thanks, ~Brian -- V

Re: [Mlt-devel] opengl support

2012-02-09 Thread Dan Dennedy
On Thu, Feb 9, 2012 at 3:12 PM, Christophe Thommeret wrote: > Le jeudi 9 février 2012 23:34:14, Dan Dennedy a écrit : >> Note also that with consumer.real_time <> 0 there is a thread running >> to pre-render frames, and that thread defaults to mlt_image_yuv422, >> but you can change it by setting

[Mlt-devel] Git: fix swfdec/configure appending to config.mak

2012-02-09 Thread Dan Dennedy
Makefile |2 +- src/modules/swfdec/configure |1 + 2 files changed, 2 insertions(+), 1 deletions(-) New commits: commit 86a9b5d362d0d671f401ae973c028b5854d3b960 Author: Dan Dennedy Date: Thu Feb 9 20:08:24 2012 -0800 fix swfdec/configure appending to config.mak

Re: [Mlt-devel] yml validation

2012-02-09 Thread Dan Dennedy
On Thu, Feb 9, 2012 at 7:11 PM, Brian Matherly wrote: > Dan, > > Could you please make this tweak to the Makefile so that make returns an > error if a yml file fails to validate? > https://github.com/pez4brian/mlt/commit/cebee0605a027e6ff754ab79d78b2dda183f35a5 > done. I added the link to your T

Re: [Mlt-devel] yml validation

2012-02-09 Thread Brian Matherly
>> Could you please make this tweak to the Makefile so that make returns an > error if a yml file fails to validate? >> > https://github.com/pez4brian/mlt/commit/cebee0605a027e6ff754ab79d78b2dda183f35a5 >> > > done. > I added the link to your TeamCity build server on the ToDo page of the > wi

[Mlt-devel] Git: scale size and position of rendered text with resolution

2012-02-09 Thread Dan Dennedy
src/modules/qimage/transition_vqm.cpp | 13 ++--- 1 files changed, 10 insertions(+), 3 deletions(-) New commits: commit 752801f55fdf02488e54a37962db9fea81853aaa Author: Dan Dennedy Date: Thu Feb 9 20:52:36 2012 -0800 scale size and position of rendered text with resolution comm

Re: [Mlt-devel] [PATCH] use sse2 instruction for line compositing

2012-02-09 Thread Dan Dennedy
2012/2/2 Maksym Veremeyenko : > Hi, > > attached patch perform line compositing for SSE2+ARCH_X86_64 build. It works > for a case where luma is not defined... Hi Maksym, did some more testing and ran into a couple of image quality problems. First, alpha blending seems poor, mostly noticeable with

[Mlt-devel] Git: fix possible mem corruption in filter_restricted()

2012-02-09 Thread Dan Dennedy
src/modules/xml/consumer_xml.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) New commits: commit 1f91ecd127d6b723846f6ad4e2d58feae767f650 Author: Dan Dennedy Date: Thu Feb 9 22:28:45 2012 -0800 fix possible mem corruption in filter_restricted()

Re: [Mlt-devel] [PATCH] fix thread exit on error and thread termination

2012-02-09 Thread Maksym Veremeyenko
09.02.12 20:28, Dan Dennedy написав(ла): > 2012/2/9 Maksym Veremeyenko: >> 08.02.12 20:11, Dan Dennedy написав(ла): >> [...] >> >>> Well, the more critical goal was to fix a segfault, but I see your >>> point now about using "running" to cleanup "thread." I did not like >>> your conversion of the t