Re: [FFmpeg-devel] [PATCH 4/5] lavc/qsvenc: add an option to set h264 pps for every frame

2018-10-31 Thread Li, Zhong
> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Mark Thompson > Sent: Thursday, November 1, 2018 6:30 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 4/5] lavc/qsvenc: add an option to set > h264 pps for every frame > > On 31/10/18 11:00, Li, Zhon

[FFmpeg-devel] --extra-ldexeflags don't take precedence

2018-10-31 Thread Roger Pack
As a note, configuring with ... --extra-ldexeflags=-Wl,--image-base,0x1000 ... results in a link time command of /Users/rdp/dev/ffmpeg-windows-build-helpers/sandbox/cross_compilers/mingw-w64-x86_64/bin/x86_64-w64-mingw32-gcc -Wl,--nxcompat,--dynamicbase -Wl,--high-entropy-va -Wl,--as-needed

[FFmpeg-devel] [PATCH] lavc/libdavs2: use assert instead of wrong return value

2018-10-31 Thread hwren
Signed-off-by: hwren --- libavcodec/libdavs2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index 4dbce73..acdfaca 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -93,7 +93,7 @@ static int davs2_dump_frames(AVC

[FFmpeg-devel] [PATCH v3 3/3] lavc/libdavs2: correct frame type setting

2018-10-31 Thread hwren
Signed-off-by: hwren --- libavcodec/libdavs2.c | 21 - 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index a1815d2..4dbce73 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -76,6 +76,26 @@ static in

[FFmpeg-devel] [PATCH v3 1/3] lavc/libdavs2: fix sequence incomplete output error

2018-10-31 Thread hwren
Signed-off-by: hwren --- libavcodec/libdavs2.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index cadf995..e463b2e 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -129,7 +129,16 @@ static int davs2_

[FFmpeg-devel] [PATCH v3 2/3] lavc/libdavs2: remove unused frame counter

2018-10-31 Thread hwren
Signed-off-by: hwren --- libavcodec/libdavs2.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index e463b2e..a1815d2 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -32,8 +32,6 @@ typedef struct DAVS2Context { davs2_param

Re: [FFmpeg-devel] [PATCH v2 3/3] lavc/libdavs2: correct frame type setting

2018-10-31 Thread Huiwen Ren
At 2018-11-01 08:40:50, "Carl Eugen Hoyos" wrote: >2018-10-31 23:15 GMT+01:00, Mark Thompson : >> On 31/10/18 10:23, hwren wrote: > >>> +switch (pic->type) { >>> +case DAVS2_PIC_I: >>> +frame->pict_type = AV_PICTURE_TYPE_I; >>> +break; >>> +case

[FFmpeg-devel] [PATCH] avcodec/qsvenc: add VDENC support for H264 and HEVC

2018-10-31 Thread Linjie Fu
Add VDENC(lowpower mode) support for QSV h264 and HEVC with the limitation of MSDK API verion greater than 1.15. It's an experimental function(like lowpower in vaapi) with some limitations: - CBR/VBR require HuC which should be explicitly loaded via i915 module parameter(i915.enable_guc=2 for >=4.

Re: [FFmpeg-devel] [PATCH v2 3/3] lavc/libdavs2: correct frame type setting

2018-10-31 Thread Carl Eugen Hoyos
2018-10-31 23:15 GMT+01:00, Mark Thompson : > On 31/10/18 10:23, hwren wrote: >> +switch (pic->type) { >> +case DAVS2_PIC_I: >> +frame->pict_type = AV_PICTURE_TYPE_I; >> +break; >> +case DAVS2_PIC_P: >> +frame->pict_type = AV_PICTURE_TYPE_P;

Re: [FFmpeg-devel] [PATCH V2] libavfilter/vaapi: enable vaapi rotation feature via call Intel iHD driver

2018-10-31 Thread Mark Thompson
On 29/10/18 01:58, myp...@gmail.com wrote: >> ... lots of other stuff ... > I know Mark have given a openCL rotation filter implement with any > angle support, so I didn't submitted the patch even I have implement > the VA-API rotation filter in last year. I never wrote a standalone filter for it,

Re: [FFmpeg-devel] [PATCH V3] libavfilter/vaapi: enable vaapi rotation feature via call Intel iHD driver

2018-10-31 Thread Mark Thompson
On 31/10/18 02:43, Zachary Zhou wrote: > libavfilter/vaapi: enable vaapi rotation feature via call Intel iHD driver I'd make the title something like "libavfilter: add rotate_vaapi filter". There is no reason to mention a particular implementation - anyone can implement this API. > It supports

Re: [FFmpeg-devel] [PATCH V3] libavfilter/vaapi: enable vaapi rotation feature via call Intel iHD driver

2018-10-31 Thread Mark Thompson
On 31/10/18 02:43, Zachary Zhou wrote: > libavfilter/vaapi: enable vaapi rotation feature via call Intel iHD driver I'd make the title something like "libavfilter: add rotate_vaapi filter". There is no reason to mention a particular implementation - anyone can implement this API. > It supports

Re: [FFmpeg-devel] [PATCH 1/2] lavc/amfenc: moving amf common code (library and context) to lavu/hwcontext_amf from amfenc to be reused in other amf components

2018-10-31 Thread Mark Thompson
On 29/10/18 22:16, Alexander Kravchenko wrote: > Hi Mark, > see my comments bellow. > > вт, 30 окт. 2018 г. в 0:23, Mark Thompson : > >> On 29/10/18 11:45, Alexander Kravchenko wrote: >>> Hi, Mark. >>> Thanks for review. >>> Could you please check the following comments/questions? >>> +

Re: [FFmpeg-devel] [PATCH 1/2] vaapi_encode_h264: Reduce SAR to valid range

2018-10-31 Thread Mark Thompson
On 28/10/18 17:13, Mark Thompson wrote: > The SAR of the input could have a numerator or denominator greater than > 2^16 which would then be truncated to a 16-bit integer when written to > the VUI parameters, giving a random result. Instead, reduce the SAR to > the nearest representable fraction.

Re: [FFmpeg-devel] [PATCH 1/5] lavc/qsvenc: add forced_idr opiton

2018-10-31 Thread Mark Thompson
On 31/10/18 11:29, Li, Zhong wrote: >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf >> Of Mark Thompson >> Sent: Wednesday, October 31, 2018 7:40 AM >> To: ffmpeg-devel@ffmpeg.org >> Subject: Re: [FFmpeg-devel] [PATCH 1/5] lavc/qsvenc: add forced_idr opiton >> >> On 30/10/1

Re: [FFmpeg-devel] [PATCH 4/5] lavc/qsvenc: add an option to set h264 pps for every frame

2018-10-31 Thread Mark Thompson
On 31/10/18 11:00, Li, Zhong wrote: >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf >> Of Mark Thompson >> Sent: Wednesday, October 31, 2018 8:15 AM >> To: ffmpeg-devel@ffmpeg.org >> Subject: Re: [FFmpeg-devel] [PATCH 4/5] lavc/qsvenc: add an option to set >> h264 pps for e

Re: [FFmpeg-devel] [PATCH v2 3/3] lavc/libdavs2: correct frame type setting

2018-10-31 Thread Mark Thompson
On 31/10/18 10:23, hwren wrote: > Signed-off-by: hwren > --- > libavcodec/libdavs2.c | 17 - > 1 file changed, 16 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c > index a1815d2..d7bcaa3 100644 > --- a/libavcodec/libdavs2.c > +++ b/liba

Re: [FFmpeg-devel] [PATCH] avcodec/libopenh264enc.c: Handle sample_aspect_ratio in libopenh264 encoder

2018-10-31 Thread Mark Thompson
On 12/10/18 08:14, Valery Kot wrote: > When using libx264 (GPL) encoder, sample aspect ratio gets stored on > both container and frame levels. For libopenh264 (LGPL) encoder, > aspect ratio on codec/frame level currently is ignored, which results > in weird display aspect ratio for non-square pixel

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/prosumer: Check for bytestream eof in decompress()

2018-10-31 Thread Michael Niedermayer
On Wed, Oct 31, 2018 at 09:59:04AM -0300, James Almer wrote: > On 10/31/2018 9:18 AM, Michael Niedermayer wrote: > > On Wed, Oct 31, 2018 at 12:06:28PM +0100, Hendrik Leppkes wrote: > >> On Wed, Oct 31, 2018 at 12:03 PM Michael Niedermayer > >> wrote: > >>> > >>> Fixes: Infinite loop > >>> Fixes:

Re: [FFmpeg-devel] [PATCH] Revert "lavc/v4l2_m2m_enc: Add missing braces around initializers."

2018-10-31 Thread Mark Thompson
On 31/10/18 00:07, Ronak Patel wrote: > >> On Oct 27, 2018, at 5:25 PM, Carl Eugen Hoyos wrote: >> >> 2018-10-27 20:50 GMT+02:00, Mark Thompson : >>> This reverts commit 6dbb64fdccafe846aaec75d3784f7ad49d8af5df. >>> >>> The additional braces cause build errors with Linux headers earlier >>> than

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/cbs_vp9: discard empty fragments

2018-10-31 Thread Mark Thompson
On 30/10/18 23:45, James Almer wrote: > On 10/30/2018 8:19 PM, Mark Thompson wrote: >> On 30/10/18 19:21, James Almer wrote: >>> Signed-off-by: James Almer >>> --- >>> libavcodec/cbs_vp9.c | 3 +++ >>> 1 file changed, 3 insertions(+) >>> >>> diff --git a/libavcodec/cbs_vp9.c b/libavcodec/cbs_vp9.

Re: [FFmpeg-devel] [PATCH 2/4] cbs_h265: Add PTL parsing for Main 10 Still Picture profile

2018-10-31 Thread Mark Thompson
On 30/10/18 19:51, James Almer wrote: > On 10/27/2018 6:39 PM, Mark Thompson wrote: >> This was added in the 2018 version of the standard. >> --- >> libavcodec/cbs_h265_syntax_template.c | 5 + >> 1 file changed, 5 insertions(+) >> >> diff --git a/libavcodec/cbs_h265_syntax_template.c >> b/li

Re: [FFmpeg-devel] [PATCH 2/2] libx264: Pass the reordered_opaque field through the encoder

2018-10-31 Thread Martin Storsjö
On Wed, 31 Oct 2018, Derek Buitenhuis wrote: On 30/10/2018 19:49, Martin Storsjö wrote: Hmm, that might make sense, but with a little twist. The max reordered frames for H.264 is known, but onto that you also get more delay due to frame threads and other details that this function within x264 k

Re: [FFmpeg-devel] [PATCH v2] web/documentation: add new book about FFmpeg in China

2018-10-31 Thread Lou Logan
On Wed, Oct 17, 2018, at 3:40 PM, Steven Liu wrote: > Signed-off-by: Steven Liu > --- > src/documentation | 2 ++ > 1 file changed, 2 insertions(+) Pushed. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-

Re: [FFmpeg-devel] [PATCH] avcodec/libopenh264enc.c: Handle sample_aspect_ratio in libopenh264 encoder

2018-10-31 Thread Valery Kot
> > Apparently there are no acrive maintainers and no devs (other than me) > > using libopenh264. What can be done to have this patch accepted? > > One possibility is that you send a patch that adds yourself > as maintainer. > > Carl Eugen Patch for MAINTAINERS list submitted, as you suggested. __

[FFmpeg-devel] [PATCH 1/2] avcodec/tiff: add initial bayer support

2018-10-31 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/tiff.c | 58 +++ libavcodec/tiff.h | 1 + 2 files changed, 49 insertions(+), 10 deletions(-) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index b537ec06a5..d42550b4cf 100644 --- a/libavcodec/tiff.c +++

[FFmpeg-devel] [PATCH] avcodec/tiff: add support for sub images

2018-10-31 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- For ticket #4364. Colors looks wrong with 8bit sample mentioned in trac ticket. Too greenish, missing yellow. Why? --- libavcodec/tiff.c | 46 +- libavcodec/tiff.h | 2 ++ 2 files changed, 47 insertions(+), 1 deletion(-)

[FFmpeg-devel] [PATCH] Adding Valery Kot as a maintainer for libopenh264*

2018-10-31 Thread Valery Kot
On advise of Carl Eugen, I am asking to add me as a maintainer for libopenh264 codec. Apparently nobody else is maintainig it, and I am actively using and patching it. From d5d6b09d5adf3025614f69c3be4e108c9a42d387 Mon Sep 17 00:00:00 2001 From: vkot Date: Wed, 31 Oct 2018 15:06:14 +0100 Subject: [

Re: [FFmpeg-devel] [PATCH 2/2] libx264: Pass the reordered_opaque field through the encoder

2018-10-31 Thread Derek Buitenhuis
On 30/10/2018 19:49, Martin Storsjö wrote: > Hmm, that might make sense, but with a little twist. The max reordered > frames for H.264 is known, but onto that you also get more delay due to > frame threads and other details that this function within x264 knows > about. So that would make it [H264 m

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/prosumer: Check for bytestream eof in decompress()

2018-10-31 Thread James Almer
On 10/31/2018 9:18 AM, Michael Niedermayer wrote: > On Wed, Oct 31, 2018 at 12:06:28PM +0100, Hendrik Leppkes wrote: >> On Wed, Oct 31, 2018 at 12:03 PM Michael Niedermayer >> wrote: >>> >>> Fixes: Infinite loop >>> Fixes: >>> 10685/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PROSUMER_fuzze

Re: [FFmpeg-devel] [PATCH v2 3/3] lavc/libdavs2: correct frame type setting

2018-10-31 Thread Carl Eugen Hoyos
2018-10-31 11:23 GMT+01:00, hwren : > Signed-off-by: hwren > --- > libavcodec/libdavs2.c | 17 - > 1 file changed, 16 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c > index a1815d2..d7bcaa3 100644 > --- a/libavcodec/libdavs2.c > +++ b/l

Re: [FFmpeg-devel] [PATCH] doc/fate.texi: Mention that samples should be uploaded before pushing dependant commits

2018-10-31 Thread Michael Niedermayer
On Wed, Oct 31, 2018 at 03:52:34PM +0530, Gyan wrote: > On Wed, Oct 31, 2018 at 6:11 AM Michael Niedermayer > wrote: > > > On Wed, Oct 24, 2018 at 10:34:39AM +0530, Gyan wrote: > > > On Wed, Oct 24, 2018 at 3:09 AM Michael Niedermayer > > > > > wrote: > > > > > > > > > > +Also all needed sampl

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/prosumer: Check for bytestream eof in decompress()

2018-10-31 Thread Michael Niedermayer
On Wed, Oct 31, 2018 at 12:06:28PM +0100, Hendrik Leppkes wrote: > On Wed, Oct 31, 2018 at 12:03 PM Michael Niedermayer > wrote: > > > > Fixes: Infinite loop > > Fixes: > > 10685/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PROSUMER_fuzzer-5652236881887232 > > > > Found-by: continuous fuzzin

Re: [FFmpeg-devel] [PATCH] avcodec/libopenh264enc.c: Handle sample_aspect_ratio in libopenh264 encoder

2018-10-31 Thread Carl Eugen Hoyos
2018-10-31 9:12 GMT+01:00, Valery Kot : > Yet another ping... > Apparently there are no acrive maintainers and no devs (other than me) > using libopenh264. What can be done to have this patch accepted? One possibility is that you send a patch that adds yourself as maintainer. Carl Eugen _

Re: [FFmpeg-devel] [PATCH] Revert "lavc/v4l2_m2m_enc: Add missing braces around initializers."

2018-10-31 Thread Carl Eugen Hoyos
2018-10-31 1:07 GMT+01:00, Ronak Patel : > >> On Oct 27, 2018, at 5:25 PM, Carl Eugen Hoyos wrote: >> >> 2018-10-27 20:50 GMT+02:00, Mark Thompson : >>> This reverts commit 6dbb64fdccafe846aaec75d3784f7ad49d8af5df. >>> >>> The additional braces cause build errors with Linux headers earlier >>> tha

Re: [FFmpeg-devel] [PATCH v3] fate/api-h264-slice-test: use cleaner error handling

2018-10-31 Thread Carl Eugen Hoyos
2018-10-30 15:38 GMT+01:00, jos...@ob-encoder.com : > while(1) { > uint16_t size = 0; > -ssize_t ret = fread(&size, 1, sizeof(uint16_t), fd); > -if (ret < 0) { > -perror("Couldn't read size"); > -exit(1); > -} else if (ret != sizeof(uin

[FFmpeg-devel] [PATCH] avcodec/tiff: add initial bayer support

2018-10-31 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- Just to play with. --- libavcodec/tiff.c | 58 +++ libavcodec/tiff.h | 1 + 2 files changed, 49 insertions(+), 10 deletions(-) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index b537ec06a5..d42550b4cf 100644 --- a

Re: [FFmpeg-devel] [PATCH 1/5] lavc/qsvenc: add forced_idr opiton

2018-10-31 Thread Li, Zhong
> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Rogozhkin, Dmitry V > Sent: Wednesday, October 31, 2018 2:20 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/5] lavc/qsvenc: add forced_idr opiton > > On Tue, 2018-10-30 at 09:49 +, Li, Zhong w

Re: [FFmpeg-devel] [PATCH 1/5] lavc/qsvenc: add forced_idr opiton

2018-10-31 Thread Li, Zhong
> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Mark Thompson > Sent: Wednesday, October 31, 2018 7:40 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/5] lavc/qsvenc: add forced_idr opiton > > On 30/10/18 09:49, Li, Zhong wrote: > >> From: ffmpe

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/prosumer: Check for bytestream eof in decompress()

2018-10-31 Thread Paul B Mahol
On 10/31/18, Michael Niedermayer wrote: > Fixes: Infinite loop > Fixes: > 10685/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PROSUMER_fuzzer-5652236881887232 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Signed-off-by: Michael Nied

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/prosumer: Check for bytestream eof in decompress()

2018-10-31 Thread Hendrik Leppkes
On Wed, Oct 31, 2018 at 12:03 PM Michael Niedermayer wrote: > > Fixes: Infinite loop > Fixes: > 10685/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PROSUMER_fuzzer-5652236881887232 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Sig

[FFmpeg-devel] [PATCH 2/4] avcodec/prosumer: Remove unneeded ()

2018-10-31 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/prosumer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/prosumer.c b/libavcodec/prosumer.c index 2fd9880ee1..24905ac80f 100644 --- a/libavcodec/prosumer.c +++ b/libavcodec/prosumer.c @@ -59,7 +59,7 @@ static int d

[FFmpeg-devel] [PATCH 4/4] avcodec/prosumer: Simplify bit juggling of the c variable in decompress()

2018-10-31 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/prosumer.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavcodec/prosumer.c b/libavcodec/prosumer.c index 3125636cf1..505de71980 100644 --- a/libavcodec/prosumer.c +++ b/libavcodec/prosumer.c @@ -69,15 +69,13 @@ stat

[FFmpeg-devel] [PATCH 1/4] avcodec/prosumer: Check for bytestream eof in decompress()

2018-10-31 Thread Michael Niedermayer
Fixes: Infinite loop Fixes: 10685/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PROSUMER_fuzzer-5652236881887232 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/prosumer.c | 2 +- 1 file c

[FFmpeg-devel] [PATCH 3/4] avcodec/prosumer: Remove always true check in decompress()

2018-10-31 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/prosumer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/prosumer.c b/libavcodec/prosumer.c index 24905ac80f..3125636cf1 100644 --- a/libavcodec/prosumer.c +++ b/libavcodec/prosumer.c @@ -62,7 +62,7 @@ static int d

Re: [FFmpeg-devel] [PATCH 4/5] lavc/qsvenc: add an option to set h264 pps for every frame

2018-10-31 Thread Li, Zhong
> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Mark Thompson > Sent: Wednesday, October 31, 2018 8:15 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 4/5] lavc/qsvenc: add an option to set > h264 pps for every frame > > On 30/10/18 09:21, Li, Zho

[FFmpeg-devel] [PATCH v2 3/3] lavc/libdavs2: correct frame type setting

2018-10-31 Thread hwren
Signed-off-by: hwren --- libavcodec/libdavs2.c | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index a1815d2..d7bcaa3 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -94,11 +94,26 @@ static int d

[FFmpeg-devel] [PATCH v2 1/3] lavc/libdavs2: fix sequence incomplete output error

2018-10-31 Thread hwren
Signed-off-by: hwren --- libavcodec/libdavs2.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index cadf995..e463b2e 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -129,7 +129,16 @@ static int davs2_

[FFmpeg-devel] [PATCH v2 2/3] lavc/libdavs2: remove unused frame counter

2018-10-31 Thread hwren
Signed-off-by: hwren --- libavcodec/libdavs2.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index e463b2e..a1815d2 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -32,8 +32,6 @@ typedef struct DAVS2Context { davs2_param

Re: [FFmpeg-devel] [PATCH 1/5] lavc/qsvenc: add forced_idr opiton

2018-10-31 Thread Li, Zhong
> From: Rogozhkin, Dmitry V > Sent: Wednesday, October 31, 2018 2:07 AM > To: Li, Zhong ; ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/5] lavc/qsvenc: add forced_idr opiton > > On Tue, 2018-10-30 at 18:05 +0800, Li, Zhong wrote: > > > > +} else > > > > +enc_ct

Re: [FFmpeg-devel] [PATCH] doc/fate.texi: Mention that samples should be uploaded before pushing dependant commits

2018-10-31 Thread Gyan
On Wed, Oct 31, 2018 at 6:11 AM Michael Niedermayer wrote: > On Wed, Oct 24, 2018 at 10:34:39AM +0530, Gyan wrote: > > On Wed, Oct 24, 2018 at 3:09 AM Michael Niedermayer > > > wrote: > > > > > +Also all needed samples for a commit should be uploaded before the > commit > > > is > > > +pushed.

Re: [FFmpeg-devel] [PATCH] avcodec/libopenh264enc.c: Handle sample_aspect_ratio in libopenh264 encoder

2018-10-31 Thread Valery Kot
Yet another ping... Apparently there are no acrive maintainers and no devs (other than me) using libopenh264. What can be done to have this patch accepted? On Wed, Oct 24, 2018 at 8:57 AM Valery Kot wrote: > > Another ping. > On Thu, Oct 18, 2018 at 10:46 AM Valery Kot wrote: > > > > A gentle pi

Re: [FFmpeg-devel] [PATCH] avfilter: add (a)graphmonitor filter(s)

2018-10-31 Thread Paul B Mahol
On 10/30/18, Lou Logan wrote: > On Tue, Oct 30, 2018, at 12:30 PM, Paul B Mahol wrote: >> >> Will apply soon. > > Are you going to add any documentation? Yes, will do. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listi