Re: [FFmpeg-devel] [PATCH] Add android_capture indev

2017-11-02 Thread Daniel Kučera
2017-11-02 13:42 GMT+01:00 Felix Matouschek : > Hello, > > I've written an indev for Android devices to allow capturing their builtin > cameras. > What needs to be done to merge this? > > Greetings, > Felix > ___ > ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] Add android_capture indev

2017-11-02 Thread Thomas Volkert
On 02.11.2017 16:20, Daniel Kučera wrote: > 2017-11-02 13:42 GMT+01:00 Felix Matouschek : >> Hello, >> >> I've written an indev for Android devices to allow capturing their builtin >> cameras. >> What needs to be done to merge this? >> >> Greetings, >> Felix >>

Re: [FFmpeg-devel] [PATCH] fix for transparencies in animated gifs (requires feedback)

2017-11-02 Thread Moritz Barsnick
On Thu, Nov 02, 2017 at 11:45:20 -0400, Bjorn Roche wrote: > > - I don’t know if/how to update the FATE tests. > > Can anyone comment on this? Do I update the tests in the same patch or > separate that? Your patch is not allowed to break fate. If the fate results are correct references, then

Re: [FFmpeg-devel] [PATCH] fix for transparencies in animated gifs (requires feedback)

2017-11-02 Thread Bjorn Roche
> - I don’t know if/how to update the FATE tests. Can anyone comment on this? Do I update the tests in the same patch or separate that? -- Bjorn Roche Sr. Video Pipeline Engineer bj...@giphy.com ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH] avfilter: initial macroblock types export and visualization

2017-11-02 Thread Ronald S. Bultje
Hi, On Thu, Nov 2, 2017 at 7:52 AM, Paul B Mahol wrote: > On 11/2/17, Michael Niedermayer wrote: > > Hi > > > > On Sat, Oct 28, 2017 at 07:43:05AM -0400, Ronald S. Bultje wrote: > >> Hi, > >> > >> On Fri, Oct 27, 2017 at 10:14 PM, Michael Niedermayer <

Re: [FFmpeg-devel] [PATCH] lavfi/paletteuse: fix to support transparency

2017-11-02 Thread Bjorn Roche
On Sat, Oct 28, 2017 at 11:18 AM, Clément Bœsch wrote: > On Mon, Oct 23, 2017 at 07:12:57PM -0400, Bjorn Roche wrote: > > This patch enables paletteuse to identify the transparency in incoming > > video and tag transparent pixels on outgoing video with the correct > > index from the

[FFmpeg-devel] [PATCH] snowenc: fix use of deprecated API

2017-11-02 Thread ffmpeg
From: Nicolas Frattaroli Replace avcodec_get_chroma_sub_sample with the recommended av_pix_fmt_get_chroma_sub_sample, which fixes a compilation warning. --- libavcodec/snowenc.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libavcodec/snowenc.c

[FFmpeg-devel] [PATCH] avcodec/cngdec: Fix integer clipping

2017-11-02 Thread Michael Niedermayer
Fixes: runtime error: value -36211.7 is outside the range of representable values of type 'short' Fixes: 2992/clusterfuzz-testcase-6649611793989632 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer

Re: [FFmpeg-devel] [PATCH] web/template_head2: Remove net neutrality script

2017-11-02 Thread Lou Logan
On Wed, Nov 1, 2017, at 03:52 PM, Michael Niedermayer wrote: > The loss of net neutrality may also be annoying and distracting, and > may be harder to fix than with a patch. We don't need yet another daily reminder of how completely shitty the current US administration is. For the record, yes, I

Re: [FFmpeg-devel] Added HW H.264 and HEVC encoding for AMD GPUs based on AMF SDK

2017-11-02 Thread Mironov, Mikhail
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of mmironov > Sent: October 31, 2017 3:39 PM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] Added HW H.264 and HEVC encoding for AMD GPUs > based on AMF SDK > > From

Re: [FFmpeg-devel] libavcodec/als: remove check for predictor order of a block

2017-11-02 Thread Umair Khan
Hi, On Fri, Oct 20, 2017 at 1:44 AM, Ronald S. Bultje wrote: > > Hi, > > On Thu, Oct 19, 2017 at 4:03 PM, Umair Khan wrote: > > > I tried decoding the file in both the cases and I don't see any > > address related error in the console while decoding.

