Re: [FFmpeg-devel] [PATCH 0/6] qsv: Fix compiler errors when using libmfx 2.0 (oneVPL)

2020-09-27 Thread Xiang, Haihao
Hi Mark, Zhong, Could you please review this patchset too when you get a chance? Thanks Haihao > The oneAPI Video Processing Library (oneVPL) is a single interface for > encode, decode and video processing, the obsolete features in Intel > Media Software Development Kit are removed from oneVPL

Re: [FFmpeg-devel] [PATCH] lavc/qsvdec: Add QSV AV1 decoder

2020-09-27 Thread Xiang, Haihao
> > AV1 decoder is supported on Tiger Lake+ platforms since libmfx 1.34 > > > > Signed-off-by: Haihao Xiang > > LGTM. Will apply soon. Thanks, Zhong ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-dev

Re: [FFmpeg-devel] [PATCH] avfilter/setparams: add FF_FILTER_FLAG_HWFRAME_AWARE

2020-09-27 Thread Pavel Koshevoy
On Wed, Sep 23, 2020 at 1:32 PM Paul B Mahol wrote: > On Mon, Sep 21, 2020 at 09:47:40PM -0600, Pavel Koshevoy wrote: > > Allow setparams to be used with hw backed frames and > > avoid an assertion failure in avfilter_config_links. > > --- > > libavfilter/vf_setparams.c | 3 +++ > > 1 file chang

Re: [FFmpeg-devel] [PATCH 2/2] lavf/hls: add AC-3/EAC-3 to allowed extensions file list

2020-09-27 Thread myp...@gmail.com
On Sat, Sep 26, 2020 at 4:47 PM Steven Liu wrote: > > Jun Zhao 于2020年9月25日周五 下午8:25写道: > > > > From: Jun Zhao > > > > Add AC-3/EAC-3 to allowed extensions file list. > > > > From HTTP Live Streaming 2nd Edition draft-pantos-hls-rfc8216bis-07 > > section 3.1.3.Packed Audio, HLS demuxer need to su

Re: [FFmpeg-devel] [PATCH 1/2] avformat/iff: Check data_size not overflowing int64

2020-09-27 Thread Peter Ross
On Sun, Sep 27, 2020 at 10:20:52PM +0200, Michael Niedermayer wrote: > Fixes: Infinite loop > Fixes: > 25844/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5660803318153216 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Signed-of

[FFmpeg-devel] [PATCH] avformat/http: double header length to 8192

2020-09-27 Thread Alexandru Mihaiuc
The old length of 4096 chars for the headers is not enough when sites expect a significant amount of cookies - for example microsoftstream. Signed-off-by: foxmsft --- libavformat/http.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/http.h b/libavformat/http.h in

[FFmpeg-devel] [PATCH 1/2] avformat/iff: Check data_size not overflowing int64

2020-09-27 Thread Michael Niedermayer
Fixes: Infinite loop Fixes: 25844/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5660803318153216 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavformat/iff.c | 3 +++ 1 file changed, 3 insert

[FFmpeg-devel] [PATCH 2/2] avcodec/cook: Check subpacket index against max

2020-09-27 Thread Michael Niedermayer
Fixes: off by 1 error Fixes: index 5 out of bounds for type 'COOKSubpacket [5]' Fixes: 25772/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_COOK_fuzzer-5762459498184704.fuzz Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Mich

[FFmpeg-devel] [PATCH] avformat/http: double header length to 8192

2020-09-27 Thread Alexandru Mihaiuc
Just double the http header length from 4096 to 8192, I have found a case where the old size was too small. 0001-avformat-http-double-header-length-to-8192.patch Description: 0001-avformat-http-double-header-length-to-8192.patch ___ ffmpeg-devel mailin

[FFmpeg-devel] [PATCH] avformat/http: double header length to 8192

2020-09-27 Thread Alexandru Mihaiuc
0001-avformat-http-double-header-length-to-8192.patch Description: 0001-avformat-http-double-header-length-to-8192.patch ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link

[FFmpeg-devel] [PATCH] avformat/http: double header length to 8192

2020-09-27 Thread Alexandru Mihaiuc
Extends the header size for http requests, since I encountered a case where the previous 4096 wasn't enough. 0001-avformat-http-double-header-length-to-8192.patch Description: 0001-avformat-http-double-header-length-to-8192.patch ___ ffmpeg-devel maili

