Re: [Mlt-devel] [PATCH] Fix compilation with ffmpeg 0.6

2012-01-28 Thread Dan Dennedy
On Sat, Jan 28, 2012 at 2:43 PM, j-b-m wrote: > Hi. > > Attached patch fixes compilation with FFmpeg 0.6 that is still the official > version for Ubuntu 10.11 and 11.04 fixed a different way -- +-DRD-+ -- Try before yo

[Mlt-devel] Git: fix build on ffmpeg 0.6

2012-01-28 Thread Dan Dennedy
src/modules/avformat/consumer_avformat.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) New commits: commit 5d425bad46ac09dd4e4620e79cddbab77f0ddfc4 Author: Dan Dennedy Date: Sat Jan 28 15:10:32 2012 -0800 fix build on ffmpeg 0.6 -

Re: [Mlt-devel] git build fails at filter_avresample.c

2012-01-28 Thread Dan Dennedy
On Sat, Jan 28, 2012 at 2:16 PM, sean darcy wrote: > On 01/28/2012 05:06 PM, sean darcy wrote: >> On Fedora 15 with ffmpeg 0.10: >> >> cc -Ofast  -march=native -mtune=native -fopenmp -fomit-frame-pointer >> -pipe -Wall -DPIC   -O2 -pipe -fno-tree-dominator-opts -fno-tree-pre >> -ffast-math -DUSE_M

[Mlt-devel] Git: fix SAMPLE_FMT support for v0.6 and less of libav/ffmpeg

2012-01-28 Thread Dan Dennedy
src/modules/avformat/consumer_avformat.c |9 +++-- src/modules/avformat/filter_avresample.c |4 +++- src/modules/avformat/producer_avformat.c | 11 +-- 3 files changed, 19 insertions(+), 5 deletions(-) New commits: commit 07bcc2e6aa647823e21f8dfad627533fec43be62 Author: Dan

[Mlt-devel] Git: convert all SAMPLE_FMT_16 to AV_SAMPLE_FMT_16

2012-01-28 Thread Dan Dennedy
src/modules/avformat/filter_avresample.c |5 - src/modules/avformat/producer_avformat.c | 12 ++-- 2 files changed, 10 insertions(+), 7 deletions(-) New commits: commit 5ab4fbb4ab2ef4889cfb6d54a596187fefabbe85 Author: Dan Dennedy Date: Sat Jan 28 14:47:47 2012 -0800 conv

[Mlt-devel] [PATCH] Fix compilation with ffmpeg 0.6

2012-01-28 Thread j-b-m
Hi. Attached patch fixes compilation with FFmpeg 0.6 that is still the official version for Ubuntu 10.11 and 11.04 regards jbdiff --git a/src/modules/avformat/consumer_avformat.c b/src/modules/avformat/consumer_avformat.c index 5fdf9b3..0007c2c 100644 --- a/src/modules/avformat/consumer_avformat

Re: [Mlt-devel] git build fails at filter_avresample.c

2012-01-28 Thread sean darcy
On 01/28/2012 05:06 PM, sean darcy wrote: > On Fedora 15 with ffmpeg 0.10: > > cc -Ofast -march=native -mtune=native -fopenmp -fomit-frame-pointer > -pipe -Wall -DPIC -O2 -pipe -fno-tree-dominator-opts -fno-tree-pre > -ffast-math -DUSE_MMX -DUSE_SSE -DUSE_SSE2 -g -D_FILE_OFFSET_BITS=64 > -D_LARG

[Mlt-devel] git build fails at filter_avresample.c

2012-01-28 Thread sean darcy
On Fedora 15 with ffmpeg 0.10: cc -Ofast -march=native -mtune=native -fopenmp -fomit-frame-pointer -pipe -Wall -DPIC -O2 -pipe -fno-tree-dominator-opts -fno-tree-pre -ffast-math -DUSE_MMX -DUSE_SSE -DUSE_SSE2 -g -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DARCH_X86_64 -fPIC -pthread -Wall -D

Re: [Mlt-devel] [PATCH] XML consumer crash

2012-01-28 Thread Dan Dennedy
On Sat, Jan 28, 2012 at 9:20 AM, j-b-m wrote: > Hi. > > Since the recent changes to the xml consumer, lots of crashes were reported in > Kdenlive. I traced it down to a problem in a free, see my attached patch that > fixes the issue. > applied with a little formatting and comment > regards, > >

[Mlt-devel] Git: fix invalid free when making absolute path relative

2012-01-28 Thread Dan Dennedy
src/modules/xml/consumer_xml.c | 14 +- 1 files changed, 9 insertions(+), 5 deletions(-) New commits: commit 19ad48d97e2a968c6910983d799dd68bc1bd55af Author: Dan Dennedy Date: Sat Jan 28 11:31:42 2012 -0800 fix invalid free when making absolute path relative Patch b

[Mlt-devel] Git: fix string allocation length

2012-01-28 Thread Dan Dennedy
src/modules/xml/consumer_xml.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) New commits: commit 2e60f3ab0772188906b77d9452238657a58ba8ac Author: Dan Dennedy Date: Sat Jan 28 11:20:35 2012 -0800 fix string allocation length -

[Mlt-devel] Git: correct documentation of mlt_service_disconnect

2012-01-28 Thread Dan Dennedy
src/framework/mlt_service.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) New commits: commit f07ef67a2f29d0fe311f5730311e04e1ef2b6b45 Author: Dan Dennedy Date: Sat Jan 28 11:19:41 2012 -0800 correct documentation of mlt_service_disconnect -

[Mlt-devel] consumer xml string corruption

2012-01-28 Thread j-b-m
Hi again, Another problem appears in the new filter_restricted function from the xml consumer. It appears to corrupt some strings (random character appearing at the end), causing rendering issues in Kdenlive. The patch below seems to solve it. regards jb diff --git a/src/modules/xml/consumer_

[Mlt-devel] [PATCH] XML consumer crash

2012-01-28 Thread j-b-m
Hi. Since the recent changes to the xml consumer, lots of crashes were reported in Kdenlive. I traced it down to a problem in a free, see my attached patch that fixes the issue. regards, jb diff --git a/src/modules/xml/consumer_xml.c b/src/modules/xml/consumer_xml.c index 2b0f6bc..5f10f59 1