Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_edgedetect: properly implement double_threshold()

2020-06-29 Thread Valery Kot
On Sun, Jun 28, 2020 at 12:03 AM Andriy Gelman wrote: > > lgtm. I saw a small improvement when testing. > > Would be nice to allow weak edges that become strong to trigger neighboring > weak > edges in the future. Thanks for the comment. You are right, ideally double_threshold should be recursi

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Kieran Kunhya
On Sun, 28 Jun 2020 at 15:27, Carl Eugen Hoyos wrote: > Am So., 28. Juni 2020 um 16:24 Uhr schrieb Gautam Ramakrishnan > : > > > Oh got it, just need to ignore the text then. > > You *can* > > Carl Eugen > Why are you confusing Gautam like this? If I were new to FFmpeg and working on this I woul

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/smacker: Add FF_CODEC_CAP_INIT_CLEANUP

2020-06-29 Thread Andreas Rheinhardt
Andreas Rheinhardt: > Signed-off-by: Andreas Rheinhardt > --- > libavcodec/smacker.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/libavcodec/smacker.c b/libavcodec/smacker.c > index b4c463b4b9..9f054f071d 100644 > --- a/libavcodec/smacker.c > +++ b/libavcodec/smacke

Re: [FFmpeg-devel] [PATCH] avcodec/internal: fix the outdating comments for ff_add_cpb_side_data()

2020-06-29 Thread Moritz Barsnick
On Sun, Jun 28, 2020 at 20:55:08 +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > Subject: avcodec/internal: fix the outdating comments for > ff_add_cpb_side_data() "outdated" > - * Add a CPB properties side data to an encoding context. > + * Add a CPB properties side data to an codec

Re: [FFmpeg-devel] [PATCH 1/2] libavfilter/vf_colorconstancy.c : Cleanup code for new filter