Re: [FFmpeg-devel] [PATCH] lavf/mov.c: Parse upto 2 keyframes after the edit list end in mov_fix_index.

2017-11-02 Thread Michael Niedermayer
On Wed, Nov 01, 2017 at 02:27:50PM -0700, Sasi Inguva wrote: > Pls find attached, the FATE sample. uplaoded [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB There will always be a question for which you do not know the correct answer. signature.asc

Re: [FFmpeg-devel] [PATCH] lavf/mov.c: Refine edit list start seek, based on PTS computed from CTTS.

2017-11-02 Thread Michael Niedermayer
On Tue, Oct 31, 2017 at 04:45:00PM -0700, Sasi Inguva wrote: > Attaching the fate sample. uploaded [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB He who knows, does not speak. He who speaks, does not know. -- Lao Tsu signature.asc Description: Digital

Re: [FFmpeg-devel] [PATCH] Fix quadratic memory use in ff_h2645_extract_rbsp() when multiple NALUs exist in packet.

2017-11-02 Thread Kieran Kunhya
> > The idea would be that there would only be one uint8_t buffer and the > 2000 entries from te pool would point into that. > So as a larger NAL shifts through the 2000 the pointers would get > distributed differently but the size would not grow > Any variable size buffer the H2645NAL needs would

Re: [FFmpeg-devel] [PATCH] Fix quadratic memory use in ff_h2645_extract_rbsp() when multiple NALUs exist in packet.

2017-11-02 Thread Derek Buitenhuis
On 11/2/2017 10:48 PM, Kieran Kunhya wrote: > I have tried this using the following patch but it does not work: > https://www.irccloud.com/pastebin/qobTcW9d/ > > Nothing obviously seems wrong so I suspect it's not possible to do this > whilst reusing the code between decoder and parser. > The old

Re: [FFmpeg-devel] [PATCH] lavf/mov.c: Refine edit list start seek, based on PTS computed from CTTS.

2017-11-02 Thread Sasi Inguva
Modified the comment for find_prev_index function. Thx. On Thu, Nov 2, 2017 at 4:22 PM, Michael Niedermayer wrote: > On Tue, Oct 31, 2017 at 04:45:00PM -0700, Sasi Inguva wrote: > > Attaching the fate sample. > > uploaded > > [...] > > -- > Michael GnuPG fingerprint:

Re: [FFmpeg-devel] [PATCH]tests/fate: Fix fitsdec-gbrap16 on big-endian hardware

2017-11-02 Thread Michael Niedermayer
On Wed, Nov 01, 2017 at 09:41:58PM +0100, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes fate-fitsdec on big-endian. > > Please comment, Carl Eugen > b/tests/fate/fits.mak |4 ++-- > b/tests/ref/fate/fitsdec-gbrap16le |6 ++ > tests/ref/fate/fitsdec-gbrap16

Re: [FFmpeg-devel] [PATCH] Fix quadratic memory use in ff_h2645_extract_rbsp() when multiple NALUs exist in packet.

2017-11-02 Thread Hendrik Leppkes
On Fri, Nov 3, 2017 at 12:38 AM, Derek Buitenhuis wrote: > On 11/2/2017 10:48 PM, Kieran Kunhya wrote: >> I have tried this using the following patch but it does not work: >> https://www.irccloud.com/pastebin/qobTcW9d/ >> >> Nothing obviously seems wrong so I suspect

[FFmpeg-devel] [PATCH] lavf/mov.c: Refine edit list start seek, based on PTS computed from CTTS.

2017-11-02 Thread Sasi Inguva
Partially fixes t/6699. --- libavformat/mov.c| 129 +++ tests/fate/mov.mak | 8 +++ tests/ref/fate/mov-ibi-elst-starts-b | 33 + 3 files changed, 127 insertions(+), 43 deletions(-) create mode 100644

[FFmpeg-devel] [PATCH] diracdec: fix deprecated API usage

2017-11-02 Thread Nicolas Frattaroli
avcodec_get_chroma_sub_sample is deprecated and generates a warning during build, so av_pix_fmt_get_chroma_sub_sample is used Signed-off-by: Nicolas Frattaroli --- libavcodec/diracdec.c | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git

Re: [FFmpeg-devel] Support for h264/SVC over RTP and SVC base layer decoding in h264

2017-11-02 Thread Michael Niedermayer
On Wed, Nov 01, 2017 at 05:49:48PM +, Breeden, Joshua wrote: > > No but I wonder if the variables "y" and "t" can have more useful names > > (that may or may not make the comment unneeded), > > I've made the variable names more self-explanatory and condensed the comments > > > Please do not

Re: [FFmpeg-devel] [PATCH] avcodec/mmaldec: use zero-copy for AV_PIX_FMT_MMAL

2017-11-02 Thread Wang Bin
获取 Outlook for Android 发件人: Wang Bin 发送时间: 11月2日星期四 16:40 主题: Re: [FFmpeg-devel] [PATCH] avcodec/mmaldec: use zero-copy for AV_PIX_FMT_MMAL 收件人: FFmpeg development discussions and patches 获取 Outlook for Android From: ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avcodec/mmaldec: use zero-copy for AV_PIX_FMT_MMAL

2017-11-02 Thread Wang Bin
?? Outlook for Android From: ffmpeg-devel on behalf of wm4 Sent: Monday, September 4, 2017 6:04:22 PM To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH]

[FFmpeg-devel] GoPro Cineform open sourced

2017-11-02 Thread Robert Krüger
For anyone who hasn't stumbled over this yet: https://gopro.com/news/gopro-open-sources-the-cineform-codec Might be a target for integration (it includes an encoder) or contain clues for ffmpeg's own decoder. HTH ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH] avcodec/mmaldec: use zero-copy forAV_PIX_FMT_MMAL

