Re: [FFmpeg-devel] [FFmpeg-cvslog] avcodec/wmaprodec: >2 channel support for XMA

2017-01-19 Thread Paul B Mahol
On 1/19/17, Michael Niedermayer wrote: > On Thu, Jan 19, 2017 at 12:44:38AM +0100, Paul B Mahol wrote: >> ffmpeg | branch: master | Paul B Mahol | Tue Jan 17 >> 15:54:57 2017 +0100| [6c43f33ac2e7606b2013f6261144389589394196] | >> committer: Paul B Mahol >> >> avcodec/wmaprodec: >2 channel support

Re: [FFmpeg-devel] [PATCH] lavf/mov: ignore edit list with duration equals to 0 for covers art

2017-01-19 Thread Matthieu Bouron
On Thu, Jan 19, 2017 at 04:55:22AM +0900, Yusuke Nakamura wrote: > 2017-01-18 19:38 GMT+09:00 Matthieu Bouron : > > > Discards edit list with duration equals to 0 for video streams with only > > one frame and avoid discarding covers art muxed as a single frame video > > stream. > > --- > > Hello,

Re: [FFmpeg-devel] [PATCH] lavc/h264: simplify find_unused_picture()

2017-01-19 Thread Clément Bœsch
On Thu, Jan 19, 2017 at 02:37:09AM +0100, Michael Niedermayer wrote: > On Wed, Jan 18, 2017 at 06:13:02PM +0100, Clément Bœsch wrote: > > --- > > libavcodec/h264_slice.c | 16 +++- > > 1 file changed, 3 insertions(+), 13 deletions(-) > > LGTM > > thx > pushed -- Clément B. sign

Re: [FFmpeg-devel] [FFmpeg-cvslog] avcodec/wmaprodec: >2 channel support for XMA

2017-01-19 Thread Paul B Mahol
On 1/19/17, Paul B Mahol wrote: > On 1/19/17, Michael Niedermayer wrote: >> On Thu, Jan 19, 2017 at 12:44:38AM +0100, Paul B Mahol wrote: >>> ffmpeg | branch: master | Paul B Mahol | Tue Jan 17 >>> 15:54:57 2017 +0100| [6c43f33ac2e7606b2013f6261144389589394196] | >>> committer: Paul B Mahol >>>

Re: [FFmpeg-devel] [PATCH 2/3] avformat/avienc: add reserve_index_space option

2017-01-19 Thread Michael Niedermayer
On Wed, Jan 18, 2017 at 10:27:02AM +0100, Tobias Rapp wrote: > Allows the user to reserve space for the ODML master index. A sufficient > sized master index in the AVI header avoids storing follow-up master > indexes within the 'movi' data later. > > If the option is omitted or zero the index size

Re: [FFmpeg-devel] [PATCH] lavf/mov: ignore edit list with duration equals to 0 for covers art

2017-01-19 Thread Sasi Inguva
According to spec ( ISO-IEC-15444-12 ) specifying edit list duration 0, makes sense for MP4F files "A non‐empty edit may insert a portion of the media timeline that is not present in the initial movie, and is present only in subsequent movie fragments. Particularly in an empty initial movie of a f

Re: [FFmpeg-devel] [PATCH 1/8] arm: vp9dsp: Restructure the bpp checks

2017-01-19 Thread Michael Niedermayer
On Wed, Jan 18, 2017 at 11:45:08PM +0200, Martin Storsjö wrote: > This work is sponsored by, and copyright, Google. > > This is more in line with how it will be extended for more bitdepths. > --- > libavcodec/arm/vp9dsp_init_arm.c | 24 +--- > 1 file changed, 9 insertions(+),

[FFmpeg-devel] [PATCH] lil typo

2017-01-19 Thread Александр Слободенюк
0001-lil-typo.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] lil typo

2017-01-19 Thread Michael Niedermayer
On Wed, Jan 18, 2017 at 01:18:54PM +0300, Александр Слободенюк wrote: > avcodec.h |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > 45eeaecafbb396876f70fc1149cb16deb2055c5b 0001-lil-typo.patch > From fe6224103a12fcd48d32f1c8304e66faf6804ab0 Mon Sep 17 00:00:00 2001 > From: Aleksandr Sl

[FFmpeg-devel] [PATCH] avcodec/atrac3: allow 6 channels (non-joint stereo)

2017-01-19 Thread bananaman255
From: bnnm Raises max channels to 6 (for non joint-stereo only), there is no difference decoding 1 or N discrete channels. Fixes trac issue #5840 Signed-off-by: bnnm --- libavcodec/atrac3.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/libavcodec/atrac3.

[FFmpeg-devel] [PATCH 1/3] avcodec: add XMA2 parser

