Re: [FFmpeg-devel] [FFmpeg-cvslog] lavc/qsvenc: enable vp9 encoder

2019-11-03 Thread Zhong Li
James Almer 于2019年11月3日周日 下午9:18写道: > > > ffmpeg | branch: master | Zhong Li > > | Sat Oct 26 22:18:31 > > 2019 +0800| [33583803e107b6d532def0f9d949364b01b6ad5a] | committer: Zhong Li > > > > lavc/qsvenc: enable vp9 encoder > > > > 1. must enabl

[FFmpeg-devel] [PATCH] lavc/qsvenc: add the missing vp9 file

2019-11-03 Thread Zhong Li
It is missed in commit 3358380 Signed-off-by: Zhong Li --- libavcodec/qsvenc_vp9.c | 113 1 file changed, 113 insertions(+) create mode 100644 libavcodec/qsvenc_vp9.c diff --git a/libavcodec/qsvenc_vp9.c b/libavcodec/qsvenc_vp9.c new file mode 1

Re: [FFmpeg-devel] [PATCH V1] lavf/dashdec: drop unnecessary check before ff_format_io_close

2019-11-03 Thread Steven Liu
> 在 2019年11月4日,10:31,myp...@gmail.com 写道: > > On Tue, Sep 24, 2019 at 12:41 AM Jun Zhao wrote: > >> From: Jun Zhao >> >> ff_format_io_close will check the AVIOContext pointer pb, so drop >> the unnecessary check before ff_format_io_close. >> >> Signed-off-by: Jun Zhao >> --- >> libavformat

Re: [FFmpeg-devel] [PATCH V1] lavf/dashdec: drop unnecessary check before ff_format_io_close

2019-11-03 Thread myp...@gmail.com
On Tue, Sep 24, 2019 at 12:41 AM Jun Zhao wrote: > From: Jun Zhao > > ff_format_io_close will check the AVIOContext pointer pb, so drop > the unnecessary check before ff_format_io_close. > > Signed-off-by: Jun Zhao > --- > libavformat/dashdec.c | 12 > 1 files changed, 4 inserti

Re: [FFmpeg-devel] [PATCH] Support for zulu timezone format for PDT in HLS playlists

2019-11-03 Thread Steven Liu
> 在 2019年11月3日,20:14,Marton Balint 写道: > > > > On Fri, 25 Oct 2019, Ole Andre Birkedal wrote: > >> I think this is the best solution, with just one new flag +utc_pdt that will >> force timestamps of PDT to be in UTC with the format -MM-DDThh:mm:ssZ. >> Too many flags will be confusing,

Re: [FFmpeg-devel] [PATCH] lavfi/normalize: remove the unused pointer

2019-11-03 Thread myp...@gmail.com
On Sun, Sep 29, 2019 at 4:05 PM Zhong Li wrote: > Signed-off-by: Zhong Li > --- > libavfilter/vf_normalize.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/libavfilter/vf_normalize.c b/libavfilter/vf_normalize.c > index 48eea59..d5cb536 100644 > --- a/libavfilter/vf_normalize.c > +++

Re: [FFmpeg-devel] [PATCH V1 1/3] lavf/mpegtsenc: fix logic check error

2019-11-03 Thread myp...@gmail.com
On Mon, Nov 4, 2019 at 3:24 AM Andriy Gelman wrote: > On Sun, 16. Jun 01:13, Jun Zhao wrote: > > From: Jun Zhao > > > > fix the logic check error > > > > Signed-off-by: Jun Zhao > > --- > > libavformat/mpegtsenc.c |2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > diff --g

[FFmpeg-devel] [PATCH v2] avdevice/v4l2: Remove av_assert0 when format not supported

2019-11-03 Thread Andriy Gelman
From: Andriy Gelman This commit removes an av_assert0 which signals an abort when a v4l2 device does not support a target format. For example: ./ffmpeg -f v4l2 -codec:v h264 -i /dev/video0 -f mpegts - will currently signal an abort if /dev/video0 does not support h264. The new behaviour is to re

[FFmpeg-devel] [PATCH] avcodec/mxpegdec: Check for multiple SOF

2019-11-03 Thread Michael Niedermayer
Fixes: Timeout (14sec -> 9ms) Fixes: 18598/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MXPEG_fuzzer-5726095261564928 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/mxpegdec.c | 8 ++