2017-11-02 Thread wbsecg1
> On Sun, 3 Sep 2017 15:44:36 +0300 Yevhen Kyriukha wrote: > >> Signed-off-by: Yevhen Kyriukha >> — >> libavcodec/mmaldec.c | 5 - >> 1 file changed, 4 insertions(+), 1 deletion(-) >>  >> diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c >> index

Re: [FFmpeg-devel] [PATCH] avfilter: slice processing for geq

2017-11-02 Thread Michael Niedermayer
On Thu, Nov 02, 2017 at 02:04:33PM +, Marc-Antoine ARNAUD wrote: > > vf_geq.c | 126 > --- > 1 file changed, 89 insertions(+), 37 deletions(-) > b0379f3d7f1d9660e209fe491f48fd7f70113615 >

Re: [FFmpeg-devel] [PATCH] diracdec: fix deprecated API usage

2017-11-02 Thread James Almer
On 11/2/2017 7:39 PM, Nicolas Frattaroli wrote: > avcodec_get_chroma_sub_sample is deprecated and generates a warning > during build, so av_pix_fmt_get_chroma_sub_sample is used > > Signed-off-by: Nicolas Frattaroli > --- > libavcodec/diracdec.c | 12 ++-- > 1 file

Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fix base_output_dirname is null when basename_size is 0 bug

2017-11-02 Thread Marton Balint
On Thu, 2 Nov 2017, Liu Steven wrote: 在 2017年11月2日,上午3:18,Marton Balint 写道: On Wed, 1 Nov 2017, Marton Balint wrote: On Sun, 29 Oct 2017, Liu Steven wrote: 在 2017年10月26日,上午7:54,Steven Liu 写道: fix ticket id: #6777 when use argument

Re: [FFmpeg-devel] [PATCH] avformat: add TiVo ty demuxer

2017-11-02 Thread Paul B Mahol
On 11/2/17, Michael Niedermayer wrote: > On Wed, Nov 01, 2017 at 02:40:27PM +0100, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> libavformat/Makefile | 1 + >> libavformat/allformats.c | 1 + >> libavformat/ty.c | 775 >>

[FFmpeg-devel] [PATCH] Add android_capture indev

2017-11-02 Thread Felix Matouschek
Hello, I've written an indev for Android devices to allow capturing their builtin cameras. What needs to be done to merge this? Greetings, FelixFrom b21fc8729ef2e1d9867dd7652f2c6173378e4910 Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Tue, 24 Oct 2017 13:11:23

Re: [FFmpeg-devel] [PATCH] avfilter: initial macroblock types export and visualization

