Re: [FFmpeg-devel] [PATCH v10 1/4] avutil: add AV_FRAME_DATA_SEI_UNREGISTERED side data type

2020-06-10 Thread lance . lmwang
On Wed, Jun 10, 2020 at 07:43:11AM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > rebase with master only, I'll apply the patchset in two days if no objection. > > doc/APIchanges | 3 +++ > libavutil/frame.c | 1 + > libavutil/frame.h |

Re: [FFmpeg-devel] [PATCH v11 3/4] avfilter/vf_showinfo: display H.26[45] user data unregistered sei message

2020-06-10 Thread lance . lmwang
On Wed, Jun 10, 2020 at 08:13:59PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/vf_showinfo.c | 37 + > > 1 file changed, 37 insertions(+) > > > > diff --git

Re: [FFmpeg-devel] [PATCH] OS/2:Support linking against libcx

2020-06-10 Thread Dave Yeo
On 06/10/20 02:09 PM, Michael Niedermayer wrote: On Tue, Jun 09, 2020 at 11:11:48PM -0700, Dave Yeo wrote: Hi, could I get this pushed to trunk and the 4.3 branch? Fixes a build break in libavformat/ip.c (implicit declaration of function 'getaddrinfo') and also need the prototype. Thanks, Dave

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/libopenjpeg: pix fmt selection change

2020-06-10 Thread Gautam Ramakrishnan
On Tue, Jun 9, 2020 at 11:55 PM Carl Eugen Hoyos wrote: > > Am Di., 9. Juni 2020 um 19:12 Uhr schrieb Gautam Ramakrishnan > : > > > > On Tue, Jun 9, 2020 at 10:24 PM Carl Eugen Hoyos wrote: > > > > > > Am Di., 9. Juni 2020 um 14:07 Uhr schrieb : > > > > > > > > From: Gautam Ramakrishnan > > > >

Re: [FFmpeg-devel] [PATCH 6/6] dnn-layer-mathunary-test: add unit test for tan

2020-06-10 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel On Behalf Of Ting Fu > Sent: 2020年6月6日 20:13 > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH 6/6] dnn-layer-mathunary-test: add unit test > for > tan > > Signed-off-by: Ting Fu > --- > tests/dnn/dnn-layer-mathunary-test.c | 4

Re: [FFmpeg-devel] [PATCH v2 4/7] avcodec: add adpcm_ima_apm encoder

2020-06-10 Thread Andreas Rheinhardt
Zane van Iperen: > Signed-off-by: Zane van Iperen > --- > doc/general.texi | 2 +- > libavcodec/Makefile| 1 + > libavcodec/adpcmenc.c | 34 -- > libavcodec/allcodecs.c | 1 + > libavcodec/utils.c | 1 + > 5 files changed, 36 insertions(+), 3

Re: [FFmpeg-devel] [PATCH v2 2/7] avformat/apm: prepare extradata handling for muxer

2020-06-10 Thread Andreas Rheinhardt
Zane van Iperen: > Signed-off-by: Zane van Iperen > --- > libavformat/Makefile | 2 +- > libavformat/apm.c| 130 +++ > 2 files changed, 70 insertions(+), 62 deletions(-) > > diff --git a/libavformat/Makefile b/libavformat/Makefile > index

Re: [FFmpeg-devel] [PATCH v2 5/7] avformat: add apm muxer

2020-06-10 Thread Zane van Iperen
On Thu, 11 Jun 2020 03:25:26 +0200 "Andreas Rheinhardt" wrote: > > +av_log(s, AV_LOG_ERROR, > > + "Filesize %"PRId64" invalid for APM, output file > > will be broken\n", > > + file_size); > > +return AVERROR(EINVAL); > > EINVAL seems wrong here

Re: [FFmpeg-devel] [PATCH v2 5/7] avformat: add apm muxer

2020-06-10 Thread Andreas Rheinhardt
Zane van Iperen: > Signed-off-by: Zane van Iperen > --- > Changelog| 1 + > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/apm.c| 110 ++- > 4 files changed, 111 insertions(+), 2 deletions(-) > >

Re: [FFmpeg-devel] [PATCH] added sei side data

