Re: [FFmpeg-devel] Patch for Cast128 algorithm implementation

2014-10-15 Thread Michael Niedermayer
On Thu, Oct 16, 2014 at 03:25:42AM +0530, supraja reddy wrote: > Extremely sorry for resending the patch . There was a trailing whitespace > which I hadn't corrected . > All the changes are done . > Please let me if any changes needed further . [...] > diff --git a/libavutil/cast5.c b/libavutil/cas

Re: [FFmpeg-devel] patch: fix buf in configure to ensure theHAVE_VSX is only enabled when HAVE_ALTIVECT is enabled

2014-10-15 Thread rongyan
Hi, Since the code HAVE_VSX covered is part of the altivec implementation, but not a independent implementaiton for all the code covered by macro HAVE_ALTIVEC. If HAVE_ALTIVEC is disabled, but only HAVE_VSX is enabled, the code will crash. Thanks. Rong Yan -- The wor

[FFmpeg-devel] Fix bug for POWER LE: libswscale/ppc/swscale_altivec.c

2014-10-15 Thread rongyan
Hi, I created a patch to fix the bug in file libswscale/ppc/swscale_altivec.c for POWER LE. The fixed functions including 'hScale_altivec_real()', 'yuv2planeX_16_altivec()', and 'yuv2planeX_8()'. The fate test result can be found on http://fate.ffmpeg.org/ by search "ibmcrl", also attached here

Re: [FFmpeg-devel] [PATCH] lavf/mov.c: Allocate buffer in case of long metadata entries.

2014-10-15 Thread Michael Niedermayer
On Mon, Oct 13, 2014 at 09:40:42AM +0200, Thilo Borgmann wrote: > Am 11.10.14 16:19, schrieb Nicolas George: > > [...] > > all remarks applied. > > -Thilo > > mov.c | 16 > 1 file changed, 12 insertions(+), 4 deletions(-) > cabb6e51de7f9329603561773f209b6a948478ce > 0001-l

Re: [FFmpeg-devel] [PATCH] mpegts: add the judgement if a new program is ctreated successfully

2014-10-15 Thread Michael Niedermayer
On Wed, Oct 15, 2014 at 11:05:29PM +0200, Marton Balint wrote: > > On Wed, 15 Oct 2014, di1028...@samsung.com wrote: > > >From: Di Wu > > > >Add the judement after create a new program to avoid segment fault. > > > >Signed-off-by: Di Wu > >--- > >libavformat/mpegts.c |6 -- > >1 file cha

Re: [FFmpeg-devel] PATH :wmv2 Limit the mvx and mvy to be integer in some condition

2014-10-15 Thread Michael Niedermayer
Hi On Wed, Oct 15, 2014 at 11:44:18AM +, Di Wu wrote: > Hi : > I have created a patch, but I'm not sure if the patch is correct > because I don't have the spec of wmv2. > The following code which is in ff_mspel_motion function seems to > limit the mvx and mvy to be integer to make su

Re: [FFmpeg-devel] Patch for Cast128 algorithm implementation

2014-10-15 Thread supraja reddy
Extremely sorry for resending the patch . There was a trailing whitespace which I hadn't corrected . All the changes are done . Please let me if any changes needed further . Thanks , Supraja On Thu, Oct 16, 2014 at 2:28 AM, supraja reddy wrote: > Hello , > > I hadn't rebased my branch . This is

[FFmpeg-devel] [PATCHv2] ffplay: update documentation

2014-10-15 Thread Marton Balint
Thank you for all your feedback, apparently there was some confusion because I have used "set" both as a synonym to "enabled" and as an imperative. I have changed all occurences of it to "enabled" or "use", so hopefully it will be more clear now. I have also done minor modifications in the text mos

Re: [FFmpeg-devel] [PATCH] mpegts: add the judgement if a new program is ctreated successfully

2014-10-15 Thread Marton Balint
On Wed, 15 Oct 2014, di1028...@samsung.com wrote: From: Di Wu Add the judement after create a new program to avoid segment fault. Signed-off-by: Di Wu --- libavformat/mpegts.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavformat/mpegts.c b/libavformat/mpeg

Re: [FFmpeg-devel] Patch for Cast128 algorithm implementation

2014-10-15 Thread supraja reddy
Hello , I hadn't rebased my branch . This is after the sync . Apologies for the error . Thanks , Supraja On Thu, Oct 16, 2014 at 12:50 AM, supraja reddy wrote: > I have updated the changes as requested . Please look into the attached > patch and let me know if there is anything else you wish

[FFmpeg-devel] [PATCH] Added STL demuxer and decoder

2014-10-15 Thread Eejya Singh
From: Eejya --- Changelog| 1 + doc/general.texi | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h | 1 + libavcodec/codec_desc.c | 7 +++ libavcodec/textdec.c | 18 ++- libavformat/Makefile | 1 +

Re: [FFmpeg-devel] [PATCH] Added STL demuxer and decoder

2014-10-15 Thread Eejya Singh
I'll fix that. Thanks for pointing that out :) On Thu, Oct 16, 2014 at 1:43 AM, compn wrote: > On Thu, 16 Oct 2014 00:37:28 +0530 > Eejya Singh wrote: > > > > --- a/libavformat/Makefile > > +++ b/libavformat/Makefile > > @@ -433,6 +433,7 @@ OBJS-$(CONFIG_VOBSUB_DEMUXER)+= > > subtit

Re: [FFmpeg-devel] [PATCH] Added STL demuxer and decoder

2014-10-15 Thread compn
On Thu, 16 Oct 2014 00:37:28 +0530 Eejya Singh wrote: > --- a/libavformat/Makefile > +++ b/libavformat/Makefile > @@ -433,6 +433,7 @@ OBJS-$(CONFIG_VOBSUB_DEMUXER)+= > subtitles.o # mpeg demuxer is in the > OBJS-$(CONFIG_VOC_DEMUXER) += vocdec.o voc.o > OBJS-$(CONFIG_VO

Re: [FFmpeg-devel] Patch for Cast128 algorithm implementation

2014-10-15 Thread supraja reddy
I have updated the changes as requested . Please look into the attached patch and let me know if there is anything else you wish me to change. Thanks , Supraja On Sun, Oct 12, 2014 at 8:38 PM, Giorgio Vazzana wrote: > 2014-10-12 13:59 GMT+02:00 supraja reddy : > > Hello , > > > > I , Supraja

[FFmpeg-devel] [PATCH] Added STL demuxer and decoder

2014-10-15 Thread Eejya Singh
From: Eejya --- Changelog| 1 + doc/general.texi | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h | 1 + libavcodec/codec_desc.c | 7 +++ libavcodec/textdec.c | 18 ++- libavformat/Makefile | 1 +

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mov: auodetect "use_mfra_for"

2014-10-15 Thread Jeet Deol
Hello ,I am Prabhjeet Kaur,I want to the Qualification task of "Misc Libavfilter extension " project. Sir I want to know that is their anyone else who is working on this task,kindly do reply me so that i can work on this project as I am very much interested and want to do this task in this project

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mov: auodetect "use_mfra_for"

2014-10-15 Thread Michael Niedermayer
On Wed, Oct 15, 2014 at 12:12:59PM +0300, Mika Raento wrote: > On 14 October 2014 23:48, Michael Niedermayer wrote: > > On Mon, Oct 13, 2014 at 01:45:18PM +0200, Michael Niedermayer wrote: > >> Signed-off-by: Michael Niedermayer > >> --- > >> libavformat/isom.h |1 + > >> libavformat/mov.c

Re: [FFmpeg-devel] [PATCH] build: mov_muxer requires ac3_parser

2014-10-15 Thread Michael Niedermayer
On Wed, Oct 15, 2014 at 08:09:43AM +0200, Benoit Fouet wrote: > Hi, > > On 15 October 2014 07:33:39 CEST, Yu Xiaolei wrote: > >--- > > configure | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > >diff --git a/configure b/configure > >index cda463d..3e7143c 100755 > >--- a/configure >

[FFmpeg-devel] Misc Libavfilter extension

2014-10-15 Thread Jeet Deol
Hello Stefano Sabatini sir,I am Prabhjeet Kaur,I want to the Qualification task of "Misc Libavfilter extension " project. Sir I want to know that is their anyone else who is working on this task,kindly do reply me so that i can work on this project as I am very much interested and want to do this

Re: [FFmpeg-devel] [PATCH] Fix to crash in ff_rtsp_read_reply

2014-10-15 Thread Michael Niedermayer
On Wed, Oct 15, 2014 at 07:59:24PM +0200, Benoit Fouet wrote: > Hi, > > Le 15/10/2014 19:42, Reimar Döffinger a écrit : > > On Tue, Oct 14, 2014 at 04:30:39PM -0400, Michael Lynch wrote: > >> This patch fixes a crash in ff_rtsp_read_reply that can occur when the > >> Content Length field of the RT

Re: [FFmpeg-devel] [PATCH] Fix to crash in ff_rtsp_read_reply

2014-10-15 Thread Benoit Fouet
Hi, Le 15/10/2014 19:42, Reimar Döffinger a écrit : > On Tue, Oct 14, 2014 at 04:30:39PM -0400, Michael Lynch wrote: >> This patch fixes a crash in ff_rtsp_read_reply that can occur when the >> Content Length field of the RTSP reply message is very high (e.g. near >> INT_MAX) and causes av_malloc

Re: [FFmpeg-devel] [PATCH] Fix to crash in ff_rtsp_read_reply

2014-10-15 Thread Reimar Döffinger
On Tue, Oct 14, 2014 at 04:30:39PM -0400, Michael Lynch wrote: > This patch fixes a crash in ff_rtsp_read_reply that can occur when the > Content Length field of the RTSP reply message is very high (e.g. near > INT_MAX) and causes av_malloc to return NULL. > > Thanks, > Michael > > commit 1e085fa

Re: [FFmpeg-devel] (no subject)

2014-10-15 Thread Clément Bœsch
On Sat, Oct 11, 2014 at 07:59:05PM +0200, Clément Bœsch wrote: > To be applied on top of the previous patch. > Patchset applied, thank you all for the reviews. -- Clément B. pgprFpCvlbyXw.pgp Description: PGP signature ___ ffmpeg-devel mailing list

[FFmpeg-devel] [PATCH] doc/filters.texi: fix several typos in the vidstab* sections

2014-10-15 Thread Moritz Barsnick
Hi, there are two minor typos and a stray bracket in the vidstab* sections of the filters documentation. Patch is attached. I also took the liberty to add references to the other filter (unsharp) which is mentioned, and had to add an anchor to the unsharp section for this. Some other sections do

[FFmpeg-devel] [PATCH] Fix to crash in ff_rtsp_read_reply

2014-10-15 Thread Michael Lynch
This patch fixes a crash in ff_rtsp_read_reply that can occur when the Content Length field of the RTSP reply message is very high (e.g. near INT_MAX) and causes av_malloc to return NULL. Thanks, Michael commit 1e085fa751168813912f13f89b754e5711b13daa Author: Michael Lynch Date: Tue Oct 14 14:

Re: [FFmpeg-devel] [PATCH] lavf/mov.c: Allocate buffer in case of long metadata entries.

2014-10-15 Thread Thilo Borgmann
Am 13.10.14 13:08, schrieb Nicolas George: > Le duodi 22 vendémiaire, an CCXXIII, Reimar Döffinger a écrit : >> Uh, wouldn't that be undefined behaviour? >> You're not allowed to compare pointers from different allocations as far >> as I know, even if it usually works. > > The spec says: > > # Tw

Re: [FFmpeg-devel] PATH :wmv2 Limit the mvx and mvy to be integer in some condition

2014-10-15 Thread compn
On Wed, 15 Oct 2014 11:44:18 + (GMT) Di Wu wrote: > Hi : > I have created a patch, but I'm not sure if the patch is correct > because I don't have the spec of wmv2. the only msmpeg4 "specs" i can remember are http://ffmpeg.org/~michael/msmpeg4.txt and http://wiki.multimedia.cx/index.php

[FFmpeg-devel] PATH :wmv2 Limit the mvx and mvy to be integer in some condition

2014-10-15 Thread Di Wu
Hi : I have created a patch, but I'm not sure if the patch is correct because I don't have the spec of wmv2. The following code which is in ff_mspel_motion function seems to limit the mvx and mvy to be integer to make sure the prediction right and to void reading overflow. But I'm not su

Re: [FFmpeg-devel] PATCH: Make -copyts a tri-state

2014-10-15 Thread Rodger Combs
> On Oct 15, 2014, at 05:37, Nicolas George wrote: > > Le quartidi 24 vendémiaire, an CCXXIII, Rodger Combs a écrit : >> Discussed this briefly on IRC; decided this was a good idea. I'm not sure >> if the commit message explains it well enough; please poke me here or on >> IRC if it doesn't. >

Re: [FFmpeg-devel] PATCH: Make -copyts a tri-state

2014-10-15 Thread Rodger Combs
> On Oct 15, 2014, at 05:34, Rodger Combs wrote: > > Discussed this briefly on IRC; decided this was a good idea. I'm not sure if > the commit message explains it well enough; please poke me here or on IRC if > it doesn't. > <0001-Make-copyts-a-tri-state-with-no-normalizing-input-ti.patch> AN

Re: [FFmpeg-devel] PATCH: Make -copyts a tri-state

2014-10-15 Thread Nicolas George
Le quartidi 24 vendémiaire, an CCXXIII, Rodger Combs a écrit : > Discussed this briefly on IRC; decided this was a good idea. I'm not sure > if the commit message explains it well enough; please poke me here or on > IRC if it doesn't. > From 617b532c8a403c1cf06e60c99e9f36c787553b43 Mon Sep 17 00:0

[FFmpeg-devel] PATCH: Make -copyts a tri-state

2014-10-15 Thread Rodger Combs
Discussed this briefly on IRC; decided this was a good idea. I'm not sure if the commit message explains it well enough; please poke me here or on IRC if it doesn't. 0001-Make-copyts-a-tri-state-with-no-normalizing-input-ti.patch Description: Binary data

Re: [FFmpeg-devel] Facebook page

2014-10-15 Thread James Darnley
On 2014-10-15 10:49, Thomas Volkert wrote: > Please, vote for a Facebook url here: > http://goo.gl/forms/AHVFvPxp8X > > This will show us the community opinion about this. I can't. It requires a google account. signature.asc Description: OpenPGP digital signature

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mov: auodetect "use_mfra_for"

2014-10-15 Thread Mika Raento
On 14 October 2014 23:48, Michael Niedermayer wrote: > On Mon, Oct 13, 2014 at 01:45:18PM +0200, Michael Niedermayer wrote: >> Signed-off-by: Michael Niedermayer >> --- >> libavformat/isom.h |1 + >> libavformat/mov.c | 29 +++-- >> 2 files changed, 28 insertions(+

Re: [FFmpeg-devel] Facebook page

2014-10-15 Thread Thomas Volkert
On 10/05/2014 09:09 PM, compn wrote: On Sun, 05 Oct 2014 20:19:49 +0200 Thomas Volkert wrote: http://www.facebook.com/ffmpeg.devel, http://www.facebook.com/ffmpeg.framework, http://www.facebook.com/multimedia.framework, ... @all: What is your opinion about these alternative solutions? maybe

Re: [FFmpeg-devel] Facebook page

2014-10-15 Thread Thomas Volkert
On 10/05/2014 11:19 PM, Anshul wrote: I think we should wait for day or 2 for Fan reply. ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel There was no reply within the last days. Best regards, Thomas. _

[FFmpeg-devel] [PATCH] mpegts: add the judgement if a new program is ctreated successfully

2014-10-15 Thread di1028 . wu
From: Di Wu Add the judement after create a new program to avoid segment fault. Signed-off-by: Di Wu --- libavformat/mpegts.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 8808269..cc0ce79 100644 --- a/libavformat