2017-01-19 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/xma_parser.c | 62 + 3 files changed, 64 insertions(+) create mode 100644 libavcodec/xma_parser.c diff --git a/libavcodec/Makefile b/libavco

[FFmpeg-devel] [PATCH 2/3] avcodec/wmaprodec: add xma_flush for seeking in XMA2

2017-01-19 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/wmaprodec.c | 34 +++--- 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c index 55a4807..ed9cbcf 100644 --- a/libavcodec/wmaprodec.c +++ b/libavcodec/wmaprodec.c @@

[FFmpeg-devel] [PATCH 3/3] avformat/wavdec: enable seeking with XMA2

2017-01-19 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/wavdec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c index 4046809..0ca1ef4 100644 --- a/libavformat/wavdec.c +++ b/libavformat/wavdec.c @@ -719,6 +719,7 @@ static int wav_read_seek(AVFormatContext *s,

Re: [FFmpeg-devel] [PATCH] lavf/mov: ignore edit list with duration equals to 0 for covers art

2017-01-19 Thread Yusuke Nakamura
2017-01-19 18:33 GMT+09:00 Matthieu Bouron : > On Thu, Jan 19, 2017 at 04:55:22AM +0900, Yusuke Nakamura wrote: > > 2017-01-18 19:38 GMT+09:00 Matthieu Bouron : > > > > > Discards edit list with duration equals to 0 for video streams with > only > > > one frame and avoid discarding covers art muxe

[FFmpeg-devel] [PATCH] avcodec/fraps: add support for PAL8

2017-01-19 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/fraps.c | 29 +++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/libavcodec/fraps.c b/libavcodec/fraps.c index 57e13f2..5ca6aff 100644 --- a/libavcodec/fraps.c +++ b/libavcodec/fraps.c @@ -146,6 +146,7 @@ static

Re: [FFmpeg-devel] [PATCH] lavf/mov: ignore edit list with duration equals to 0 for covers art

2017-01-19 Thread Matthieu Bouron
On Thu, Jan 19, 2017 at 10:33:25AM -0800, Sasi Inguva wrote: > According to spec ( ISO-IEC-15444-12 ) specifying edit list duration 0, > makes sense for MP4F files > "A non‐empty edit may insert a portion of the media timeline that is not > present in the initial movie, and > is present only in su

[FFmpeg-devel] [PATCH] ffmpeg.c: Add output file index and stream index to vstats file.

2017-01-19 Thread Sasi Inguva
Signed-off-by: Sasi Inguva --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 977708c069..a566c3fe2a 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1347,7 +1347,7 @@ static void do_video_stats(OutputStream *ost, int frame_size) enc = ost->en

Re: [FFmpeg-devel] [PATCH] libavcodec/nvenc.c Reduce initialization time for gpu id > 0

2017-01-19 Thread Ganapathy Raman Kasi
Yes, this is a simpler logic. Works for me locally. Can you please apply this patch to ffmpeg master. Thanks. -Original Message- From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of Timo Rothenpieler Sent: Wednesday, January 18, 2017 3:01 PM To: ffmpeg-devel@ffmpeg.or

Re: [FFmpeg-devel] [PATCH] lavf/mov: ignore edit list with duration equals to 0 for covers art

2017-01-19 Thread Sasi Inguva
The mov_fix_index is executed inside mov_read_trak . Normally 'moof' atom is after the 'trak' atom in mp4f file. So the method of looking whether moof atom exists won't work. On Thu, Jan 19, 2017 at 2:18 PM, Matthieu Bouron wrote: > On Thu, Jan 19, 2017 at 10:33:25AM -0800, Sasi Inguva wrote: >

[FFmpeg-devel] [PATCH] lavformat/utils: Fix a memleak that st->codec->hw_frames_ctx

2017-01-19 Thread Huang, Zhengxu
From 9ceb2ac6a89246f2e686eb3ad3448fbaff5328f7 Mon Sep 17 00:00:00 2001 From: Zhengxu Date: Fri, 13 Jan 2017 10:33:05 +0800 Subject: [PATCH] lavformat/utils: Fix a memleak that st->codec->hw_frames_ctx is not released. Signed-off-by: ChaoX A Liu Signed-off-by: Huang, Zhengxu Signed-off-by: An

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix too many open files bug

2017-01-19 Thread Steven Liu
2017-01-19 11:22 GMT+08:00 殷焦元 : > I test the new patch, it is OK. > > Thanks > > > Yin Jiaoyuan > > > At 2017-01-19 10:20:38, "Steven Liu" wrote: > >When use http method to delete the old segments, > >there is only io_open, hove not io_close yet, > >this patch is used to fix it > > > >Signed-off