2020-06-10 Thread Daniel Loman
Yes. I think what he was asking is are you sure you want to add this to the AVPacket which is encoded data and will be ordered in decode time not presentation time. The precision time stamp is a separate clock but should be more closely related to the presentation time stamp (assumming its

Re: [FFmpeg-devel] [PATCH v11 4/4] avcodec/h264: create user data unregistered SEI side data for H.264

2020-06-10 Thread lance . lmwang
On Wed, Jun 10, 2020 at 08:02:10PM +0200, Marton Balint wrote: > > > On Wed, 10 Jun 2020, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavcodec/h264_sei.c | 18 - > > libavcodec/h264_sei.h | 2 + > > libavcodec/h264_slice.c

Re: [FFmpeg-devel] [PATCH v11 3/4] avfilter/vf_showinfo: display H.26[45] user data unregistered sei message

2020-06-10 Thread lance . lmwang
On Wed, Jun 10, 2020 at 08:13:59PM +0200, Andreas Rheinhardt wrote: > lance.lmw...@gmail.com: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/vf_showinfo.c | 37 + > > 1 file changed, 37 insertions(+) > > > > diff --git

[FFmpeg-devel] [PATCH v2 5/7] avformat: add apm muxer

2020-06-10 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- Changelog| 1 + libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/apm.c| 110 ++- 4 files changed, 111 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog

[FFmpeg-devel] [PATCH v2 6/7] fate: add adpcm_ima_apm encoding test

2020-06-10 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- tests/fate/acodec.mak | 2 ++ tests/ref/acodec/adpcm-ima_apm | 4 2 files changed, 6 insertions(+) create mode 100644 tests/ref/acodec/adpcm-ima_apm diff --git a/tests/fate/acodec.mak b/tests/fate/acodec.mak index bb6bfe5ada..197b6ed7c0 100644

[FFmpeg-devel] [PATCH v2 4/7] avcodec: add adpcm_ima_apm encoder

2020-06-10 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- doc/general.texi | 2 +- libavcodec/Makefile| 1 + libavcodec/adpcmenc.c | 34 -- libavcodec/allcodecs.c | 1 + libavcodec/utils.c | 1 + 5 files changed, 36 insertions(+), 3 deletions(-) diff --git

[FFmpeg-devel] [PATCH v2 3/7] avcodec/adpcm_ima_apm: prepare extradata handling for encoder

2020-06-10 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- libavcodec/adpcm.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 79c5d625d1..328971adf1 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -162,11 +162,11 @@ static av_cold

[FFmpeg-devel] [PATCH v2 7/7] avcodec/adpcmenc: cleanup trellis checks

2020-06-10 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- libavcodec/adpcmenc.c | 35 ++- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c index 8396180cb6..27b2a81f4b 100644 --- a/libavcodec/adpcmenc.c +++

[FFmpeg-devel] [PATCH v2 1/7] avformat/apm: check codec tag in probe and add constant

2020-06-10 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- libavformat/apm.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavformat/apm.c b/libavformat/apm.c index 9d2a856cc4..dc59c16562 100644 --- a/libavformat/apm.c +++ b/libavformat/apm.c @@ -29,6 +29,7 @@ #define APM_VS12_CHUNK_SIZE

[FFmpeg-devel] [PATCH v2 2/7] avformat/apm: prepare extradata handling for muxer

2020-06-10 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- libavformat/Makefile | 2 +- libavformat/apm.c| 130 +++ 2 files changed, 70 insertions(+), 62 deletions(-) diff --git a/libavformat/Makefile b/libavformat/Makefile index 0658fa3710..bb09dc6563 100644 ---

[FFmpeg-devel] [PATCH v2 0/7] adpcm_ima_apm encoder + apm muxer

2020-06-10 Thread Zane van Iperen
Add support for encoding adpcm_ima_apm and muxing to apm. If possible, I would like to get this functionality into the 4.3 release. v2: [1][2][3] * fix mixed declarations and code * remove unused variable * fix array initialisation * LOG_WARNING->LOG_ERROR * reorder "name and probe fix" Zane

Re: [FFmpeg-devel] [PATCH] avfilter/vf_chromakey: The chromakey filter preserves non-opaque alpha transparency.

2020-06-10 Thread Gavin Smith
On 10/06/2020 22:33, Gavin Smith wrote: From: Gavin Smith Sorry, new to all this. A description would have been helpful. I'll work on getting it right. So this patch is to address Trac ticket #8724: https://trac.ffmpeg.org/ticket/8724 --- libavfilter/vf_chromakey.c | 43

Re: [FFmpeg-devel] [PATCH 2/2] pthread_frame: change the criterium for updating thread contexts

2020-06-10 Thread James Almer
On 6/9/2020 8:20 AM, Anton Khirnov wrote: > Currently the next thread's context is updated from the previous one's > if the codec descriptor is not marked as intra-only. That is not > entirely correct, since that property does not necessarily imply > anything about how a specific decoder

Re: [FFmpeg-devel] [PATCH] added sei side data

2020-06-10 Thread Brad Hards
The side data that is added is a precision time stamp (MISB ST0603), which may or may not relate to the presentation time stamp. Unfortunate overlap of acronym. Brad ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] OS/2:Support linking against libcx

