Re: [FFmpeg-devel] [PATCH]configure: Make sure libpostproc can be found if -rpath-link doesn't work

2018-12-22 Thread Michael Niedermayer
On Sat, Dec 22, 2018 at 12:08:19AM +0100, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes running fate with "--enable-shared --enable-gpl" on > Solaris, the linker searches "libpostproc" in a directory"-link=libpostproc". > Only tested on Solaris. > > Please comment, Carl Eugen > configu

Re: [FFmpeg-devel] [PATCH 2/2] dstdec: use appropriate alignment

2018-12-22 Thread Michael Niedermayer
On Fri, Dec 21, 2018 at 01:34:19PM +1100, Peter Ross wrote: > this was a typo in my original patch. there is no requirement for 64-byte > alignment here, and it does not affect decoder performance. > --- > libavcodec/dstdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) LGTM thx [...

Re: [FFmpeg-devel] [PATCH 1/2] fate: add dst decoder test

2018-12-22 Thread Michael Niedermayer
On Fri, Dec 21, 2018 at 01:32:03PM +1100, Peter Ross wrote: > --- > the dst sample file is 40 kilobytes. > i don't have write access to fate-suite to upload it. > > > tests/fate/audio.mak | 3 +++ > tests/ref/fate/dsf-dst | 16 > 2 files changed, 19 insertions(+) > create mo

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add photocd decoder

2018-12-22 Thread Paul B Mahol
On 12/21/18, Steinar H. Gunderson wrote: > On Fri, Dec 21, 2018 at 05:07:45PM +0100, Paul B Mahol wrote: >> The colors that PhotoCD uses predates color space definitions. > > Really? It looks fairly well-defined to me, though esoteric > (the gamma ramp is basically like sRGB but with a much bigger

[FFmpeg-devel] [PATCH] avformat/hlsenc: free varstreams after write all varstreams info

2018-12-22 Thread Steven Liu
fix ticket: 7631 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 50 +- 1 file changed, 33 insertions(+), 17 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index bdd2a113bd..e3cd6f375a 100644 --- a/libavformat/hlsenc.c

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat: add vividas demuxer

2018-12-22 Thread Paul B Mahol
On 12/22/18, Carl Eugen Hoyos wrote: > 2018-12-20 19:33 GMT+01:00, Paul B Mahol : >> ffmpeg | branch: master | Paul B Mahol | Mon Dec 10 >> 12:15:50 2018 +0100| [d06aae732c16bd4c490c6dfa35cc2a35129c640f] | >> committer: >> Paul B Mahol >> >> avformat: add vividas demuxer > > Crashes here on strea

[FFmpeg-devel] [PATCH V5 0/2] Add libsvt HEVC encoder wrapper

2018-12-22 Thread Jun Zhao
The Scalable Video Technology for HEVC Encoder (SVT-HEVC Encoder) is an HEVC-compliant encoder library core that achieves excellent density-quality tradeoffs, and is highly optimized for Intel Xeon Scalable Processor and Xeon D processors. Intel open source SVT-HEVC encoder in: https://github.c

[FFmpeg-devel] [PATCH V5 1/2] lavc/svt_hevc: add libsvt hevc encoder wrapper.

2018-12-22 Thread Jun Zhao
base on patch by Huang, Zhengxu from https://github.com/intel/SVT-HEVC Signed-off-by: Huang, Zhengxu Signed-off-by: hassene Signed-off-by: Jun Zhao --- Changelog|1 + configure|4 + libavcodec/Makefile |1 + libavcodec/allcodecs.c |1 + li

[FFmpeg-devel] [PATCH V5 2/2] doc: Add libsvt_hevc encoder docs

2018-12-22 Thread Jun Zhao
Add docs for libsvt_hevc encoder in encoders.texi and general.texi Signed-off-by: Jun Zhao Signed-off-by: Huang, Zhengxu Signed-off-by: hassene --- doc/encoders.texi | 145 + doc/general.texi | 15 ++ 2 files changed, 160 insertions(+

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat: add vividas demuxer

2018-12-22 Thread Carl Eugen Hoyos
2018-12-22 10:06 GMT+01:00, Paul B Mahol : > On 12/22/18, Carl Eugen Hoyos wrote: >> 2018-12-20 19:33 GMT+01:00, Paul B Mahol : >>> ffmpeg | branch: master | Paul B Mahol | Mon Dec 10 >>> 12:15:50 2018 +0100| [d06aae732c16bd4c490c6dfa35cc2a35129c640f] | >>> committer: >>> Paul B Mahol >>> >>> avf

Re: [FFmpeg-devel] [PATCH V5 0/2] Add libsvt HEVC encoder wrapper

2018-12-22 Thread Carl Eugen Hoyos
2018-12-22 10:15 GMT+01:00, Jun Zhao : > The Scalable Video Technology for HEVC Encoder (SVT-HEVC Encoder) is an > HEVC-compliant encoder library core that achieves excellent density-quality I don't find it ideal that FFmpeg git claims that an Intel encoder does something "excellent" - unrelated

Re: [FFmpeg-devel] [PATCH 1/4] zmbvenc: don't sum the entropy when blocks are equal

2018-12-22 Thread Tomas Härdin
tor 2018-12-20 klockan 17:46 + skrev Matthew Fearnley: > > On Thu, 20 Dec 2018 at 16:30, Tomas Härdin wrote: > > > I have a feeling this could be sped up further by just doing *xored = > > histogram[0] == ZMBV_BLOCK*ZMBV_BLOCK after the loops, if [PATCH 3/4] > > is applied before this. Comput

Re: [FFmpeg-devel] [PATCH 4/4] zmbvenc: use unsigned values for score calculations

2018-12-22 Thread Tomas Härdin
tor 2018-12-20 klockan 17:48 + skrev Matthew Fearnley: > > On Thu, 20 Dec 2018 at 16:30, Tomas Härdin wrote: > > > Trivial enough. You could probably roll many or even all of these > > patches together > > > > Thanks for your feedback.  I was reluctant to submit so many patches, but I > wor

Re: [FFmpeg-devel] [PATCH] libavformat/hlsenc: fix broken -hls_flags +temp_file

2018-12-22 Thread Ronak Patel
> On Dec 16, 2018, at 10:31 PM, Steven Liu wrote: > > Aleksey Skripka 于2018年12月14日周五 下午10:58写道: >> >> >> From e85edcc4d8b0312c7871f78ed0859ec7436be460 Mon Sep 17 00:00:00 2001 >> From: Aleksey Skripka >> Date: Fri, 14 Dec 2018 14:48:31 + >> Subject: [PATCH] libavformat/hlsenc: fix broken

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: free varstreams after write all varstreams info

2018-12-22 Thread Jan Ekström
On Sat, Dec 22, 2018 at 10:55 AM Steven Liu wrote: > > fix ticket: 7631 > > Signed-off-by: Steven Liu > --- > libavformat/hlsenc.c | 50 +- > 1 file changed, 33 insertions(+), 17 deletions(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlse

Re: [FFmpeg-devel] avformat/hls.c: Fix memory leak

2018-12-22 Thread Valery Kot
Ping... Any maintainer willing to review/push straightforward one-liner patch? > Thus 59MB leak in an hour! And keeps growing... ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: free varstreams after write all varstreams info

2018-12-22 Thread Steven Liu
> On Dec 22, 2018, at 22:26, Jan Ekström wrote: > > On Sat, Dec 22, 2018 at 10:55 AM Steven Liu wrote: >> >> fix ticket: 7631 >> >> Signed-off-by: Steven Liu >> --- >> libavformat/hlsenc.c | 50 +- >> 1 file changed, 33 insertions(+), 17 deleti

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: free varstreams after write all varstreams info

2018-12-22 Thread Steven Liu
> On Dec 22, 2018, at 23:02, Steven Liu wrote: > > > >> On Dec 22, 2018, at 22:26, Jan Ekström wrote: >> >> On Sat, Dec 22, 2018 at 10:55 AM Steven Liu wrote: >>> >>> fix ticket: 7631 >>> >>> Signed-off-by: Steven Liu >>> --- >>> libavformat/hlsenc.c | 50 +++

Re: [FFmpeg-devel] [PATCH 1/4] zmbvenc: don't sum the entropy when blocks are equal

2018-12-22 Thread Matthew Fearnley
> On 22 Dec 2018, at 12:11, Tomas Härdin wrote: > > tor 2018-12-20 klockan 17:46 + skrev Matthew Fearnley: On Thu, 20 Dec 2018 at 16:30, Tomas Härdin wrote: >>> >>> I have a feeling this could be sped up further by just doing *xored = >>> histogram[0] == ZMBV_BLOCK*ZMBV_BLOCK after th

[FFmpeg-devel] [PATCH v2] avformat/hlsenc: free variant streams after write all variant streams info

2018-12-22 Thread Steven Liu
fix ticket: 7631 Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 48 +++- 1 file changed, 31 insertions(+), 17 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index bdd2a113bd..d96b9eb179 100644 --- a/libavformat/hlsenc.c ++

Re: [FFmpeg-devel] [PATCH 3/4] zmbvenc: Prevent memory/math overflows in block_cmp()

2018-12-22 Thread Matthew Fearnley
> On 20 Dec 2018, at 16:30, Tomas Härdin wrote: > > ons 2018-12-19 klockan 22:00 + skrev matthew.w.fearn...@gmail.com: >>> From: Matthew Fearnley >> >> score_tab[] was only declared/initialised for elements 0..255, but with >> block sizes set to 16*16, it was possible to reach 256. >> >>

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/mxfdec: fix error check in macro

2018-12-22 Thread Michael Niedermayer
On Sat, Dec 15, 2018 at 10:18:18AM +0100, Hendrik Leppkes wrote: > On Sat, Dec 15, 2018 at 9:50 AM Paul B Mahol wrote: > > > > On 12/15/18, James Almer wrote: > > >> ffmpeg | branch: master | Paul B Mahol > >> > | Thu Dec 13 23:51:02 > > >> 2018

Re: [FFmpeg-devel] [PATCH 4/4] zmbvenc: use unsigned values for score calculations

2018-12-22 Thread Matthew Fearnley
> On 22 Dec 2018, at 12:15, Tomas Härdin wrote: > > tor 2018-12-20 klockan 17:48 + skrev Matthew Fearnley: > On Thu, 20 Dec 2018 at 16:30, Tomas Härdin wrote: >>> >>> Trivial enough. You could probably roll many or even all of these >>> patches together >> >> Thanks for your feedback.

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/mxfdec: fix error check in macro

2018-12-22 Thread Paul B Mahol
On 12/22/18, Michael Niedermayer wrote: > On Sat, Dec 15, 2018 at 10:18:18AM +0100, Hendrik Leppkes wrote: >> On Sat, Dec 15, 2018 at 9:50 AM Paul B Mahol wrote: >> > >> > On 12/15/18, James Almer wrote: >> > >> ffmpeg | branch: master | Paul B Mahol > > >>

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/mxfdec: fix error check in macro

2018-12-22 Thread James Almer
On 12/22/2018 12:50 PM, Michael Niedermayer wrote: > On Sat, Dec 15, 2018 at 10:18:18AM +0100, Hendrik Leppkes wrote: >> On Sat, Dec 15, 2018 at 9:50 AM Paul B Mahol wrote: >>> >>> On 12/15/18, James Almer wrote: > ffmpeg | branch: master | Paul B Mahol

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/mxfdec: fix error check in macro

2018-12-22 Thread Michael Niedermayer
On Sat, Dec 22, 2018 at 01:02:17PM -0300, James Almer wrote: > On 12/22/2018 12:50 PM, Michael Niedermayer wrote: > > On Sat, Dec 15, 2018 at 10:18:18AM +0100, Hendrik Leppkes wrote: > >> On Sat, Dec 15, 2018 at 9:50 AM Paul B Mahol wrote: > >>> > >>> On 12/15/18, James Almer wrote: > > ffmpe

Re: [FFmpeg-devel] [PATCH V5 0/2] Add libsvt HEVC encoder wrapper

2018-12-22 Thread Jean-Baptiste Kempf
Hello, On Sat, 22 Dec 2018, at 13:02, Carl Eugen Hoyos wrote: > > HEVC-compliant encoder library core that achieves excellent density-quality > > I don't find it ideal that FFmpeg git claims that an Intel encoder > does something "excellent" - unrelated to our actual opinion. > Please rephrase.

Re: [FFmpeg-devel] avformat/hls.c: Fix memory leak

2018-12-22 Thread Derek Buitenhuis
On 22/12/2018 14:54, Valery Kot wrote: > Ping... > Any maintainer willing to review/push straightforward one-liner patch? > >> Thus 59MB leak in an hour! And keeps growing... Can you add to the commit message to explain what exactly is changed and why? 'Fix leak' isn't very useful. Cheers, - Der

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/mxfdec: fix error check in macro

2018-12-22 Thread Marton Balint
On Sat, 22 Dec 2018, Michael Niedermayer wrote: On Sat, Dec 22, 2018 at 01:02:17PM -0300, James Almer wrote: On 12/22/2018 12:50 PM, Michael Niedermayer wrote: On Sat, Dec 15, 2018 at 10:18:18AM +0100, Hendrik Leppkes wrote: On Sat, Dec 15, 2018 at 9:50 AM Paul B Mahol wrote: On 12/15/18

Re: [FFmpeg-devel] [PATCH] avformat/avio: fix avio_feof documentation

2018-12-22 Thread Marton Balint
On Sat, 15 Dec 2018, Marton Balint wrote: On Sun, 9 Dec 2018, Marton Balint wrote: It has been this way too long to change behaviour, so let's change the docs instead. Signed-off-by: Marton Balint --- libavformat/avio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --g

Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/mxfdec: fix error check in macro

2018-12-22 Thread Michael Niedermayer
On Sat, Dec 22, 2018 at 07:06:13PM +0100, Marton Balint wrote: > > > On Sat, 22 Dec 2018, Michael Niedermayer wrote: > > >On Sat, Dec 22, 2018 at 01:02:17PM -0300, James Almer wrote: > >>On 12/22/2018 12:50 PM, Michael Niedermayer wrote: > >>>On Sat, Dec 15, 2018 at 10:18:18AM +0100, Hendrik Lep

Re: [FFmpeg-devel] [PATCH] avformat/mpegts: unset DTS/PTS for subtitle PES packets if PCR not available

2018-12-22 Thread Jan Ekström
On Fri, Dec 21, 2018 at 9:04 PM Jan Ekström wrote: > > On Wed, Dec 19, 2018 at 8:56 PM Michael Niedermayer > wrote: > > > > On Sat, Dec 15, 2018 at 08:50:41PM +0200, Jan Ekström wrote: > > > Fixes issues when a subtitle packet is received before PCR for the > > > program has been received, leadin

[FFmpeg-devel] [PATCH] avformat/mxfdec: Do not process zero modified_date timestamp.

2018-12-22 Thread Michael Niedermayer
This causes windows to fail as the timestamp is outside its supported range Fixes regression & fate Signed-off-by: Michael Niedermayer --- libavformat/mxfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index f5e3a736e5..6e9610

Re: [FFmpeg-devel] [PATCH] avformat/mxfdec: Do not process zero modified_date timestamp.

2018-12-22 Thread Marton Balint
On Sat, 22 Dec 2018, Michael Niedermayer wrote: This causes windows to fail as the timestamp is outside its supported range Fixes regression & fate LGTM, exactly my patch. Thanks, Marton Signed-off-by: Michael Niedermayer --- libavformat/mxfdec.c | 2 +- 1 file changed, 1 insertion(+),

Re: [FFmpeg-devel] [PATCH] avformat/mxfdec: Do not process zero modified_date timestamp.

2018-12-22 Thread James Almer
On 12/22/2018 3:44 PM, Michael Niedermayer wrote: > This causes windows to fail as the timestamp is outside its supported range > Fixes regression & fate > > Signed-off-by: Michael Niedermayer > --- > libavformat/mxfdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/

Re: [FFmpeg-devel] [PATCH] avformat/mxfdec: Do not process zero modified_date timestamp.

2018-12-22 Thread Marton Balint
On Sat, 22 Dec 2018, James Almer wrote: On 12/22/2018 3:44 PM, Michael Niedermayer wrote: This causes windows to fail as the timestamp is outside its supported range Fixes regression & fate Signed-off-by: Michael Niedermayer --- libavformat/mxfdec.c | 2 +- 1 file changed, 1 insertion(+),

Re: [FFmpeg-devel] [PATCH] avformat/mxfdec: Do not process zero modified_date timestamp.

2018-12-22 Thread James Almer
On 12/22/2018 4:00 PM, Marton Balint wrote: > > > On Sat, 22 Dec 2018, James Almer wrote: > >> On 12/22/2018 3:44 PM, Michael Niedermayer wrote: >>> This causes windows to fail as the timestamp is outside its supported >>> range >>> Fixes regression & fate >>> >>> Signed-off-by: Michael Niederma

Re: [FFmpeg-devel] [PATCH 2/2] postproc/postprocess_template: remove FF_REG_sp from clobber list

2018-12-22 Thread Michael Niedermayer
On Thu, Dec 20, 2018 at 10:04:21PM -0300, James Almer wrote: > On 12/20/2018 8:56 PM, Michael Niedermayer wrote: > > On Thu, Dec 20, 2018 at 06:54:12PM -0300, James Almer wrote: > >> On 12/20/2018 6:40 PM, Michael Niedermayer wrote: > >>> Future gcc may no longer support this > >>> > >>> Signed-off

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add photocd decoder

2018-12-22 Thread Steinar H. Gunderson
On Sat, Dec 22, 2018 at 09:53:16AM +0100, Paul B Mahol wrote: >> FFmpeg doesn't have a good understanding of gamma (it rarely actually >> converts between different gamma ramps), but that's not a problem with >> PhotoCD per se. I can't find a good reason why FFmpeg could not be >> extended with con

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add photocd decoder

2018-12-22 Thread Paul B Mahol
On 12/22/18, Steinar H. Gunderson wrote: > On Sat, Dec 22, 2018 at 09:53:16AM +0100, Paul B Mahol wrote: >>> FFmpeg doesn't have a good understanding of gamma (it rarely actually >>> converts between different gamma ramps), but that's not a problem with >>> PhotoCD per se. I can't find a good reas

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add photocd decoder

2018-12-22 Thread Steinar H. Gunderson
On Sat, Dec 22, 2018 at 09:04:26PM +0100, Paul B Mahol wrote: > I can not accept internal conversion to RGB. This is subsampled format > after all. Well, it's not Y'CbCr, so if so, you'd need to add a new AVPixelFormat value (e.g. AV_PIX_FMT_YCC420P). I'm not sure what applications would do with i

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add photocd decoder

2018-12-22 Thread Paul B Mahol
On 12/22/18, Steinar H. Gunderson wrote: > On Sat, Dec 22, 2018 at 09:04:26PM +0100, Paul B Mahol wrote: >> I can not accept internal conversion to RGB. This is subsampled format >> after all. > > Well, it's not Y'CbCr, so if so, you'd need to add a new AVPixelFormat value > (e.g. AV_PIX_FMT_YCC42

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add photocd decoder

2018-12-22 Thread Steinar H. Gunderson
On Sat, Dec 22, 2018 at 09:18:11PM +0100, Paul B Mahol wrote: > Unacceptable, I'm not adding another yuv420p variant. Well, if returning YCC as YCC is unacceptable, and converting YCC to RGB is unacceptable, I believe your only choices are: 1. Try to convert YCC to Y'CbCr ignoring the gamma cur

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add photocd decoder

2018-12-22 Thread Paul B Mahol
On 12/22/18, Steinar H. Gunderson wrote: > On Sat, Dec 22, 2018 at 09:18:11PM +0100, Paul B Mahol wrote: >> Unacceptable, I'm not adding another yuv420p variant. > > Well, if returning YCC as YCC is unacceptable, and converting YCC to RGB is > unacceptable, I believe your only choices are: > > 1

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add photocd decoder

2018-12-22 Thread Steinar H. Gunderson
On Sat, Dec 22, 2018 at 09:32:35PM +0100, Paul B Mahol wrote: >> 2. Return YCC mislabeled as something else, which will look even more >> wrong. > 4. Leave user to do conversion as he wish. That's essentially the same as #2, no? /* Steinar */ -- Homepage: https://www.sesse.net/ __

Re: [FFmpeg-devel] [PATCH] avformat/mxfdec: Do not process zero modified_date timestamp.

2018-12-22 Thread Michael Niedermayer
On Sat, Dec 22, 2018 at 04:23:54PM -0300, James Almer wrote: > On 12/22/2018 4:00 PM, Marton Balint wrote: > > > > > > On Sat, 22 Dec 2018, James Almer wrote: > > > >> On 12/22/2018 3:44 PM, Michael Niedermayer wrote: > >>> This causes windows to fail as the timestamp is outside its supported >

Re: [FFmpeg-devel] [PATCH V5 0/2] Add libsvt HEVC encoder wrapper

2018-12-22 Thread Carl Eugen Hoyos
2018-12-22 17:57 GMT+01:00, Jean-Baptiste Kempf : > On Sat, 22 Dec 2018, at 13:02, Carl Eugen Hoyos wrote: >> > This wrapper work with SVT-HEVC master branch, more information can get >> > from https://github.com/intel/SVT-HEVC/blob/new_api/ffmpeg_plugin/. >> >> This is irrelevant: >> If SVT is a

Re: [FFmpeg-devel] [PATCH]configure: Make sure libpostproc can be found if -rpath-link doesn't work

2018-12-22 Thread Carl Eugen Hoyos
2018-12-22 9:35 GMT+01:00, Michael Niedermayer : > On Sat, Dec 22, 2018 at 12:08:19AM +0100, Carl Eugen Hoyos wrote: >> Hi! >> >> Attached patch fixes running fate with "--enable-shared --enable-gpl" on >> Solaris, the linker searches "libpostproc" in a >> directory"-link=libpostproc". >> Only test

[FFmpeg-devel] [PATCH]lavf/vividas: Do not increase extradata_size after allocation

2018-12-22 Thread Carl Eugen Hoyos
Hi! Attached patch can avoid a crash in avcodec_parameters_from_context() if extradata_size was increased after allocation. Please comment, Carl Eugen From 37ca1caa949902ec209c7c779b2c5b0ca3d3a3e6 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 23 Dec 2018 00:34:57 +0100 Subject: [PAT

[FFmpeg-devel] GCC 8.2.0 compiler-warnings on ffmpeg-N-92765-g2744d6b

2018-12-22 Thread Reino Wijnsma
Hello ffmpeg-devel, I can't code in C, so to still contribute to this project I'd like to report the warnings I got while compiling ffmpeg-N-92765-g2744d6b on Windows using Cygwin, MinGW 6.0.0 and GCC 8.2.0. configure options: > Configuring ffmpeg_git as ./configure --arch=x86 --target-os=mingw

[FFmpeg-devel] [PATCH 1/3] avformat/mxfdec: replace obsolete comment

2018-12-22 Thread Marton Balint
We no longer use strftime directly but use av_timegm to get an int64_t timestamp. Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 6e96107498..d78f8ad2e4 100644 --- a/li

[FFmpeg-devel] [PATCH 3/3] avformat/mxfenc: support writing subsecond precision timestamps

2018-12-22 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/mxfenc.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 5e7bd212dc..032ee3bf3d 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -2332,8 +2332,9 @@ static int

[FFmpeg-devel] [PATCH 2/3] avformat/mxfdec: support subsecond precision of decoded timestamps

2018-12-22 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/mxfdec.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index d78f8ad2e4..0553adcb06 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -2556,12 +2556,14 @@ fail_and_free

[FFmpeg-devel] [PATCHv2 1/4] avformat/concatdec: always allow seeking to start

2018-12-22 Thread Marton Balint
Signed-off-by: Marton Balint --- libavformat/concatdec.c | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c index bbe13136fa..3ed95a4538 100644 --- a/libavformat/concatdec.c +++ b/libavformat/concatdec.c @@ -692,6 +692,13

Re: [FFmpeg-devel] GCC 8.2.0 compiler-warnings on ffmpeg-N-92765-g2744d6b

2018-12-22 Thread Carl Eugen Hoyos
2018-12-23 0:58 GMT+01:00, Reino Wijnsma : > I can't code in C, so to still contribute to this project I'd like to report > the warnings I got while compiling ffmpeg-N-92765-g2744d6b All developers see these warnings, no reason to report them. Thank you, Carl Eugen __

[FFmpeg-devel] [PATCH]lavf/vividas: Support demuxing on big-endian hardware

2018-12-22 Thread Carl Eugen Hoyos
Hi! Attached patch fixes demuxing vividas on big-endian hardware. Please comment, Carl Eugen From 283fbd058772b40848eae48191d1d5faa5b543d5 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 23 Dec 2018 01:34:55 +0100 Subject: [PATCH] lavf/vividas: Support demuxing on big-endian hardware.

Re: [FFmpeg-devel] avformat/hls.c: Fix memory leak

2018-12-22 Thread Steven Liu
Valery Kot 于2018年12月22日周六 下午10:54写道: > > Ping... > Any maintainer willing to review/push straightforward one-liner patch? > > > Thus 59MB leak in an hour! And keeps growing... Testing. will response after one or two days, you can attention the comment by Derek, Thanks Valery Steven > > __