2017-11-02 Thread Michael Niedermayer
Hi On Sat, Oct 28, 2017 at 07:43:05AM -0400, Ronald S. Bultje wrote: > Hi, > > On Fri, Oct 27, 2017 at 10:14 PM, Michael Niedermayer < > mich...@niedermayer.cc> wrote: > > > On Fri, Oct 27, 2017 at 10:03:54PM +0200, Paul B Mahol wrote: > > > Signed-off-by: Paul B Mahol > > >

Re: [FFmpeg-devel] [PATCH] avfilter/vf_tile: remove limit of max tile size

2017-11-02 Thread Nicolas George
Le decadi 10 brumaire, an CCXXVI, Paul B Mahol a écrit : > Signed-off-by: Paul B Mahol > --- > libavfilter/vf_tile.c | 17 + > 1 file changed, 13 insertions(+), 4 deletions(-) > > diff --git a/libavfilter/vf_tile.c b/libavfilter/vf_tile.c > index

Re: [FFmpeg-devel] [PATCH] avfilter: initial macroblock types export and visualization

2017-11-02 Thread Paul B Mahol
On 11/2/17, Michael Niedermayer wrote: > Hi > > On Sat, Oct 28, 2017 at 07:43:05AM -0400, Ronald S. Bultje wrote: >> Hi, >> >> On Fri, Oct 27, 2017 at 10:14 PM, Michael Niedermayer < >> mich...@niedermayer.cc> wrote: >> >> > On Fri, Oct 27, 2017 at 10:03:54PM +0200, Paul B

Re: [FFmpeg-devel] [PATCH 1/2] lavfi: check links properties after configuring them.

2017-11-02 Thread Nicolas George
Le primidi 11 brumaire, an CCXXVI, Clement Boesch a écrit : > My bad, you're right, I was looking at the wrong header with the same > variable names. Dismiss my comment. Ok, series pushed. > I'd say that a counter is unlikely to require a sign vs unsigned > optimization (and if it does and we

[FFmpeg-devel] [PATCH] avfilter: slice processing for geq

2017-11-02 Thread Marc-Antoine ARNAUD
0001-avfilter-slice-processing-for-geq.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] Add android_capture indev

2017-11-02 Thread Nicolas George
Le duodi 12 brumaire, an CCXXVI, Felix Matouschek a écrit : > I've written an indev for Android devices to allow capturing their builtin > cameras. > What needs to be done to merge this? Thanks for the patch. It looks very interesting. Before considering merging, there are a few technical point

Re: [FFmpeg-devel] [PATCH 2/2] avformat/hlsenc: reindent hlsenc code

2017-11-02 Thread Steven Liu
2017-11-02 7:52 GMT+08:00 Steven Liu : > Signed-off-by: Steven Liu > --- > libavformat/hlsenc.c | 52 > ++-- > 1 file changed, 26 insertions(+), 26 deletions(-) > > diff --git a/libavformat/hlsenc.c

Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: check hls segment mode for ignore the init filename

2017-11-02 Thread Steven Liu
2017-11-02 7:52 GMT+08:00 Steven Liu : > ignore the fmp4_init_filename when in normal hls segment mode > > Signed-off-by: Steven Liu > --- > libavformat/hlsenc.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavformat/hlsenc.c

Re: [FFmpeg-devel] [PATCH] Add android_capture indev

2017-11-02 Thread Moritz Barsnick
In addition to Nicolas's, further (style) comments: > Subject: [PATCH] Add android_capture indev More like: avdevice: add android_capture [or android_camera] indev > configure | 6 + > libavdevice/Makefile | 1 + > libavdevice/alldevices.c | 1 + >

[FFmpeg-devel] [PATCH] avcodec/mips: Improve avc avg mc 20, 21 and 23 msa functions

2017-11-02 Thread kaustubh.raste
From: Kaustubh Raste Load the specific destination bytes instead of MSA load and pack. Remove unused macros and functions. Signed-off-by: Kaustubh Raste --- libavcodec/mips/h264qpel_msa.c | 1274 ++-- 1

[FFmpeg-devel] [PATCH] avcodec/mips: Improve hevc bi 4 tap hz and vt mc msa functions

2017-11-02 Thread kaustubh.raste
From: Kaustubh Raste Use global mask buffer for appropriate mask load. Signed-off-by: Kaustubh Raste --- libavcodec/mips/hevc_mc_bi_msa.c | 428 +++--- 1 file changed, 210 insertions(+), 218 deletions(-)