2020-06-10 Thread Michael Niedermayer
On Tue, Jun 09, 2020 at 11:11:48PM -0700, Dave Yeo wrote: > Hi, could I get this pushed to trunk and the 4.3 branch? Fixes a build break > in libavformat/ip.c (implicit declaration of function 'getaddrinfo') and > also need the prototype. > Thanks, > Dave it seems this breaks build on linux CC

Re: [FFmpeg-devel] [PATCH 4/7] avformat: add apm muxer

2020-06-10 Thread Andreas Rheinhardt
Zane van Iperen: > Signed-off-by: Zane van Iperen > --- > Changelog| 1 + > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/apm.c| 112 ++- > 4 files changed, 113 insertions(+), 2 deletions(-) > >

Re: [FFmpeg-devel] [PATCH 6/7] avformat/apm: name and probe fix

2020-06-10 Thread Andreas Rheinhardt
Zane van Iperen: > Signed-off-by: Zane van Iperen > --- > libavformat/apm.c | 9 ++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > > diff --git a/libavformat/apm.c b/libavformat/apm.c > index 46a0c67b79..8ece104ae7 100644 > --- a/libavformat/apm.c > +++ b/libavformat/apm.c > @@

Re: [FFmpeg-devel] [PATCH 7/7] avcodec/adpcmenc: cleanup trellis checks

2020-06-10 Thread Andreas Rheinhardt
Zane van Iperen: > Signed-off-by: Zane van Iperen > --- > libavcodec/adpcmenc.c | 29 ++--- > 1 file changed, 14 insertions(+), 15 deletions(-) > > diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c > index 242c92e61a..c18e67a94f 100644 > ---

Re: [FFmpeg-devel] [PATCH v11 3/4] avfilter/vf_showinfo: display H.26[45] user data unregistered sei message

2020-06-10 Thread Andreas Rheinhardt
lance.lmw...@gmail.com: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavfilter/vf_showinfo.c | 37 + > 1 file changed, 37 insertions(+) > > diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c > index 5d4aee4..2511da5 100644 >

Re: [FFmpeg-devel] [PATCH v11 4/4] avcodec/h264: create user data unregistered SEI side data for H.264

2020-06-10 Thread Marton Balint
On Wed, 10 Jun 2020, lance.lmw...@gmail.com wrote: From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/h264_sei.c | 18 - libavcodec/h264_sei.h | 2 + libavcodec/h264_slice.c | 14 tests/ref/fate/mov-zombie | 195 ++ 4

Re: [FFmpeg-devel] [IMPORTANT] FOSDEM meeting

2020-06-10 Thread Thilo Borgmann
Hi, > As a reminder, this week-end is the FOSDEM, in Brussels. > > As promised, we will do a FFmpeg developer meeting, where we will vote on the > decisions taken during VDD. > Notably, re-elect the committees, and the voted will now be done by the new > electors. > > This will take place on

Re: [FFmpeg-devel] release/4.3

2020-06-10 Thread Kieran Kunhya
> > >> Against, release name as always should be George or Carl. > > > > Quit it. > > You are against my vote for release name? > How unfortunate. > Give it a rest. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] release/4.3

2020-06-10 Thread Paul B Mahol
On 6/10/20, James Almer wrote: > On 6/9/2020 6:00 PM, Paul B Mahol wrote: >> On 6/9/20, Michael Niedermayer wrote: >>> On Tue, Jun 09, 2020 at 03:14:13PM +0200, Reto Kromer wrote: Michael Niedermayer wrote: >> Is there any chance that the naming system could be changed >> for

Re: [FFmpeg-devel] release/4.3

2020-06-10 Thread James Almer
On 6/9/2020 6:00 PM, Paul B Mahol wrote: > On 6/9/20, Michael Niedermayer wrote: >> On Tue, Jun 09, 2020 at 03:14:13PM +0200, Reto Kromer wrote: >>> Michael Niedermayer wrote: >>> > Is there any chance that the naming system could be changed > for this one release so it's 4:3 instead?

[FFmpeg-devel] [PATCH 2/2] dnn_backend_native: check operand index

2020-06-10 Thread Guo Yejun
it fixed the issue in https://trac.ffmpeg.org/ticket/8716 Signed-off-by: Guo Yejun --- libavfilter/dnn/dnn_backend_native.c | 6 +- libavfilter/dnn/dnn_backend_native_layer_conv2d.c | 7 ++- libavfilter/dnn/dnn_backend_native_layer_conv2d.h | 2 +-

[FFmpeg-devel] [PATCH 1/2] dnn_backend_native.c: refine code for fail case

2020-06-10 Thread Guo Yejun
Signed-off-by: Guo Yejun --- libavfilter/dnn/dnn_backend_native.c | 82 +--- 1 file changed, 38 insertions(+), 44 deletions(-) diff --git a/libavfilter/dnn/dnn_backend_native.c b/libavfilter/dnn/dnn_backend_native.c index 94634b3..12695a0 100644 ---

Re: [FFmpeg-devel] [PATCH 0/7] adpcm_ima_apm encoder + apm muxer

2020-06-10 Thread Zane van Iperen
On Tue, 09 Jun 2020 00:19:24 + "Zane van Iperen" wrote: > Add support for encoding adpcm_ima_apm and muxing to apm. > Ping. If possible, I would like to get this functionality into the 4.3 release. Zane ___ ffmpeg-devel mailing list

[FFmpeg-devel] [PATCH v11 4/4] avcodec/h264: create user data unregistered SEI side data for H.264

2020-06-10 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/h264_sei.c | 18 - libavcodec/h264_sei.h | 2 + libavcodec/h264_slice.c | 14 tests/ref/fate/mov-zombie | 195 ++ 4 files changed, 161 insertions(+), 68 deletions(-)

Re: [FFmpeg-devel] [PATCH] codec_desc: mark CFHD as intra-only

2020-06-10 Thread James Almer
On 6/10/2020 6:19 AM, Anton Khirnov wrote: > Quoting James Almer (2020-06-09 14:45:33) >> On 6/9/2020 6:06 AM, Anton Khirnov wrote: >>> I don't think this needs to be visible externally, since it's only >>> meaningful for internal use. I'm wondering if the presence of >>> update_thread_context()

[FFmpeg-devel] [PATCH v11 3/4] avfilter/vf_showinfo: display H.26[45] user data unregistered sei message

2020-06-10 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/vf_showinfo.c | 37 + 1 file changed, 37 insertions(+) diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c index 5d4aee4..2511da5 100644 --- a/libavfilter/vf_showinfo.c +++

Re: [FFmpeg-devel] [PATCH 4/5] fftools/ffmpeg: flush and recreate encoder instance if resolution changes

2020-06-10 Thread Nicolas George
Linjie Fu (12020-06-09): > Signed-off-by: Linjie Fu > --- > Should be squashed with: > https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=1434 Apart from the issue of accessing non-public fields, this needs to be intensively tested. If it allows to create unplayable files, then it is not

[FFmpeg-devel] [PATCH] avformat/dashenc: Add hls_master_name option

2020-06-10 Thread Przemysław Sobala
--- doc/muxers.texi | 4 +++- libavformat/dashenc.c | 8 +--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index d6f9de3702..b1389a3227 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -267,8 +267,10 @@ Override User-Agent field

Re: [FFmpeg-devel] [PATCH 1/2] codec_desc: drop the INTRA_ONLY property from TAK

2020-06-10 Thread Paul B Mahol
On 6/9/20, Anton Khirnov wrote: > Quoting Paul B Mahol (2020-06-09 13:34:21) >> Not correct at all decoder is intra only it just have weird container, > > If it's intra only then why does the parser mark only some frames as > keyframes? And why does it need update_thread_context(). > >> this also

Re: [FFmpeg-devel] [PATCH v10 4/4] avcodec/h264: create user data unregistered SEI side data for H.264

2020-06-10 Thread lance . lmwang
On Wed, Jun 10, 2020 at 10:57:00AM +0200, Marton Balint wrote: > > > On Wed, 10 Jun 2020, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavcodec/h264_sei.c | 30 +-- > > libavcodec/h264_sei.h | 2 + > >

Re: [FFmpeg-devel] [PATCH v10 3/4] avcodec/hevc_sei: add support for user data unregistered SEI message

2020-06-10 Thread lance . lmwang
On Wed, Jun 10, 2020 at 10:49:33AM +0200, Marton Balint wrote: > > > On Wed, 10 Jun 2020, lance.lmw...@gmail.com wrote: > > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/vf_showinfo.c | 37 + > > Commit subject is wrong.

Re: [FFmpeg-devel] [PATCH] codec_desc: mark CFHD as intra-only