Re: [FFmpeg-devel] [PATCH 2/2] avformat/rtsp: allocate correct max number of pollfds

2020-09-27 Thread zhilizhao(赵志立)
> On Sep 27, 2020, at 6:26 AM, Andriy Gelman wrote: > > From: Andriy Gelman > > There is one general rtsp connection plus two connections per stream > (rtp/rtcp). > > Signed-off-by: Andriy Gelman > --- > libavformat/rtsp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --

Re: [FFmpeg-devel] [PATCH] vf_colorspace: Added linear trc.

2020-09-27 Thread Andrew Klaassen
On Sunday, September 27, 2020, 09:15:54 a.m. EDT, Ronald S. Bultje wrote: > Merged. Thanks! Andrew ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email

Re: [FFmpeg-devel] [PATCH] vf_colorspace: Added linear trc.

2020-09-27 Thread Ronald S. Bultje
Hi, On Thu, Sep 24, 2020 at 3:01 PM Andrew Klaassen < clawsoon-at-yahoo@ffmpeg.org> wrote: > This patch adds the coefficients for the linear gamma function (1,0,1,0) > to the colorspace filter. > > Signed-off-by: Andrew Klaassen > --- > libavfilter/vf_colorspace.c | 2 ++ > 1 file changed,

Re: [FFmpeg-devel] [PATCH] avfilter/vf_delogo: remove duplicated code

2020-09-27 Thread zhilizhao(赵志立)
> On Sep 27, 2020, at 2:02 AM, Paul B Mahol wrote: > > On Sun, Sep 27, 2020 at 12:38:57AM +0800, Zhao Zhili wrote: >> Ping. >> >>> On Sep 16, 2020, at 1:09 PM, quinkbl...@foxmail.com wrote: >>> >>> From: Zhao Zhili >>> >>> 1. Remove the modification of x, y, w and h parameters since they >>

[FFmpeg-devel] Example filter that process video and audio

2020-09-27 Thread david
Was looking to create a filter to process video and audio in a filter graph, can find examples in movie or a source that has both video and audio but not anything that takes both, any pointers to something to use as a reference? David ___ ffmpeg-deve

[FFmpeg-devel] [PATCH v3 1/2] avformat/rtsp: fix infinite loop with udp transport

2020-09-27 Thread Zhao Zhili
Fix #8840. Steps to reproduce: 1. sender: ./ffmpeg -i test.mp4 -c copy -f rtsp -rtsp_transport udp rtsp://localhost:12345/live.sdp 2. receiver: ./ffmpeg_g -y -rtsp_flags listen -timeout 100 -i rtsp://localhost:12345/live.sdp -c copy test.mp4 --- v3: mention the ticket. libavformat/rtsp.c|

[FFmpeg-devel] [PATCH v3 2/2] avformat/rtsp: fix parse_rtsp_message

2020-09-27 Thread Zhao Zhili
1. Remove the assumption that the message method is TEARDOWN. 2. Don't ignore the error code of ff_rtsp_parse_streaming_commands. --- libavformat/rtsp.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 597413803f..3e69ab7287 100

Re: [FFmpeg-devel] [PATCH 2/3] avcodec/exr: Fix overflow with many blocks

2020-09-27 Thread Andreas Rheinhardt
Michael Niedermayer: > Fixes: signed integer overflow: 1073741827 * 8 cannot be represented in type > 'int' > Fixes: > 25621/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-6304841641754624 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/pr

[FFmpeg-devel] [PATCH 1/3] avcodec/exr: Check xdelta, ydelta

2020-09-27 Thread Michael Niedermayer
Fixes: assertion failure Fixes: 25617/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-5648746061496320 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/exr.c | 3 ++- 1 file change

[FFmpeg-devel] [PATCH 3/3] avcodec/exr: Check line size for overflow

2020-09-27 Thread Michael Niedermayer
Fixes: signed integer overflow: 570425356 * 6 cannot be represented in type 'int Fixes: 25929/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-5099197739827200 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael N

[FFmpeg-devel] [PATCH 2/3] avcodec/exr: Fix overflow with many blocks

2020-09-27 Thread Michael Niedermayer
Fixes: signed integer overflow: 1073741827 * 8 cannot be represented in type 'int' Fixes: 25621/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-6304841641754624 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michae