2020-06-29 Thread Moritz Barsnick
On Thu, Jun 18, 2020 at 19:22:55 +0530, Yatendra Singh wrote: > +if(!strcmp(ctx->filter->name, GREY_EDGE)) > +{ Code style. => if (! .) { Moritz ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmp

Re: [FFmpeg-devel] [PATCH] avcodec: Add an SVT-AV1 encoder wrapper

2020-06-29 Thread Andreas Rheinhardt
James Almer: > From: Daryl Seah > > Signed-off-by: Daryl Seah > Signed-off-by: Jing SUN > Signed-off-by: ZhiZhen Tang > Signed-off-by: Zhong Li > Signed-off-by: Xu Guangxin > Signed-off-by: James Almer > --- > configure | 4 + > doc/encoders.texi | 36 +++ > doc/gene

Re: [FFmpeg-devel] [PATCH 2/2] libavfilter/vf_colorconstancy.c : Adding weighted greyedge

2020-06-29 Thread Moritz Barsnick
On Thu, Jun 18, 2020 at 19:22:56 +0530, Yatendra Singh wrote: > +for(int h = slice_start; h < slice_end; h++) > +{ Space between "for" and "(", and the opening bracket '{' goes on the same line. > +for(int w = 0; w < width; w++) > +{ Same here, and elsewhere (also for "if

Re: [FFmpeg-devel] [PATCH 2/4] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread Andreas Rheinhardt
lance.lmw...@gmail.com: > On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote: >> lance.lmw...@gmail.com: >>> From: Limin Wang >>> >>> Signed-off-by: Limin Wang >>> --- >>> doc/APIchanges| 3 +++ >>> libavcodec/avpacket.c | 1 + >>> libavcodec/decode.c | 1 + >>> liba

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Nicolas George
Gautam Ramakrishnan (12020-06-27): > I used 9 digits because I was using a fixed size string to store the number > and then used strol. Now as I removed the usage of strol, it wasnt necessary. > Do you thing using a loop of fixed iterations is a good idea? Is it better if > I use the for loop agai

[FFmpeg-devel] [PATCH 2/2] lavc/aac_ac3_parser: Cosmetics

2020-06-29 Thread Jun Zhao
From: Jun Zhao Signed-off-by: Jun Zhao --- libavcodec/aac_ac3_parser.c | 31 +++ 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c index b26790d..23c60f6 100644 --- a/libavcodec/aac_ac3_parser.c

Re: [FFmpeg-devel] [PATCH]libavfilter/asrc_atone.c : generate algorithmic music

2020-06-29 Thread Moritz Barsnick
On Thu, Jun 25, 2020 at 21:15:06 +0530, Ashutosh Pradhan wrote: > Generate algorithmic riff music. Changed to activate api. This commit doesn't change to activate API, as it introduces this filter. So that sentence doesn't belong here. > - Real War KVAG muxer > - > +- atone filter Don't remove

[FFmpeg-devel] [PATCH] lavfi/setpts: fix setpts/asetpts option dump error

2020-06-29 Thread Jun Zhao
From: Jun Zhao fix the command fmpeg -h filter=setpts/asetpts both dump the expr option with "FVA" flags. Signed-off-by: Jun Zhao --- libavfilter/setpts.c | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/libavfilter/setpts.c b/libavfilter/setpts.c index c7c3836..

[FFmpeg-devel] [PATCH 1/2] lavc/aac_ac3_parser: fix the potential overflow

2020-06-29 Thread Jun Zhao
From: Jun Zhao Fix the potential overflow. Suggested-by: Alexander Strasser Signed-off-by: Jun Zhao --- libavcodec/aac_ac3_parser.c | 9 + libavcodec/aac_ac3_parser.h | 4 ++-- tests/ref/fate/adtstoasc_ticket3715 | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-)

Re: [FFmpeg-devel] [PATCH 2/4] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread lance . lmwang
On Mon, Jun 29, 2020 at 02:06:49PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote: > >> lance.lmw...@gmail.com: > >>> From: Limin Wang > >>> > >>> Signed-off-by: Limin Wang > >>> --- > >>> doc/APIchanges|

Re: [FFmpeg-devel] [PATCH] avcodec/internal: fix the outdating comments for ff_add_cpb_side_data()

2020-06-29 Thread lance . lmwang
On Mon, Jun 29, 2020 at 01:36:00PM +0200, Moritz Barsnick wrote: > On Sun, Jun 28, 2020 at 20:55:08 +0800, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > Subject: avcodec/internal: fix the outdating comments for > > ff_add_cpb_side_data() > > "outdated" > > > - * Add a CPB properties si

Re: [FFmpeg-devel] [PATCH 2/4] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread Andreas Rheinhardt
lance.lmw...@gmail.com: > On Mon, Jun 29, 2020 at 02:06:49PM +0200, Andreas Rheinhardt wrote: >> lance.lmw...@gmail.com: >>> On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote: lance.lmw...@gmail.com: > From: Limin Wang > > Signed-off-by: Limin Wang > ---

[FFmpeg-devel] [PATCH v2] avcodec/internal: fix the outdated comments for ff_add_cpb_side_data()

2020-06-29 Thread lance . lmwang
From: Limin Wang It's used for decode and encode in fact, so it's more proper to change the encoding to codec in the comments. Signed-off-by: Limin Wang --- libavcodec/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/internal.h b/libavcodec/internal.h i

Re: [FFmpeg-devel] [PATCH 2/4] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread lance . lmwang
On Mon, Jun 29, 2020 at 03:52:00PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > On Mon, Jun 29, 2020 at 02:06:49PM +0200, Andreas Rheinhardt wrote: > >> lance.lmw...@gmail.com: > >>> On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com:

[FFmpeg-devel] RfP Candidates

2020-06-29 Thread Jean-Baptiste Kempf
Hello, The next step in the community voting process is to re-elect the Community and Technical Committees. Therefore, we need candidates. Reminders: The community committee is here to help smooth things down between people in the community and the conflicts that can arise here. The main task

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Gautam Ramakrishnan
On Mon, Jun 29, 2020 at 6:28 PM Nicolas George wrote: > > Gautam Ramakrishnan (12020-06-27): > > I used 9 digits because I was using a fixed size string to store the number > > and then used strol. Now as I removed the usage of strol, it wasnt > > necessary. > > Do you thing using a loop of fixed

Re: [FFmpeg-devel] [PATCH v3 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Gautam Ramakrishnan
On Mon, Jun 29, 2020 at 2:14 AM Michael Niedermayer wrote: > > On Sun, Jun 28, 2020 at 08:13:28PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds a pgx decoder. > > --- > > Changelog | 1 + > > doc/general.texi| 2 + > > libavcod

[FFmpeg-devel] [PATCH v3 1/2] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/APIchanges| 3 +++ libavcodec/avpacket.c | 1 + libavcodec/decode.c | 1 + libavcodec/packet.h | 6 ++ libavcodec/version.h | 2 +- libavformat/dump.c| 21 + 6 files changed, 33 insertions(+), 1 del

Re: [FFmpeg-devel] [PATCH 2/4] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread lance . lmwang
On Mon, Jun 29, 2020 at 03:52:00PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > On Mon, Jun 29, 2020 at 02:06:49PM +0200, Andreas Rheinhardt wrote: > >> lance.lmw...@gmail.com: > >>> On Mon, Jun 29, 2020 at 04:53:21AM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com:

[FFmpeg-devel] [PATCH V2 03/12] dnn_backend_native_layer_mathunary: add cosh support

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4 libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 + tools/python/convert_from_tensorflow.py | 2 +- tools/python/convert_header.py | 2 +- 4 files changed, 7 insert

[FFmpeg-devel] [PATCH V2 02/12] dnn-layer-math-unary-test: add unit test for sinh

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index bf77c44bbe..a1ff05e5fb 100644 --- a/tests/dnn/dnn-layer-mathunary-test.c +++ b/tests/dnn/dnn-l

[FFmpeg-devel] [PATCH V2 01/12] dnn_backend_native_layer_mathunary: add sinh support

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- V2: Add more test number Fix incorrect atanh unit test libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4 libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 + tools/python/convert_from_tensorflow.py | 2 +- tools/python/convert_h

[FFmpeg-devel] [PATCH V2 04/12] dnn-layer-math-unary-test: add unit test for cosh

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index a1ff05e5fb..0280debc0b 100644 --- a/tests/dnn/dnn-layer-mathunary-test.c +++ b/tests/dnn/dnn-l

[FFmpeg-devel] [PATCH V2 05/12] dnn_backend_native_layer_mathunary: add tanh support

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4 libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 + tools/python/convert_from_tensorflow.py | 2 +- tools/python/convert_header.py | 2 +- 4 files changed, 7 insert

[FFmpeg-devel] [PATCH V2 10/12] dnn-layer-math-unary-test: add unit test for acosh

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index 90fce71a0c..5587e47ad5 100644 --- a/tests/dnn/dnn-layer-mathunary-test.c +++ b/tests/dnn/dnn-l

[FFmpeg-devel] [PATCH V2 09/12] dnn_backend_native_layer_mathunary: add acosh support

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4 libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 + tools/python/convert_from_tensorflow.py | 2 +- tools/python/convert_header.py | 2 +- 4 files changed, 7 insert

[FFmpeg-devel] [PATCH V2 06/12] dnn-layer-math-unary-test: add unit test for tanh

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index 0280debc0b..6885b4d318 100644 --- a/tests/dnn/dnn-layer-mathunary-test.c +++ b/tests/dnn/dnn-l

[FFmpeg-devel] [PATCH V2 11/12] dnn_backend_native_layer_mathunary: add atanh support

2020-06-29 Thread Ting Fu
It can be tested with the model generated with below python script: import tensorflow as tf import numpy as np import imageio in_img = imageio.imread('input.jpeg') in_img = in_img.astype(np.float32)/255.0 in_data = in_img[np.newaxis, :] x = tf.placeholder(tf.float32, shape=[1, None, None, 3], na

[FFmpeg-devel] [PATCH V2 07/12] dnn_backend_native_layer_mathunary: add asinh support

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- libavfilter/dnn/dnn_backend_native_layer_mathunary.c | 4 libavfilter/dnn/dnn_backend_native_layer_mathunary.h | 1 + tools/python/convert_from_tensorflow.py | 2 +- tools/python/convert_header.py | 2 +- 4 files changed, 7 insert

[FFmpeg-devel] [PATCH V2 08/12] dnn-layer-math-unary-test: add unit test for asinh

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index 6885b4d318..90fce71a0c 100644 --- a/tests/dnn/dnn-layer-mathunary-test.c +++ b/tests/dnn/dnn-l

[FFmpeg-devel] [PATCH V2 12/12] dnn-layer-math-unary-test: add unit test for atanh

2020-06-29 Thread Ting Fu
Signed-off-by: Ting Fu --- tests/dnn/dnn-layer-mathunary-test.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/dnn/dnn-layer-mathunary-test.c b/tests/dnn/dnn-layer-mathunary-test.c index 5587e47ad5..683e623d95 100644 --- a/tests/dnn/dnn-layer-mathunary-test.

[FFmpeg-devel] [PATCH 2/2] avcodec/nvenc_hevc: add a53cc option for nvenc hevc

2020-06-29 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/nvenc_hevc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c index 45dda3d..6153f9a 100644 --- a/libavcodec/nvenc_hevc.c +++ b/libavcodec/nvenc_hevc.c @@ -132,6 +132,8 @@ static con

[FFmpeg-devel] [PATCH 1/2] avformat/dump: add a \n for end of ERROR log

2020-06-29 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavformat/dump.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavformat/dump.c b/libavformat/dump.c index 117c681..a1bf083 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -211,7 +211,7 @@ static v

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/nvenc_hevc: add a53cc option for nvenc hevc

2020-06-29 Thread Moritz Barsnick
On Mon, Jun 29, 2020 at 23:21:03 +0800, lance.lmw...@gmail.com wrote: > diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c > index 45dda3d..6153f9a 100644 > --- a/libavcodec/nvenc_hevc.c > +++ b/libavcodec/nvenc_hevc.c > @@ -132,6 +132,8 @@ static const AVOption options[] = { > { "

Re: [FFmpeg-devel] [PATCH v2] avfilter: add nonlinearstretch filter.

2020-06-29 Thread Mathias Rasmussen
How do I proceed? ___ 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".

Re: [FFmpeg-devel] [PATCH v3 1/2] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread Andreas Rheinhardt
lance.lmw...@gmail.com: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > doc/APIchanges| 3 +++ > libavcodec/avpacket.c | 1 + > libavcodec/decode.c | 1 + > libavcodec/packet.h | 6 ++ > libavcodec/version.h | 2 +- > libavformat/dump.c| 21 +++

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/nvenc_hevc: add a53cc option for nvenc hevc

2020-06-29 Thread lance . lmwang
On Mon, Jun 29, 2020 at 05:26:24PM +0200, Moritz Barsnick wrote: > On Mon, Jun 29, 2020 at 23:21:03 +0800, lance.lmw...@gmail.com wrote: > > diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c > > index 45dda3d..6153f9a 100644 > > --- a/libavcodec/nvenc_hevc.c > > +++ b/libavcodec/nvenc_

Re: [FFmpeg-devel] [PATCH v3 1/2] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread lance . lmwang
On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > doc/APIchanges| 3 +++ > > libavcodec/avpacket.c | 1 + > > libavcodec/decode.c | 1 + > > libavcodec/packet.h | 6 +++

[FFmpeg-devel] [PATCH 2/2] avcodec/nvenc_hevc: add a53cc option for hevc

2020-06-29 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/nvenc_hevc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c index 45dda3d..6153f9a 100644 --- a/libavcodec/nvenc_hevc.c +++ b/libavcodec/nvenc_hevc.c @@ -132,6 +132,8 @@ static con

Re: [FFmpeg-devel] [PATCH] avformat/smacker: Support seeking to first frame

2020-06-29 Thread Timotej Lazar
Andreas Rheinhardt [2020-06-28 15:32:05+0200]: > Moreover, I have a patchset for the Smacker demuxer [1] and you seem to > know a lot about Smacker, so you might take a look. Thanks for the feedback! I don’t really know much about Smacker beyond what I discovered while trying to get rewinding to

Re: [FFmpeg-devel] [PATCH 1/5] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-29 Thread Gautam Ramakrishnan
On Mon, Jun 29, 2020 at 12:26 AM Michael Niedermayer wrote: > > On Sat, Jun 27, 2020 at 09:14:26PM +0530, Gautam Ramakrishnan wrote: > > On Sat, Jun 27, 2020 at 7:36 PM Michael Niedermayer > > wrote: > > > > > > On Sat, Jun 27, 2020 at 04:49:49PM +0530, Gautam Ramakrishnan wrote: > > > > On Sat,

Re: [FFmpeg-devel] [PATCH v3 1/2] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread Andreas Rheinhardt
lance.lmw...@gmail.com: > On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote: >> lance.lmw...@gmail.com: >>> From: Limin Wang >>> >>> Signed-off-by: Limin Wang >>> --- >>> doc/APIchanges| 3 +++ >>> libavcodec/avpacket.c | 1 + >>> libavcodec/decode.c | 1 + >>> liba

Re: [FFmpeg-devel] [PATCH v2] fbdetile cpu based framebuffer layout detiling v02

2020-06-29 Thread Lynne
Jun 28, 2020, 22:40 by hanish...@gmail.com: > Hi Mark, > > hwdownload vs separate filter > > True, for kmsgrab use-case one could potentially do this transform as part > of the drm_transfer_data logic (which currently mmaps and does a linear > copy, if even I remember correctly). But like wh

[FFmpeg-devel] [PATCH] configure: remove libvmaf from EXTERNAL_LIBRARY_VERSION3_LIST

2020-06-29 Thread Kyle Swanson
since libvmaf v1.5.1, libvmaf has been relicensed as BSD+Patent Signed-off-by: Kyle Swanson --- configure | 1 - 1 file changed, 1 deletion(-) diff --git a/configure b/configure index 7495f35faa..e0b76ac1ea 100755 --- a/configure +++ b/configure @@ -1741,7 +1741,6 @@ EXTERNAL_LIBRARY_VERSION3_L

[FFmpeg-devel] [PATCH 3/3] avcodec/dvdsub_parser: Remove empty init function

2020-06-29 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavcodec/dvdsub_parser.c | 6 -- 1 file changed, 6 deletions(-) diff --git a/libavcodec/dvdsub_parser.c b/libavcodec/dvdsub_parser.c index 698ccb6987..054af69db9 100644 --- a/libavcodec/dvdsub_parser.c +++ b/libavcodec/dvdsub_parser.c @@ -32,11 +32,6 @

[FFmpeg-devel] [PATCH 2/3] avcodec/dvbsub_parser: Don't allocate buffer separately

2020-06-29 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavcodec/dvbsub_parser.c | 18 +- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/libavcodec/dvbsub_parser.c b/libavcodec/dvbsub_parser.c index 8ced3c4c34..b7a3d6154c 100644 --- a/libavcodec/dvbsub_parser.c +++ b/libavcodec/dvb

[FFmpeg-devel] [PATCH 1/3] fate: Update fate refs after cca982ee018aad54214e94f2a0a5921c8bbf1328

2020-06-29 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- I am not sure know whether cca982ee018aad54214e94f2a0a5921c8bbf1328 is correct or whether it should be reverted. tests/ref/fate/filter-colorbalance | 6 +++--- tests/ref/fate/filter-colorbalance-gbrap| 6 +++--- tests/ref/fate/filter-colorbalanc

Re: [FFmpeg-devel] [PATCH v2] fbdetile cpu based framebuffer layout detiling v02

2020-06-29 Thread C Hanish Menon
Hi Lynne, Thanks for your thoughts. My thoughts I have embedded below On Mon, Jun 29, 2020 at 6:32 PM Lynne wrote: > Jun 28, 2020, 22:40 by hanish...@gmail.com: > > > Hi Mark, > > > > hwdownload vs separate filter > > > > True, for kmsgrab use-case one could potentially do this transform a

Re: [FFmpeg-devel] [PATCH] configure: remove libvmaf from EXTERNAL_LIBRARY_VERSION3_LIST

2020-06-29 Thread Kyle Swanson
Hi, On Mon, Jun 29, 2020 at 10:05 AM Kyle Swanson wrote: > > since libvmaf v1.5.1, libvmaf has been relicensed as BSD+Patent > > Signed-off-by: Kyle Swanson > --- > configure | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/configure b/configure > index 7495f35faa..e0b76ac1ea 100755 > --

[FFmpeg-devel] [PATCH] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-29 Thread gautamramk
From: Gautam Ramakrishnan This patch removes a check which throws an error if the log2 precinct width/height is 0. The standard allows the first component to have 0 as the log2 width/height. However, to ensure proper intialization of coding style, an extra check has been added. --- libavcodec/jp

[FFmpeg-devel] [PATCH v3] fbdetile cpu based detiling of framebuffers v03

2020-06-29 Thread hanishkvc
v03-20200629IST2208 fbdetile Added a generic detiling logic, which can be easily configured to detile many different tiling schemes. The same is inturn used to detile Intel Tile-Yf layout. NOTE: This is a full patch, it contains the previous versions also in it. v02-20200627IST2331 Unrolled In

Re: [FFmpeg-devel] [PATCH 2/5] libavcodec/libaomenc: Add command-line options to control the use of partition tools.

2020-06-29 Thread James Zern
On Thu, Jun 25, 2020 at 6:02 PM Wang Cao wrote: > > This patch adds the control for enabling rectangular partitions, 1:4/4:1 > partitions and AB shape partitions. > > Signed-off-by: Wang Cao > --- > doc/encoders.texi | 10 ++ > libavcodec/libaomenc.c | 15 +++ > libavcod

Re: [FFmpeg-devel] [PATCH 3/5] libavcodec/libaomenc.c: Add command-line options for intra-coding tools

2020-06-29 Thread James Zern
On Thu, Jun 25, 2020 at 5:55 PM Wang Cao wrote: > > Signed-off-by: Wang Cao > --- > doc/encoders.texi | 21 +++ > libavcodec/libaomenc.c | 47 -- > libavcodec/version.h | 2 +- > 3 files changed, 63 insertions(+), 7 deletions(-) >

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/libaomenc.c: Add super-resolution options to libaom wrapper

2020-06-29 Thread James Zern
On Mon, Jun 29, 2020 at 11:05 AM James Zern wrote: > > On Thu, Jun 25, 2020 at 5:55 PM Wang Cao wrote: > > > > From: Wang Cao > > > > Signed-off-by: Wang Cao > > --- > > doc/encoders.texi | 39 +++ > > libavcodec/libaomenc.c | 38 +++

Re: [FFmpeg-devel] [PATCH v2] avcodec/mpeg12dec: Fix uninitialized data in fate-sub-cc-scte20

2020-06-29 Thread Martin Storsjö
On Sun, 28 Jun 2020, lance.lmw...@gmail.com wrote: From: Limin Wang The issue is introduced from a705bcd763e344fa, please tested with below command line: make V=1 fate-sub-cc-scte20 TARGET_EXEC="valgrind --error-exitcode=1" Reported-by: Martin Storsjö Signed-off-by: Limin Wang --- libavc

Re: [FFmpeg-devel] [PATCH 4/5] libavcodec/libaomenc.c: Add command-line options for tx tools.

2020-06-29 Thread James Zern
On Thu, Jun 25, 2020 at 5:56 PM Wang Cao wrote: > > Signed-off-by: Wang Cao > --- > doc/encoders.texi | 21 + > libavcodec/libaomenc.c | 31 +++ > libavcodec/version.h | 2 +- > 3 files changed, 53 insertions(+), 1 deletion(-) > > [...] > +

Re: [FFmpeg-devel] [PATCH 5/5] libavcodec/libaomenc.c: Add command-line options for inter-coding tools

2020-06-29 Thread James Zern
On Thu, Jun 25, 2020 at 5:56 PM Wang Cao wrote: > > Signed-off-by: Wang Cao > --- > doc/encoders.texi | 36 + > libavcodec/libaomenc.c | 61 ++ > libavcodec/version.h | 2 +- > 3 files changed, 98 insertions(+), 1 deletion(-

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/libaomenc.c: Add super-resolution options to libaom wrapper

2020-06-29 Thread James Zern
On Thu, Jun 25, 2020 at 5:55 PM Wang Cao wrote: > > From: Wang Cao > > Signed-off-by: Wang Cao > --- > doc/encoders.texi | 39 +++ > libavcodec/libaomenc.c | 38 ++ > libavcodec/version.h | 2 +- > 3 files changed,

[FFmpeg-devel] [PATCH v4 2/2] libavformat/img2dec: Added pgx demuxer

2020-06-29 Thread gautamramk
From: Gautam Ramakrishnan This patch adds support to demux pgx file format. --- libavformat/allformats.c | 1 + libavformat/img2dec.c| 9 + libavformat/version.h| 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/libavformat/allformats.c b/libavformat/allformat

Re: [FFmpeg-devel] [PATCH v4 2/2] libavformat/img2dec: Added pgx demuxer

2020-06-29 Thread Nicolas George
gautamr...@gmail.com (12020-06-30): > From: Gautam Ramakrishnan > > This patch adds support to demux pgx file > format. > --- > libavformat/allformats.c | 1 + > libavformat/img2dec.c| 9 + > libavformat/version.h| 2 +- > 3 files changed, 11 insertions(+), 1 deletion(-) > > dif

Re: [FFmpeg-devel] [PATCH v4 2/2] libavformat/img2dec: Added pgx demuxer

2020-06-29 Thread Gautam Ramakrishnan
On Tue, Jun 30, 2020 at 12:28 AM Nicolas George wrote: > > gautamr...@gmail.com (12020-06-30): > > From: Gautam Ramakrishnan > > > > This patch adds support to demux pgx file > > format. > > --- > > libavformat/allformats.c | 1 + > > libavformat/img2dec.c| 9 + > > libavformat/versi

[FFmpeg-devel] [PATCH] avformat/hls: Pass a copy of the URL for probing

2020-06-29 Thread Michael Niedermayer
The segments / url can be modified by the io read when reloading This may be an alternative or additional fix for Ticket8673 as a further alternative the reload stuff could be disabled during probing Signed-off-by: Michael Niedermayer --- libavformat/hls.c | 6 -- 1 file changed, 4 insertio

Re: [FFmpeg-devel] [PATCH] avformat/hls: Pass a copy of the URL for probing

2020-06-29 Thread Andreas Rheinhardt
Michael Niedermayer: > The segments / url can be modified by the io read when reloading > > This may be an alternative or additional fix for Ticket8673 > as a further alternative the reload stuff could be disabled during > probing > > Signed-off-by: Michael Niedermayer > --- > libavformat/hls.c

Re: [FFmpeg-devel] [PATCH] configure: remove libvmaf from EXTERNAL_LIBRARY_VERSION3_LIST

2020-06-29 Thread Derek Buitenhuis
On 29/06/2020 18:04, Kyle Swanson wrote: > since libvmaf v1.5.1, libvmaf has been relicensed as BSD+Patent > > Signed-off-by: Kyle Swanson > --- > configure | 1 - > 1 file changed, 1 deletion(-) You'll need to update the pkg-config check too if you want to to this, since it's at >= 1.3.9 right

[FFmpeg-devel] [PATCH v5] libavformat/img2dec: Added pgx demuxer

2020-06-29 Thread gautamramk
From: Gautam Ramakrishnan This patch adds support to demux pgx file format. --- libavformat/allformats.c | 1 + libavformat/img2dec.c| 9 + libavformat/version.h| 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/libavformat/allformats.c b/libavformat/allformat

Re: [FFmpeg-devel] [PATCH] avformat/hls: Pass a copy of the URL for probing

2020-06-29 Thread Michael Niedermayer
On Mon, Jun 29, 2020 at 09:08:07PM +0200, Andreas Rheinhardt wrote: > Michael Niedermayer: > > The segments / url can be modified by the io read when reloading > > > > This may be an alternative or additional fix for Ticket8673 > > as a further alternative the reload stuff could be disabled during

[FFmpeg-devel] [PATCH v4 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread gautamramk
From: Gautam Ramakrishnan This patch adds a pgx decoder. --- Changelog | 1 + doc/general.texi| 2 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/codec_desc.c | 7 ++ libavcodec/codec_id.h | 1 + libavcodec/pgxdec.c | 199 ++

Re: [FFmpeg-devel] [PATCH 1/3] fate: Update fate refs after cca982ee018aad54214e94f2a0a5921c8bbf1328

2020-06-29 Thread Andreas Rheinhardt
Andreas Rheinhardt: > Signed-off-by: Andreas Rheinhardt > --- > I am not sure know whether cca982ee018aad54214e94f2a0a5921c8bbf1328 is > correct or whether it should be reverted. > > tests/ref/fate/filter-colorbalance | 6 +++--- > tests/ref/fate/filter-colorbalance-gbrap| 6 +++---

Re: [FFmpeg-devel] [PATCH] avformat/mov: fix memleak

2020-06-29 Thread Andreas Rheinhardt
Dave Rice: > Hi Andreas, > >> On Jun 27, 2020, at 5:09 PM, Andreas Rheinhardt >> wrote: >> >> Zhao Zhili: >>> Remove the check on dv_demux since dv_fctx will leak if allocate >>> dv_demux failed. >>> --- >>> libavformat/mov.c | 7 +++ >>> 1 file changed, 3 insertions(+), 4 deletions(-) >>> >>

Re: [FFmpeg-devel] [PATCH] avformat/mov: fix memleak

2020-06-29 Thread Andreas Rheinhardt
Zhao Zhili: > Remove the check on dv_demux since dv_fctx will leak if allocate > dv_demux failed. > --- > libavformat/mov.c | 7 +++ > 1 file changed, 3 insertions(+), 4 deletions(-) > > diff --git a/libavformat/mov.c b/libavformat/mov.c > index adc52de947..f179b6efdd 100644 > --- a/libavform

Re: [FFmpeg-devel] [PATCH] configure: remove libvmaf from EXTERNAL_LIBRARY_VERSION3_LIST

2020-06-29 Thread Kyle Swanson
On Mon, Jun 29, 2020 at 12:14 PM Derek Buitenhuis wrote: > You'll need to update the pkg-config check too if you want to > to this, since it's at >= 1.3.9 right now. > > - Derek Thanks. Updated patch attached. 0001-configure-remove-libvmaf-from-EXTERNAL_LIBRARY_VERSI.patch Description: Binary d

Re: [FFmpeg-devel] [PATCH] configure: remove libvmaf from EXTERNAL_LIBRARY_VERSION3_LIST

2020-06-29 Thread Carl Eugen Hoyos
Am Mo., 29. Juni 2020 um 23:21 Uhr schrieb Kyle Swanson : > > On Mon, Jun 29, 2020 at 12:14 PM Derek Buitenhuis > wrote: > > You'll need to update the pkg-config check too if you want to > > to this, since it's at >= 1.3.9 right now. > > > > - Derek > > Thanks. Updated patch attached. No objectio

[FFmpeg-devel] [PATCH v2] libavformat/mov: Fix memleaks when demuxing DV audio

2020-06-29 Thread Andreas Rheinhardt
The code for demuxing DV audio predates the introduction of refcounted packets and when the latter was added, changes to the former were forgotten. This meant that when avpriv_dv_produce_packet initialized the packet containing the AVBufferRef, the AVBufferRef as well as the underlying AVBuffer lea

Re: [FFmpeg-devel] [PATCH v3 1/2] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread lance . lmwang
On Mon, Jun 29, 2020 at 06:18:23PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote: > >> lance.lmw...@gmail.com: > >>> From: Limin Wang > >>> > >>> Signed-off-by: Limin Wang > >>> --- > >>> doc/APIchanges|

Re: [FFmpeg-devel] [PATCH v2] avcodec/mpeg12dec: Fix uninitialized data in fate-sub-cc-scte20

2020-06-29 Thread lance . lmwang
On Mon, Jun 29, 2020 at 09:19:56PM +0300, Martin Storsjö wrote: > On Sun, 28 Jun 2020, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > The issue is introduced from a705bcd763e344fa, please tested with below > > command line: > > make V=1 fate-sub-cc-scte20 TARGET_EXEC="valgrind --e

Re: [FFmpeg-devel] [PATCH v3 1/2] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread Andreas Rheinhardt
lance.lmw...@gmail.com: > On Mon, Jun 29, 2020 at 06:18:23PM +0200, Andreas Rheinhardt wrote: >> lance.lmw...@gmail.com: >>> On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote: lance.lmw...@gmail.com: > From: Limin Wang > > Signed-off-by: Limin Wang > ---

Re: [FFmpeg-devel] [PATCH v4 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Michael Niedermayer
On Tue, Jun 30, 2020 at 12:26:17AM +0530, gautamr...@gmail.com wrote: > From: Gautam Ramakrishnan > > This patch adds a pgx decoder. > --- > Changelog | 1 + > doc/general.texi| 2 + > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c | 1 + > libavcodec/code

[FFmpeg-devel] [PATCH v1] avfilter/tonemap_vaapi: set va parameters filters and numbers

2020-06-29 Thread Fei Wang
This can fill VAProcPipelineParameterBuffer correctly and make the pipeline works. Signed-off-by: Fei Wang --- libavfilter/vf_tonemap_vaapi.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavfilter/vf_tonemap_vaapi.c b/libavfilter/vf_tonemap_vaapi.c index 2f41b90424..9f52590a49 1006

Re: [FFmpeg-devel] [PATCH v3 1/2] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread lance . lmwang
On Tue, Jun 30, 2020 at 01:54:06AM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > On Mon, Jun 29, 2020 at 06:18:23PM +0200, Andreas Rheinhardt wrote: > >> lance.lmw...@gmail.com: > >>> On Mon, Jun 29, 2020 at 05:35:58PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com:

[FFmpeg-devel] [PATCH v3] avcodec/libaomenc.c: Add super-resolution options to libaom wrapper

2020-06-29 Thread Wang Cao
From: Wang Cao Signed-off-by: Wang Cao --- Check libaom ABI version to use SUPERRES enum in aom_encoder.h doc/encoders.texi | 36 + libavcodec/libaomenc.c | 46 ++ libavcodec/version.h | 2 +- 3 files changed, 83 in

Re: [FFmpeg-devel] [PATCH v4 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Gautam Ramakrishnan
On Tue, Jun 30, 2020 at 5:49 AM Michael Niedermayer wrote: > > On Tue, Jun 30, 2020 at 12:26:17AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds a pgx decoder. > > --- > > Changelog | 1 + > > doc/general.texi| 2 + > > libavcod

[FFmpeg-devel] [PATCH] libavformat/dashenc.c:kill latency when ldash on

2020-06-29 Thread Siyuan Huang
From: Siyuan Huang disable write tmp file to let it using chunk downloading at last segment Signed-off-by: Siyuan Huang --- libavformat/dashenc.c | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 libavformat/dashenc.c diff --git a/libavformat/dashenc.c b/libavfor

[FFmpeg-devel] [PATCH] libavformat/dashenc.c:support mpd update period

2020-06-29 Thread Siyuan Huang
From: Siyuan Huang according iso 23009-1 , in live cases , mpd refresh period should be changeable Signed-off-by: Siyuan Huang --- doc/muxers.texi | 4 libavformat/dashenc.c | 4 2 files changed, 8 insertions(+) mode change 100644 => 100755 doc/muxers.texi diff --g

[FFmpeg-devel] [PATCH v1] avfilter: add overlay vaapi filter

2020-06-29 Thread Fei Wang
From: Xinpeng Sun Overlay one video on the top of another. It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid. This filter requires same memory layout for all the inputs. An example command to use this filter to overlay an image LOG

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:kill latency when ldash on

2020-06-29 Thread Siyuan Huang
Add patch file, From: Siyuan Huang Sent: 2020年6月30日 11:12 To: 'ffmpeg-devel@ffmpeg.org' Subject: [PATCH] libavformat/dashenc.c:kill latency when ldash on From: Siyuan Huang mailto:saber.hu...@samsung.com> > disable write tmp file to let it using chunk downloading at last segment

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:support mpd update period

2020-06-29 Thread Siyuan Huang
Add patch file From: Siyuan Huang Sent: 2020年6月30日 11:34 To: 'ffmpeg-devel@ffmpeg.org' Subject: [PATCH] libavformat/dashenc.c:support mpd update period From: Siyuan Huang mailto:saber.hu...@samsung.com> > according iso 23009-1 , in live cases , mpd refresh period should be changeab

[FFmpeg-devel] [PATCH v4 1/2] avutil/timecode: add description for SMPTE binary format

2020-06-29 Thread lance . lmwang
From: Limin Wang AV_FRAME_DATA_S12M_TIMECODE is public API, so user need to know its format by the API header instead of reading the code. Signed-off-by: Limin Wang --- libavutil/frame.h| 4 ++-- libavutil/timecode.h | 16 +++- 2 files changed, 17 insertions(+), 3 deletions(-)

[FFmpeg-devel] [PATCH v4 2/2] API: add AV_PKT_DATA_S12M_TIMECODE to AVPacketSideDataType

2020-06-29 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/APIchanges| 3 +++ libavcodec/avpacket.c | 1 + libavcodec/decode.c | 1 + libavcodec/packet.h | 8 libavcodec/version.h | 2 +- libavformat/dump.c| 21 + 6 files changed, 35 insertions(+), 1 d

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:kill latency when ldash on

2020-06-29 Thread myp...@gmail.com
On Tue, Jun 30, 2020 at 11:12 AM Siyuan Huang wrote: > > From: Siyuan Huang > > > > disable write tmp file to let it using chunk downloading at last segment > > > > Signed-off-by: Siyuan Huang > > --- > > libavformat/dashenc.c | 2 ++ > > 1 file changed, 2 insertions(+) > > mode change 100644 =>

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:kill latency when ldash on

2020-06-29 Thread Siyuan Huang
Update with no file mode changes : From 6d08df73f9cb8cc8d8dfa3b974232f0c0a2b11f8 Mon Sep 17 00:00:00 2001 From: Siyuan Huang Date: Tue, 30 Jun 2020 13:34:47 +0800 Subject: [PATCH] libavformat/dashenc.c:support mpd update period according iso 23009-1 , in live cases , mpd refresh period should

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:support mpd update period

2020-06-29 Thread Siyuan Huang
Update with no file mode changes : From 818095d4f0aa50dfee3cb0622146a2180801c5fe Mon Sep 17 00:00:00 2001 From: Siyuan Huang Date: Tue, 30 Jun 2020 13:41:46 +0800 Subject: [PATCH] libavformat/dashenc.c:support mpd update period v3 according iso 23009-1 , in live cases , mpd refresh per

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:kill latency when ldash on

2020-06-29 Thread Siyuan Huang
Soory for wrong commit messge Update to no file mode modify at version2 From efd83d91a9bd9a485bcda6799f5f681c203a7449 Mon Sep 17 00:00:00 2001 From: Siyuan Huang Date: Tue, 30 Jun 2020 13:44:01 +0800 Subject: [PATCH] libavformat/dashenc.c:kill latency when ldash on v2 disable write tmp file t

Re: [FFmpeg-devel] [PATCH] lavfi/vf_vpp_qsv: fix the infinite loop while framerate lower than input

2020-06-29 Thread Fu, Linjie
> From: Zhong Li > Sent: Sunday, April 19, 2020 23:00 > To: Fu, Linjie > Cc: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH] lavfi/vf_vpp_qsv: fix the infinite loop > while framerate lower than input > > Fu, Linjie 于2020年2月29日周六 下午5:35写道: > >

Re: [FFmpeg-devel] [PATCH] lavc/qsvenc_hevc: add qmax/qmin support for HEVC encoding

2020-06-29 Thread Fu, Linjie
> From: Zhong Li > Sent: Thursday, March 12, 2020 10:07 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Cc: Rogozhkin, Dmitry V ; Fu, Linjie > > Subject: Re: [FFmpeg-devel] [PATCH] lavc/qsvenc_hevc: add qmax/qmin > support for HEVC encoding > > Linjie Fu 于2020年3月11日周三 下午6: