Re: [FFmpeg-devel] [RFC]Revert the default for ffplay to -noautoexit

2014-09-07 Thread Michael Niedermayer
On Sun, Sep 07, 2014 at 10:39:27PM +0200, Carl Eugen Hoyos wrote: > Hi! > > I have no strong opinion on this but I wonder if ffplay isn't primarily > a test application for which it is very useful not to exit. > > Please comment, Carl Eugen > ffplay.c |2 +- > 1 file changed, 1 insertion(+

Re: [FFmpeg-devel] [RFC]Revert the default for ffplay to -noautoexit

2014-09-07 Thread Michael Niedermayer
On Sun, Sep 07, 2014 at 11:02:58PM +0200, Marton Balint wrote: > > On Sun, 7 Sep 2014, Carl Eugen Hoyos wrote: > > >Hi! > > > >I have no strong opinion on this but I wonder if ffplay isn't primarily > >a test application for which it is very useful not to exit. > > > > Well, I was thinking about

Re: [FFmpeg-devel] patch for x32 for libpostproc

2014-09-07 Thread Michael Niedermayer
On Fri, Sep 05, 2014 at 08:18:57AM +0200, Reimar Döffinger wrote: > On 05.09.2014, at 03:46, Reinhard Tartler wrote: > > On Thu, Sep 4, 2014 at 9:32 PM, Michael Niedermayer > > wrote: > >>> At the end of the day, I need a source tarball that contains > >>> maintained sources of a stand-alone lib

Re: [FFmpeg-devel] [RFC]Revert the default for ffplay to -noautoexit

2014-09-07 Thread Marton Balint
On Sun, 7 Sep 2014, Carl Eugen Hoyos wrote: Hi! I have no strong opinion on this but I wonder if ffplay isn't primarily a test application for which it is very useful not to exit. Well, I was thinking about this myself... And I quite hate that in mplayer when you seek past the end of the f

[FFmpeg-devel] [RFC]Revert the default for ffplay to -noautoexit

2014-09-07 Thread Carl Eugen Hoyos
Hi! I have no strong opinion on this but I wonder if ffplay isn't primarily a test application for which it is very useful not to exit. Please comment, Carl Eugen diff --git a/ffplay.c b/ffplay.c index 06bccce..833b5b1 100644 --- a/ffplay.c +++ b/ffplay.c @@ -311,7 +311,7 @@ static int fast = 0;

Re: [FFmpeg-devel] [PATCH] ffplay: Dont autoexeit by default on single images

2014-09-07 Thread Marton Balint
On Sun, 7 Sep 2014, Michael Niedermayer wrote: Signed-off-by: Michael Niedermayer --- ffplay.c |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ffplay.c b/ffplay.c index 06bccce..64ec058 100644 --- a/ffplay.c +++ b/ffplay.c @@ -185,6 +185,7 @@ typedef struct VideoSt

Re: [FFmpeg-devel] [PATCH] ffplay: Dont autoexeit by default on single images

2014-09-07 Thread Benoit Fouet
Hi, Le 07/09/2014 02:16, Michael Niedermayer a écrit : > Signed-off-by: Michael Niedermayer > --- > ffplay.c |7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) > I'm fine with it in principle (though the commit message should be fixed), but this -1 value should be somewhat docume

Re: [FFmpeg-devel] [PATCH] avformat: remove FF_API_ASS_SSA dead code

2014-09-07 Thread wm4
On Sun, 7 Sep 2014 22:03:26 +0200 Clément Bœsch wrote: > --- > libavformat/matroska.c| 6 > libavformat/matroskadec.c | 80 > --- > libavformat/matroskaenc.c | 79 -- > libavformat/version.h |

[FFmpeg-devel] [PATCH] avformat: remove FF_API_ASS_SSA dead code

2014-09-07 Thread Clément Bœsch
--- libavformat/matroska.c| 6 libavformat/matroskadec.c | 80 --- libavformat/matroskaenc.c | 79 -- libavformat/version.h | 3 -- 4 files changed, 168 deletions(-) diff --git a/libavformat/mat

[FFmpeg-devel] [PATCH] avformat/mp3dec: Improve seeking frame sync code

2014-09-07 Thread Michael Niedermayer
Fixes Ticket3884 Signed-off-by: Michael Niedermayer --- libavformat/mp3dec.c | 27 +++ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index 688f235..4872afc 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/m

Re: [FFmpeg-devel] [PATCH] lavd/avfoundation: Add Audio Support

2014-09-07 Thread Jay Muthialu
Hi Thilo, I am am working on streaming FaceTime HD Camera with ffmpeg on OSX 10.8. I am getting the video but there is no audio input. I was referred to this link by a ffmpeg user and I think this will help my efforts. Can you please let me know how to install the patches and what is the comma

[FFmpeg-devel] [PATCH] avformat/mpeg: increase score for short mpeg-ps by 1

2014-09-07 Thread Michael Niedermayer
Fixes Ticket 3855 Signed-off-by: Michael Niedermayer --- libavformat/mpeg.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index 056db2e..8b070f7 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -101,7 +101,7 @@ static in

Re: [FFmpeg-devel] [PATCH] fix two spelling errors

2014-09-07 Thread Michael Niedermayer
On Sun, Sep 07, 2014 at 12:08:18AM +0200, Andreas Cadhalpun wrote: > On 06.09.2014 13:45, Reimar Döffinger wrote: > >On Sat, Sep 06, 2014 at 12:13:30PM +0200, Andreas Cadhalpun wrote: > >>-Effectively this allows to add padding with zeros from the left. > >>+Effectively this allows one to add paddi

Re: [FFmpeg-devel] [PATCH] qdm2: Allow hard-coding VLC tables.

2014-09-07 Thread Reimar Döffinger
On Sun, Sep 07, 2014 at 02:03:08PM +0200, Reimar Döffinger wrote: > Also adds a lot of infrastructure necessary for it. > Some of it is a bit ugly though. > Increases binary size for hardcoded tables by about 12 kB, > which is about 15 kB from qdm2_table minus data and code > saved that was only us

[FFmpeg-devel] [PATCH] qdm2: Allow hard-coding VLC tables.

2014-09-07 Thread Reimar Döffinger
Also adds a lot of infrastructure necessary for it. Some of it is a bit ugly though. Increases binary size for hardcoded tables by about 12 kB, which is about 15 kB from qdm2_table minus data and code saved that was only used for creating it. Signed-off-by: Reimar Döffinger --- libavcodec/qdm2.c

[FFmpeg-devel] [PATCH] qdm2: Allow hard-coding VLC tables.

2014-09-07 Thread Reimar Döffinger
Also adds a lot of infrastructure necessary for it. Some of it is a bit ugly though. Increases binary size for hardcoded tables by about 12 kB, which is about 15 kB from qdm2_table minus data and code saved that was only used for creating it. Signed-off-by: Reimar Döffinger --- libavcodec/qdm2.c

Re: [FFmpeg-devel] [PATCH] lavf/segment: add segment_format_options option

2014-09-07 Thread Stefano Sabatini
On date Saturday 2014-09-06 22:00:05 +0200, Michael Niedermayer encoded: > On Sat, Sep 06, 2014 at 03:46:03PM +0200, Stefano Sabatini wrote: > > TODO: bump micro > > --- > > doc/muxers.texi | 5 + > > libavformat/segment.c | 25 +++-- > > 2 files changed, 28 insertio

Re: [FFmpeg-devel] [PATCH 1/3] libswresample: Avoid needlessly large on-stack array.

2014-09-07 Thread Reimar Döffinger
Patchset pushed, thanks. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel