Re: [FFmpeg-devel] [PATCH] avcodec/mjpegenc_common: always store JFIF, idependent of the aspect ratio

2014-07-16 Thread Reimar Döffinger
On 15.07.2014, at 16:31, Michael Niedermayer michae...@gmx.at wrote: Found-by: kriegero1 Signed-off-by: Michael Niedermayer michae...@gmx.at Nit: iNdependent in commit message. +/* JFIF header */ +put_marker(p, APP0); +put_bits(p, 16, 16); +avpriv_put_string(p, JFIF, 1);

Re: [FFmpeg-devel] [PATCH] avcodec/mjpegenc_common: always store JFIF, idependent of the aspect ratio

2014-07-16 Thread Reimar Döffinger
On 15.07.2014, at 18:14, Andrey Utkin andrey.krieger.ut...@gmail.com wrote: Thanks, with this change streaming HTTP MJPEG stream into browsers work (with inserting boundaries, which is easy for scripting). oh, and please add an explanation like this (assuming this is the reason for it) to the

[FFmpeg-devel] [PATCH]Write valid free atom with -moov_size

2014-07-16 Thread Carl Eugen Hoyos
Hi! Attached patch fixes ticket #3769. Please review, Carl Eugen diff --git a/libavformat/movenc.c b/libavformat/movenc.c index b3287ca..4b9a4f1 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -4398,8 +4398,7 @@ static int mov_write_trailer(AVFormatContext *s) }

Re: [FFmpeg-devel] [PATCH]Write valid free atom with -moov_size

2014-07-16 Thread Michael Niedermayer
On Wed, Jul 16, 2014 at 01:45:47PM +0200, Carl Eugen Hoyos wrote: Hi! Attached patch fixes ticket #3769. Please review, Carl Eugen movenc.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) c040bdb810885856a278402be659e75e3afb8d1a patchmoovfree.diff diff --git

Re: [FFmpeg-devel] [PATCH] avcodec/mjpegenc_common: always store JFIF, idependent of the aspect ratio

2014-07-16 Thread Michael Niedermayer
On Wed, Jul 16, 2014 at 08:18:58AM +0200, Reimar Döffinger wrote: On 15.07.2014, at 16:31, Michael Niedermayer michae...@gmx.at wrote: Found-by: kriegero1 Signed-off-by: Michael Niedermayer michae...@gmx.at Nit: iNdependent in commit message. fixed +/* JFIF header */ +

Re: [FFmpeg-devel] [PATCH 1/3] get_bits: remove unused assignment

2014-07-16 Thread Michael Niedermayer
On Tue, Jul 15, 2014 at 08:56:28PM -0700, Timothy Gu wrote: Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavcodec/get_bits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The

Re: [FFmpeg-devel] Issue 3052

2014-07-16 Thread Michael Niedermayer
On Wed, Jul 16, 2014 at 05:40:35PM +0200, Benoit Fouet wrote: - Mail original - Hi, I had a look at https://trac.ffmpeg.org/ticket/3052. The issue is that the last frame duration is lost. Is there any reason why the packet duration is not transmitted from the demuxer to

Re: [FFmpeg-devel] [PATCH] [RFC] avcodec: export MB information in frame side data

2014-07-16 Thread Michael Niedermayer
On Wed, Jul 16, 2014 at 05:31:47PM +0200, Clément Bœsch wrote: On Wed, Jul 16, 2014 at 05:06:27PM +0200, Clément Bœsch wrote: Also add an example exporting the MB information as a CSV stream. --- A bunch of questions stand: - Ideally the source for a given macroblock should be a

Re: [FFmpeg-devel] [PATCH 3/3] aaccoder: remove unused assignment

2014-07-16 Thread Michael Niedermayer
On Tue, Jul 15, 2014 at 08:56:30PM -0700, Timothy Gu wrote: Signed-off-by: Timothy Gu timothyg...@gmail.com --- libavcodec/aaccoder.c | 2 -- 1 file changed, 2 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The educated differ

Re: [FFmpeg-devel] [PATCH 3/4] armv6: Accelerate vector_fmul_window

2014-07-16 Thread Michael Niedermayer
On Fri, Jul 11, 2014 at 12:14:30AM +0100, Ben Avison wrote: I benchmarked the result by measuring the number of gperftools samples that hit anywhere in the AAC decoder (starting from aac_decode_frame()) or specifically in vector_fmul_window_c() / ff_vector_fmul_window_vfp() for the same sample

Re: [FFmpeg-devel] [PATCH 4/4] armv6: Accelerate butterflies_float

2014-07-16 Thread Michael Niedermayer
On Fri, Jul 11, 2014 at 12:14:31AM +0100, Ben Avison wrote: I benchmarked the result by measuring the number of gperftools samples that hit anywhere in the AAC decoder (starting from aac_decode_frame()) or specifically in butterflies_float_c() / ff_butterflies_float_vfp() for the same sample

[FFmpeg-devel] [PATCH] avformat/dvenc: Implement 32khz 44.1khz for 25/50fps

2014-07-16 Thread Michael Niedermayer
3/1001 fps isnt implemented as i dont know which are the correct interleaving parameters, pointers to the appropriate spec and page are welcome Fixes Ticket2597 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/dvenc.c | 54

[FFmpeg-devel] [PATCH] avformat/dv: implement fallback in dv_extract_pack()

2014-07-16 Thread Michael Niedermayer
Fixes Ticket2340 Fixes Ticket2341 Based-on mail from Dave Rice d...@dericed.com Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/dv.c | 43 +++ 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/libavformat/dv.c