Re: [FFmpeg-devel] Please help update tasks and mentor/backups for OPW

2014-09-27 Thread Peter Ross
On Thu, Sep 25, 2014 at 02:20:21PM -0300, Reynaldo H. Verdejo Pinochet wrote: If you were listed as a mentor please update your availability and/or willingness status on the wiki. If you were listed as a backup mentor for a mentorless project, please consider becoming a full fledged mentor for

[FFmpeg-devel] x86: inline asm cpuid vs. yasm cpuid

2014-09-27 Thread lvqcl
ff_cpu_cpuid routine (in libavutil/x86/cpuid.asm) clears ECX register before cpuid instruction. Inline asm version (in libavutil/x86/cpu.c) doesn't do this. As a result, FFmpeg will probably misdetect AVX2/BMI1/BMI2 if yasm is not enabled. As far as I understand GNU asm, the last line of cpuid

Re: [FFmpeg-devel] compiling on MAC OSX10.9 crashes on =10.85

2014-09-27 Thread Hendrik Leppkes
On Sat, Sep 27, 2014 at 5:45 AM, Georg Stein georg_st...@t-online.de wrote: Hello, i compiled ffmpeg under macosx 10.9 and had to find out, that my app what uses libavformat is crashing on mac osx up to 10.85 Use --extra-cflags=-mmacosx-version-min=10.8 .. or 10.6, or whatever is your

Re: [FFmpeg-devel] [PATCH] avfilter/signalstats: add more pixel formats

2014-09-27 Thread Paul B Mahol
On 9/26/14, Dave Rice d...@dericed.com wrote: On Sep 25, 2014, at 1:26 PM, Paul B Mahol one...@gmail.com wrote: Signed-off-by: Paul B Mahol one...@gmail.com --- libavfilter/vf_signalstats.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavfilter/vf_signalstats.c

[FFmpeg-devel] [PATCH]Do not add extradata size to bitmapinfoheader size

2014-09-27 Thread Carl Eugen Hoyos
Hi! Attached patch is one of two patches necessary to fix ticket #1304. The MSDN documentation indicates that the palette is not part of the bitmapinfoheader but the bitmapinfoheader is part of the bitmapinfo structure that also contains the palette. An alternative is to add the extradata_size

Re: [FFmpeg-devel] [PATCH 2/4] hevc: remove CodingTree

2014-09-27 Thread Michael Niedermayer
On Tue, Sep 23, 2014 at 09:36:41PM +, Christophe Gisquet wrote: --- libavcodec/hevc.c | 4 ++-- libavcodec/hevc.h | 6 +- libavcodec/hevc_cabac.c | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint:

[FFmpeg-devel] 111

2014-09-27 Thread 朱伟滔
[h264 @ 0xe84fc0] A non-intra slice in an IDR NAL unit. [h264 @ 0xe84fc0] decode_slice_header error [h264 @ 0xc95530] cabac_init_idc 26 overflow

[FFmpeg-devel] Please help update tasks and mentor/backups for OPW

2014-09-27 Thread Reynaldo H. Verdejo Pinochet
Hello As you might already know, Samsung has decided to back up our initiative with the required 6K USD (Thanks!) and as result, we have got at least one mentee covered for this round of the Outreach Program for Women (http://gnome.org/opw/). We couldn't be happier about this but there's quite

Re: [FFmpeg-devel] x86: inline asm cpuid vs. yasm cpuid

2014-09-27 Thread Michael Niedermayer
On Sat, Sep 27, 2014 at 12:34:21AM +0400, lvqcl wrote: ff_cpu_cpuid routine (in libavutil/x86/cpuid.asm) clears ECX register before cpuid instruction. Inline asm version (in libavutil/x86/cpu.c) doesn't do this. As a result, FFmpeg will probably misdetect AVX2/BMI1/BMI2 if yasm is not

Re: [FFmpeg-devel] [PATCH]Do not add extradata size to bitmapinfoheader size

2014-09-27 Thread Michael Niedermayer
On Sat, Sep 27, 2014 at 10:51:25AM +0200, Carl Eugen Hoyos wrote: Hi! Attached patch is one of two patches necessary to fix ticket #1304. The MSDN documentation indicates that the palette is not part of the bitmapinfoheader but the bitmapinfoheader is part of the bitmapinfo structure that

[FFmpeg-devel] [PATCH] avcodec, avutil: allow more control about how samples are skipped

2014-09-27 Thread wm4
Add CODEC_FLAG2_SKIP_MANUAL (exposed as skip_manual), which makes the decoder export sample skip information via side data, instead of applying it automatically. The format of the side data is the same as AV_PKT_DATA_SKIP_SAMPLES, but since AVPacket and AVFrame side data constants overlap,

Re: [FFmpeg-devel] [PATCH 16/17] avformat/assenc: mux an event header if none are found in extradata

2014-09-27 Thread Clément Bœsch
On Wed, Sep 24, 2014 at 01:23:08PM +0200, Clément Bœsch wrote: On Wed, Sep 24, 2014 at 01:20:36PM +0200, Nicolas George wrote: Le jour de la Raison, an CCXXII, Clément Bœsch a écrit : --- libavformat/assenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git

Re: [FFmpeg-devel] [PATCH 15/17] avformat/assdec: add myself to Copyright

2014-09-27 Thread Clément Bœsch
On Sun, Sep 21, 2014 at 01:31:22PM +0200, Michael Niedermayer wrote: On Sat, Sep 20, 2014 at 10:27:55PM +0200, Clément Bœsch wrote: --- libavformat/assdec.c | 1 + 1 file changed, 1 insertion(+) ok Thanks, pushed. -- Clément B. pgpPlCp_WlXrB.pgp Description: PGP signature

Re: [FFmpeg-devel] [PATCH 12/17] avformat/assdec: output ASS packets

2014-09-27 Thread Clément Bœsch
On Wed, Sep 24, 2014 at 01:24:17PM +0200, Clément Bœsch wrote: [...] I think this was ok. Note: I still haven't pushed this because it breaks when line are in old ASS (with Marked=0 prefix). I'll fix that ASAP. Fixed and applied. Thanks. -- Clément B. pgpGfb51Kfbbc.pgp Description:

Re: [FFmpeg-devel] [PATCH 13/17] avformat/assdec: make sure Comments: events end up in the header

2014-09-27 Thread Clément Bœsch
On Sun, Sep 21, 2014 at 08:35:51AM +0200, wm4 wrote: On Sat, 20 Sep 2014 22:27:53 +0200 Clément Bœsch u...@pkh.me wrote: --- libavformat/assdec.c | 26 -- 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/libavformat/assdec.c

Re: [FFmpeg-devel] [PATCH 14/17] avformat/assdec: reindent after previous commit

2014-09-27 Thread Clément Bœsch
On Sat, Sep 20, 2014 at 10:27:54PM +0200, Clément Bœsch wrote: --- libavformat/assdec.c | 31 +++ 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/libavformat/assdec.c b/libavformat/assdec.c index 2187c7d..d33830e 100644 --- a/libavformat/assdec.c

Re: [FFmpeg-devel] [PATCH 1/2] Kill timed SRT

2014-09-27 Thread Clément Bœsch
On Sun, Sep 14, 2014 at 09:03:39PM +0200, Clément Bœsch wrote: --- libavcodec/srtdec.c | 33 +++ libavcodec/srtenc.c | 49 ++- libavformat/matroska.c| 1 - libavformat/matroskaenc.c | 45

Re: [FFmpeg-devel] [PATCH 2/2] Kill timed SSA

2014-09-27 Thread Clément Bœsch
On Sun, Sep 14, 2014 at 09:03:40PM +0200, Clément Bœsch wrote: --- libavcodec/Makefile | 4 ++-- libavcodec/assdec.c | 60 +++- libavcodec/assenc.c | 14 ++-- libavformat/assenc.c | 14 libavformat/nut.c| 1 -

[FFmpeg-devel] [PATCH] avformat/movenc: AVC Intra support

2014-09-27 Thread Michael Niedermayer
This allows remuxing AVC intra into mov it does not work with libx264 encoded AVC Intra for unknown reason Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/movenc.c | 63 ++ 1 file changed, 59 insertions(+), 4 deletions(-)

Re: [FFmpeg-devel] [PATCH] avcodec, avutil: allow more control about how samples are skipped

2014-09-27 Thread Michael Niedermayer
On Sat, Sep 27, 2014 at 04:47:09PM +0200, wm4 wrote: Add CODEC_FLAG2_SKIP_MANUAL (exposed as skip_manual), which makes the decoder export sample skip information via side data, instead of applying it automatically. The format of the side data is the same as AV_PKT_DATA_SKIP_SAMPLES, but since

Re: [FFmpeg-devel] [PATCH 5/5] lavd/avfoundation: Add basic PCM audio support.

2014-09-27 Thread Michael Niedermayer
On Wed, Sep 24, 2014 at 12:44:17PM +0200, Thilo Borgmann wrote: avfoundation.m | 345 ++--- 1 file changed, 331 insertions(+), 14 deletions(-) 4053a31c5345bef25628d264a17a1c010feca134

Re: [FFmpeg-devel] [PATCH] avformat/movenc: AVC Intra support

2014-09-27 Thread Kieran Kunhya
On 28 September 2014 00:49, Michael Niedermayer michae...@gmx.at wrote: This allows remuxing AVC intra into mov it does not work with libx264 encoded AVC Intra for unknown reason 1080i should work. 1080p needs some random magic numbers in the bitstream which are probably different for all the

Re: [FFmpeg-devel] [PATCH] Added parameter -hls_allow_cache

2014-09-27 Thread Michael Niedermayer
On Mon, Sep 22, 2014 at 10:17:01AM +0200, Joakim Roubert wrote: The -hls_allow_cache parameter enables explicitly setting the EXT-X-ALLOW-CACHE tag in the manifest file. That tag indicates whether the client MAY or MUST NOT cache downloaded media segments for later replay. Valid values are

Re: [FFmpeg-devel] [PATCH 3/3] [RFC] mpegts: Support seeking based on stream timestamps.

2014-09-27 Thread Michael Niedermayer
On Sun, Sep 21, 2014 at 10:17:16AM +0100, Reimar Döffinger wrote: Should should fix seeking in some blurays in combination with e.g. MPlayer. Not yet tested due to no bluray at hand. Signed-off-by: Reimar Döffinger reimar.doeffin...@gmx.de --- libavformat/mpegts.c | 8 1 file

Re: [FFmpeg-devel] [PATCH] avformat/movenc: AVC Intra support

2014-09-27 Thread Michael Niedermayer
On Sun, Sep 28, 2014 at 02:00:00AM +0100, Kieran Kunhya wrote: On 28 September 2014 00:49, Michael Niedermayer michae...@gmx.at wrote: This allows remuxing AVC intra into mov it does not work with libx264 encoded AVC Intra for unknown reason 1080i should work. 1080p needs some random

Re: [FFmpeg-devel] [PATCH] avformat/movenc: AVC Intra support

2014-09-27 Thread Michael Niedermayer
On Sun, Sep 28, 2014 at 03:53:15AM +0200, Michael Niedermayer wrote: On Sun, Sep 28, 2014 at 02:00:00AM +0100, Kieran Kunhya wrote: On 28 September 2014 00:49, Michael Niedermayer michae...@gmx.at wrote: This allows remuxing AVC intra into mov it does not work with libx264 encoded AVC

Re: [FFmpeg-devel] [PATCH 6/6] docs: mention when and how one should be added as an author

2014-09-27 Thread Michael Niedermayer
On Fri, Sep 12, 2014 at 01:31:30AM +0200, James Darnley wrote: This addresses point 13 from the mplayer patches text file. Discussion about removing a link to this document can be found in the thread on ffmpeg-devel titled: [PATCH] web/contact: replace MPlayer guidelines link ---

Re: [FFmpeg-devel] [PATCH] avcodec/libx265: enable psnr reporting when requested by the user

2014-09-27 Thread Michael Niedermayer
On Wed, Sep 10, 2014 at 01:48:06AM +0200, Michael Niedermayer wrote: This is similar to what is done in libx264.c Fixes Ticket3567 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavcodec/libx265.c |1 + 1 file changed, 1 insertion(+) applied [...] -- Michael GnuPG