Re: [FFmpeg-devel] [PATCH v2 1/4] frame: handle add side data with the same type

2019-11-03 Thread Michael Niedermayer
On Fri, Nov 01, 2019 at 06:16:38PM +0100, Marton Balint wrote: > > > On Fri, 1 Nov 2019, "zhilizhao(赵志立)" wrote: > > > > > > >>On Nov 1, 2019, at 8:13 PM, Hendrik Leppkes wrote: > >> > >>On Fri, Nov 1, 2019 at 1:03 PM wrote: > >>> > >>>From: Zhao Zhili > >>> > >>>--- > >>>libavutil/frame.c |

Re: [FFmpeg-devel] [PATCH V1 1/3] lavf/mpegtsenc: fix logic check error

2019-11-03 Thread Andriy Gelman
On Sun, 16. Jun 01:13, Jun Zhao wrote: > From: Jun Zhao > > fix the logic check error > > Signed-off-by: Jun Zhao > --- > libavformat/mpegtsenc.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c > index fc0ea22..5

Re: [FFmpeg-devel] [PATCH] avdevice/v4l2: Change assert type when format not supported

2019-11-03 Thread Carl Eugen Hoyos
Am So., 3. Nov. 2019 um 18:03 Uhr schrieb Andriy Gelman : > > On Sun, 03. Nov 17:37, Nicolas George wrote: > > Andriy Gelman (12019-11-03): > > > From: Andriy Gelman > > > > > > Currently an av_assert0 is triggered when a target format is not > > > supported by a v4l2 device. Replace by av_assert1

Re: [FFmpeg-devel] [PATCH] avdevice/v4l2: Change assert type when format not supported

2019-11-03 Thread Andriy Gelman
On Sun, 03. Nov 17:37, Nicolas George wrote: > Andriy Gelman (12019-11-03): > > From: Andriy Gelman > > > > Currently an av_assert0 is triggered when a target format is not > > supported by a v4l2 device. Replace by av_assert1 to fix this issue. > > > > Fixes #6629. > > No. It does not fix it,

Re: [FFmpeg-devel] [PATCH] avdevice/v4l2: Change assert type when format not supported

2019-11-03 Thread Nicolas George
Andriy Gelman (12019-11-03): > From: Andriy Gelman > > Currently an av_assert0 is triggered when a target format is not > supported by a v4l2 device. Replace by av_assert1 to fix this issue. > > Fixes #6629. No. It does not fix it, it just hides it in non-devel builds. Regards, -- Nicolas

[FFmpeg-devel] [PATCH] avdevice/v4l2: Change assert type when format not supported

2019-11-03 Thread Andriy Gelman
From: Andriy Gelman Currently an av_assert0 is triggered when a target format is not supported by a v4l2 device. Replace by av_assert1 to fix this issue. Fixes #6629. --- libavdevice/v4l2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2

Re: [FFmpeg-devel] [FFmpeg-cvslog] lavc/qsvenc: enable vp9 encoder

2019-11-03 Thread James Almer
> ffmpeg | branch: master | Zhong Li > | Sat Oct 26 22:18:31 > 2019 +0800| [33583803e107b6d532def0f9d949364b01b6ad5a] | committer: Zhong Li > > lavc/qsvenc: enable vp9 encoder > > 1. must enable low_power mode since just VDENC can be supported by

Re: [FFmpeg-devel] [PATCH] Support for zulu timezone format for PDT in HLS playlists

2019-11-03 Thread Marton Balint
On Fri, 25 Oct 2019, Ole Andre Birkedal wrote: I think this is the best solution, with just one new flag +utc_pdt that will force timestamps of PDT to be in UTC with the format -MM-DDThh:mm:ssZ. Too many flags will be confusing, and the "zulu" name can be a bit confusing so I removed any

Re: [FFmpeg-devel] [PATCH] avformat/ftp: add AVOptions for authentication

2019-11-03 Thread Marton Balint
On Sun, 27 Oct 2019, Nicolas Frattaroli wrote: This introduces two new AVOption options for the FTP protocol, one named ftp-user to supply the username to be used for auth, one named ftp-password to supply the password to be used for auth. These are useful for when an API user does not wish t

Re: [FFmpeg-devel] [PATCH] lavc/qsvenc: Fix bitrate_limit to allow AVC encode in limited bitrate

2019-11-03 Thread Zhong Li
Applied. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".