Re: [FFmpeg-devel] [PATCH v7] lavf/flv: Add XV (Xunlei Video) Support. Fixes ticket #3720

2019-05-01 Thread Gyan
On 02-05-2019 10:33 AM, shi...@iitk.ac.in wrote: lavf/flv: Add XV (Xunlei Video) Support. The patch fixes ticket #3720. It would just skip the first packet, which stores the decrypted data and moves on the next packet. Also, Thank you Moritz Barsnick for commenting this on the ticket. It

Re: [FFmpeg-devel] [PATCH V5 1/2] configure: sort decoder/encoder/filter/... names in alphabet order

2019-05-01 Thread Lauri Kasanen
On Wed, 1 May 2019 22:57:47 +0200 Carl Eugen Hoyos wrote: > 2019-04-28 3:18 GMT+02:00, Alexander Strasser : > > > What do you think about using awk instead of shell? > > Do we only use awk for --enable-random and the dependency > files so far? Does configure also work without awk now and > would

[FFmpeg-devel] [PATCH v7] lavf/flv: Add XV (Xunlei Video) Support. Fixes ticket #3720

2019-05-01 Thread shivgo
lavf/flv: Add XV (Xunlei Video) Support. The patch fixes ticket #3720. It would just skip the first packet, which stores the decrypted data and moves on the next packet. Also, Thank you Moritz Barsnick for commenting this on the ticket. It really helped me. I would also add the documentation for

[FFmpeg-devel] [PATCH] avcodec/cinepak: Add missing const qualifier

2019-05-01 Thread Andreas Rheinhardt
Has been forgotten in b606493717db6424d693e1a944f51171e9e72905. Signed-off-by: Andreas Rheinhardt --- libavcodec/cinepak.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cinepak.c b/libavcodec/cinepak.c index d26c505222..a5132ddbc0 100644 ---

Re: [FFmpeg-devel] [PATCH V5 1/2] configure: sort decoder/encoder/filter/... names in alphabet order

2019-05-01 Thread Carl Eugen Hoyos
2019-04-28 3:18 GMT+02:00, Alexander Strasser : > What do you think about using awk instead of shell? Do we only use awk for --enable-random and the dependency files so far? Does configure also work without awk now and would this change? Thank you, Carl Eugen

Re: [FFmpeg-devel] [PATCH V5 1/2] configure: sort decoder/encoder/filter/... names in alphabet order

2019-05-01 Thread Alexander Strasser
On 2019-04-29 00:55 +, Guo, Yejun wrote: [...] > > Wild guess: CR LF line endings are emitted somewhere and the CRs stay in > > the input. Your terminal resets the cursor to the start of the line when > > interpreting the midline CRs. > > > > Does it work if you extend the tr in

Re: [FFmpeg-devel] [PATCH] rtsp: add pkt_size option

2019-05-01 Thread Tristan Matthews
On Thu, Apr 18, 2019 at 5:14 PM Tristan Matthews wrote: > > On Mon, Apr 15, 2019 at 6:50 PM Tristan Matthews wrote: > > > > This allows users to specify an upper limit on the size of outgoing packets > > when publishing via RTSP. > > > > Signed-off-by: Martin Storsjö > > --- > >

[FFmpeg-devel] [PATCH 1/2] avcodec/prosumer: Only memset(0) what is needed.

2019-05-01 Thread Michael Niedermayer
Fixes: Timeout (11sec -> 0.08sec) Fixes: 14406/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PROSUMER_fuzzer-5151210148986880 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/prosumer.c |

[FFmpeg-devel] [PATCH 2/2] avcodec/fic: Check input size against minimal frame size

2019-05-01 Thread Michael Niedermayer
Fixes: Timeout (22sec ->54ms) Fixes: 14439/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FIC_fuzzer-5660988231122944 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/fic.c | 2 +- 1 file

[FFmpeg-devel] [PATCH] avfilter/vf_freezedetect: fix missing freeze_start when the freeze length is around the detection duration

2019-05-01 Thread Marton Balint
Fixes ticket #7875. Signed-off-by: Marton Balint --- libavfilter/vf_freezedetect.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libavfilter/vf_freezedetect.c b/libavfilter/vf_freezedetect.c index 299a5dfbf6..cc086afee6 100644 --- a/libavfilter/vf_freezedetect.c +++

[FFmpeg-devel] [PATCH] avdevice/decklink: fix checking video mode in SDK version 11

2019-05-01 Thread Marton Balint
Apparently in the new SDK one cannot query if VANC output is supported, so we will fall back to non-VANC output if enabling the video output with VANC fails. Fixes ticket #7867. Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 16 +--- libavdevice/decklink_enc.cpp

[FFmpeg-devel] [PATCH 2/2] configure: log_file: Replace pr with awk invocation

2019-05-01 Thread Alexander Strasser
Fixes remaining part of ticket #5680 Signed-off-by: Alexander Strasser --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 81e3776060..96ada8f636 100755 --- a/configure +++ b/configure @@ -503,7 +503,7 @@ log(){ log_file(){ log

[FFmpeg-devel] [PATCH 1/2] configure: print_in_columns: Replace pr with awk

2019-05-01 Thread Alexander Strasser
Get rid of pr dependency and write the columns strictly alphabetical for the given rows. Before pr would attempt to write pages, thus if a page boundary was reached, the output looked confusing as one couldn't see there was a new page and the alphabetical order was disrupted when scanning down

[FFmpeg-devel] [PATCH 0/2] configure: Replace pr with awk and fix column sorting

2019-05-01 Thread Alexander Strasser
Hi all, as was discussed in a previous patch set, this is a new try at getting the output of print_in_columns sorted in correct alphabetical order. The order with pr is messed up, because it assumes a page size and therefore breaks columns earlier. This is also a try to get rid of the pr

Re: [FFmpeg-devel] [PATCH] ffmpeg: Add option to force a specific decode format

2019-05-01 Thread Eoff, Ullysses A
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of Carl > Eugen Hoyos > Sent: Wednesday, May 01, 2019 2:59 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] ffmpeg: Add option to force a specific >

Re: [FFmpeg-devel] [PATCH v2] avcodec: add realtime bitstream filter

2019-05-01 Thread James Almer
On 5/1/2019 11:13 AM, Moritz Barsnick wrote: > Works for video and audio streams. > > Similar to the "-re" option in ffmpeg, but unlike that option does not > only work for input files, and is not only implemented for the > command line tool. This filter is available through the libraries, > and

Re: [FFmpeg-devel] [PATCH] avfilter/f_realtime: add option to scale speed

2019-05-01 Thread Moritz Barsnick
On Tue, Apr 30, 2019 at 22:13:13 +0200, Paul B Mahol wrote: > > This adds two double precision divisions per frame, which seems acceptable. > > What is status of this patch? While contemplating over it, I apparently got over it. V2 posted. Retained the automatic sleep adjustment. Thanks, Moritz

[FFmpeg-devel] [PATCH v2] avcodec: add realtime bitstream filter

2019-05-01 Thread Moritz Barsnick
Works for video and audio streams. Similar to the "-re" option in ffmpeg, but unlike that option does not only work for input files, and is not only implemented for the command line tool. This filter is available through the libraries, and unlike the "realtime" filter also works when using the

[FFmpeg-devel] [PATCH v2] avfilter/f_realtime: add option to scale speed

2019-05-01 Thread Moritz Barsnick
--- doc/filters.texi | 8 libavfilter/f_realtime.c | 7 +-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index cd82869849..2f9333c3f3 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -21136,6 +21136,14 @@ They

Re: [FFmpeg-devel] [DECISION] Project policy on closed source components

2019-05-01 Thread James Almer
On 4/29/2019 1:34 AM, Gyan wrote: > > > On 29-04-2019 05:37 AM, Marton Balint wrote: >> >> >> On Sun, 28 Apr 2019, Marton Balint wrote: >> >>> Hi All, >>> >>> There has been discussion on the mailing list several times about the >>> inclusion of support for closed source components (codecs,

Re: [FFmpeg-devel] [DECISION] Project policy on closed source components

2019-05-01 Thread Ronald S. Bultje
Hi, On Sun, Apr 28, 2019 at 4:02 PM Marton Balint wrote: > Hi All, > > There has been discussion on the mailing list several times about the > inclusion of support for closed source components (codecs, formats, > filters, etc) in the main ffmpeg codebase. > > Also the removal of libNDI happened

Re: [FFmpeg-devel] [PATCH] lavfi: add gblur_opencl filter

2019-05-01 Thread Moritz Barsnick
On Tue, Apr 30, 2019 at 15:45:23 +0200, Paul B Mahol wrote: > On 4/30/19, Dylan Fernando wrote: > > > > Anyone have any feedback? > > If I'm not mistaken there is already one available. Dylan did post a v2 of this patch (with changes made to those things I commented on), but unfortunately posted

Re: [FFmpeg-devel] [PATCH] ffmpeg: Add option to force a specific decode format

2019-05-01 Thread Dennis Mungai
On Wed, 1 May 2019 at 13:04, Carl Eugen Hoyos wrote: > 2019-04-30 19:48 GMT+02:00, Eoff, Ullysses A : > >> -Original Message- > >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of > >> Carl Eugen Hoyos > >> Sent: Tuesday, April 23, 2019 12:48 PM > >> To: FFmpeg

Re: [FFmpeg-devel] [PATCH] ffmpeg: Add option to force a specific decode format

2019-05-01 Thread Carl Eugen Hoyos
2019-04-30 19:48 GMT+02:00, Eoff, Ullysses A : >> -Original Message- >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of >> Carl Eugen Hoyos >> Sent: Tuesday, April 23, 2019 12:48 PM >> To: FFmpeg development discussions and patches >> Subject: Re: [FFmpeg-devel]

Re: [FFmpeg-devel] [PATCH] libavfilter: Add more operation supports in FFmpeg dnn native mode.

2019-05-01 Thread xwmeng
> -原始邮件- > 发件人: "Guo, Yejun" > 发送时间: 2019-04-30 08:43:43 (星期二) > 收件人: "FFmpeg development discussions and patches" > 抄送: > 主题: Re: [FFmpeg-devel] [PATCH] libavfilter: Add more operation supports in > FFmpeg dnn native mode. > > > > > -Original Message- > > From:

Re: [FFmpeg-devel] [PATCH 1/4] swscale/ppc: VSX-optimize hScale8To19_vsx

2019-05-01 Thread Lauri Kasanen
Copy-paste thinko in the title I see. Will remove the _vsx suffix from the title. - Lauri ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email