2020-06-10 Thread Anton Khirnov
Quoting James Almer (2020-06-09 14:45:33) > On 6/9/2020 6:06 AM, Anton Khirnov wrote: > > I don't think this needs to be visible externally, since it's only > > meaningful for internal use. I'm wondering if the presence of > > update_thread_context() callback won't be sufficient for this. > >

Re: [FFmpeg-devel] [PATCH v10 4/4] avcodec/h264: create user data unregistered SEI side data for H.264

2020-06-10 Thread Marton Balint
On Wed, 10 Jun 2020, lance.lmw...@gmail.com wrote: From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/h264_sei.c | 30 +-- libavcodec/h264_sei.h | 2 + libavcodec/h264_slice.c | 14 tests/ref/fate/mov-zombie | 195 ++ 4

Re: [FFmpeg-devel] [PATCH] added sei side data

2020-06-10 Thread Kieran Kunhya
On Tue, 9 Jun 2020 at 22:26, Daniel Loman wrote: > KK>>Are you aware that this is not going to be frame accurate for the > non-SPS > KK>>frame because of reordering? > > reordering of the frame in terms of pts versus dts? > > these are attached to the AVPackets not AVFrame. They data should >

Re: [FFmpeg-devel] [PATCH v10 3/4] avcodec/hevc_sei: add support for user data unregistered SEI message

2020-06-10 Thread Marton Balint
On Wed, 10 Jun 2020, lance.lmw...@gmail.com wrote: From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/vf_showinfo.c | 37 + Commit subject is wrong. 1 file changed, 37 insertions(+) diff --git a/libavfilter/vf_showinfo.c

Re: [FFmpeg-devel] [PATCH 4/5] fftools/ffmpeg: flush and recreate encoder instance if resolution changes

2020-06-10 Thread Anton Khirnov
Quoting Linjie Fu (2020-06-09 10:48:46) > Signed-off-by: Linjie Fu > --- > Should be squashed with: > https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=1434 > > fftools/ffmpeg.c | 11 +++ > 1 file changed, 11 insertions(+) > > diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c >

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:add support to change mpd update interval

2020-06-10 Thread 黄思远
0001-libavformat-dashenc.c-add-support-to-change-mpd-upda.patch Description: Binary data ___ 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] libavformat/dashenc.c:add support to change mpd update interval

2020-06-10 Thread Siyuan Huang
I have trouble with mailman email system . My company email client can reply email . but looks mailman can not read out text content . and it will add a warning picture automatically . And third part email client such as outlook , though it works with text content without warning pitcture. but

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:add support to change mpd update interval

2020-06-10 Thread 黄思远
0001-libavformat-dashenc.c-add-support-to-change-mpd-upda.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email

[FFmpeg-devel] Reply-To: RE: [Please Ignore] reply test

2020-06-10 Thread Siyuan Huang
Reply test ___ 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 4/5] fftools/ffmpeg: flush and recreate encoder instance if resolution changes

2020-06-10 Thread Fu, Linjie
> From: ffmpeg-devel On Behalf Of > James Almer > Sent: Wednesday, June 10, 2020 12:22 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 4/5] fftools/ffmpeg: flush and recreate > encoder instance if resolution changes > > On 6/9/2020 5:48 AM, Linjie Fu wrote: > > Signed-off-by:

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:add support to change mpd update interval

2020-06-10 Thread Siyuan Huang
Hello Mr. Moritz I update docs . and here is the latest patch . Ps: when I test doc file , muxers.texi It show some warning by root@saber:/ffmpeg# makeinfo --html --no-split -o muext.html doc/muxers.texi doc/muxers.texi:1948: @ref reference to nonexistent node `concat'

[FFmpeg-devel] [PATCH] OS/2:Support linking against libcx

2020-06-10 Thread Dave Yeo
Hi, could I get this pushed to trunk and the 4.3 branch? Fixes a build break in libavformat/ip.c (implicit declaration of function 'getaddrinfo') and also need the prototype. Thanks, Dave From f9fbdaaf6cdb6f886cbdf31c1983e452567cd857 Mon Sep 17 00:00:00 2001 From: Dave Yeo Date: Tue, 9 Jun

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:add support to change mpd update interval

2020-06-10 Thread Siyuan Huang
Hello Mr. Moritz I update docs . and here is the latest patch . Ps: when I test doc file , muxers.texi It show some warning by root@saber:/ffmpeg# makeinfo --html --no-split -o muext.html doc/muxers.texi doc/muxers.texi:1948: @ref reference to nonexistent node `concat'