[FFmpeg-devel] [PATCH V2 1/2] lavf/qsv: suppress code scan complain

2018-07-03 Thread Zhong Li
Suppress the complain "variables 'handle' is used but maybe uninitialized". Signed-off-by: Zhong Li --- libavfilter/qsvvpp.c | 5 + libavfilter/vf_deinterlace_qsv.c | 5 + libavfilter/vf_scale_qsv.c | 5 + 3 files changed, 15 insertions(+) diff --git a/libavfilter/

[FFmpeg-devel] [PATCH 2/2] lavc/qsv: handle MFX_FRAMETYPE_UNKNOWN case

2018-07-03 Thread Zhong Li
Signed-off-by: Zhong Li --- libavcodec/qsv.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavcodec/qsv.c b/libavcodec/qsv.c index 3ff4f2c..bb0d795 100644 --- a/libavcodec/qsv.c +++ b/libavcodec/qsv.c @@ -198,7 +198,7 @@ int ff_qsv_find_surface_idx(QSVFramesContext *ct

Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix

2018-07-03 Thread Li, Zhong
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Yuri Palich > Sent: Friday, March 2, 2018 7:55 PM > To: ffmpeg-devel > Subject: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix > > From 7056d06412214bd601afb4b423d20ab6100e6ac

[FFmpeg-devel] [PATCH] libavformat/rtpproto, libavformat/rtsp: receive multicast rtp input

2018-07-03 Thread UsingtcNower
Signed-off-by: UsingtcNower --- libavformat/rtpproto.c | 20 +++- libavformat/rtsp.c | 16 +++- libavformat/rtsp.h | 5 + 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index c01d9ce..6bb0324

[FFmpeg-devel] [PATCH 1/2] avcodec/utils: report insane channel count errors

2018-07-03 Thread Marton Balint
More than 64 is not *that* insane, so let's report the error at least. Signed-off-by: Marton Balint --- libavcodec/utils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 59d41ccbb6..4ac73fcd92 100644 --- a/libavcodec/utils.c +++ b/libavcodec/uti

[FFmpeg-devel] [PATCH 2/2] avcodec/internal: increase FF_SANE_NB_CHANNELS to 256

2018-07-03 Thread Marton Balint
This was reduced from 128 in libav commit 192f1984b1a93aa08af053b8f9ab4950f307bd5d, but since we support unknown channel layouts, we can increase this limit. Fixes ticket #6332. Signed-off-by: Marton Balint --- libavcodec/internal.h | 2 +- libavcodec/version.h | 2 +- 2 files changed, 2 inser

Re: [FFmpeg-devel] [PATCH 1/3] lavc: add ATRAC9 ID and description

2018-07-03 Thread Rostislav Pehlivanov
On 2 July 2018 at 14:21, Moritz Barsnick wrote: > On Sat, Jun 30, 2018 at 08:44:50 +0100, Rostislav Pehlivanov wrote: > > --- > > libavcodec/avcodec.h| 1 + > > libavcodec/codec_desc.c | 7 +++ > > libavcodec/version.h| 2 +- > > 3 files changed, 9 insertions(+), 1 deletion(-) > > >

Re: [FFmpeg-devel] [PATCH 1/3] lavc: add ATRAC9 ID and description

2018-07-03 Thread Moritz Barsnick
On Tue, Jul 03, 2018 at 11:45:20 +0100, Rostislav Pehlivanov wrote: > On 2 July 2018 at 14:21, Moritz Barsnick wrote: > > Do you need to add a note to doc/APIchanges? > No, in case you haven't noticed we don't advertise new flags there, that > would just spam the list with unimportant for API user

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adds ESPCN super resolution filter merged with SRCNN filter.

2018-07-03 Thread Gyan Doshi
On 03-07-2018 12:49 AM, Jean-Baptiste Kempf wrote: On Mon, 2 Jul 2018, at 20:52, Pedro Arthur wrote: This code is not open source, and is not compatible with LGPLv2.1: "If you use/adapt our code in your work (either as a stand-alone tool or as a component of any algorithm), you need to ap

[FFmpeg-devel] [PATCH] avcodec/videotoolboxenc: fix undefined behavior with rc_max_rate=0

2018-07-03 Thread Thomas Guillem
On macOS, a zero rc_max_rate cause an error from VTSessionSetProperty(kVTCompressionPropertyKey_DataRateLimits). on iOS (depending on device/version), a zero rc_max_rate cause invalid arguments from the vtenc_output_callback after few frames and then a crash within the VideoToolbox library. --- l

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adds ESPCN super resolution filter merged with SRCNN filter.

2018-07-03 Thread Daniel Oberhoff
If I may pitch in: why not separate issues? I could imagine a generic convolutional nn filter which gets given topology and weights via some config file. Then provide files separately for this particular trained network. Gruß! Daniel Oberhoff > Am 03.07.2018 um 14:11 schrieb Gyan Doshi : > >

Re: [FFmpeg-devel] [PATCH 3/3] lavc: implement an ATRAC9 decoder

2018-07-03 Thread Rostislav Pehlivanov
On 1 July 2018 at 13:27, Carl Eugen Hoyos wrote: > 2018-07-01 13:45 GMT+02:00, Rostislav Pehlivanov : > > > Here's the last patch which fixes the lack of timestamps. Seems > > like what's done for atrac3p is enough. > > You should bump some version number for the new feature, I believe > we have

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adds ESPCN super resolution filter merged with SRCNN filter.

2018-07-03 Thread Pedro Arthur
2018-07-03 12:25 GMT-03:00 Daniel Oberhoff : > If I may pitch in: why not separate issues? I could imagine a generic > convolutional nn filter which gets given topology and weights via some config > file. Then provide files separately for this particular trained network. That's more or less what

Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 10:55 GMT+02:00, Li, Zhong : >> -Original Message- >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf >> Of Yuri Palich >> Sent: Friday, March 2, 2018 7:55 PM >> To: ffmpeg-devel >> Subject: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix >>

Re: [FFmpeg-devel] [PATCH 3/3] lavc: implement an ATRAC9 decoder

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 17:43 GMT+02:00, Rostislav Pehlivanov : > On 1 July 2018 at 13:27, Carl Eugen Hoyos wrote: > >> 2018-07-01 13:45 GMT+02:00, Rostislav Pehlivanov : >> >> > Here's the last patch which fixes the lack of timestamps. Seems >> > like what's done for atrac3p is enough. >> >> You should bump s

[FFmpeg-devel] [PATCH v2 2/2] lavfi/vf_avgblur_opencl: remove useless clFinish().

2018-07-03 Thread Ruiling Song
The very last clFinish() should be ok. Signed-off-by: Ruiling Song --- libavfilter/vf_avgblur_opencl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavfilter/vf_avgblur_opencl.c b/libavfilter/vf_avgblur_opencl.c index bc6bcab..99ed1ca 100644 --- a/libavfilter/vf_avgblur_opencl.c +++ b/li

[FFmpeg-devel] [PATCH v2 1/2] lavfi/opencl: add macro for opencl error handling.

2018-07-03 Thread Ruiling Song
Signed-off-by: Ruiling Song --- libavfilter/opencl.h| 11 + libavfilter/vf_avgblur_opencl.c | 45 +-- libavfilter/vf_overlay_opencl.c | 29 +-- libavfilter/vf_program_opencl.c | 14 ++- libavfilter/vf_tonemap_opencl.c

Re: [FFmpeg-devel] [PATCH 1/2] lavfi/opencl: add macro for opencl error handling.

2018-07-03 Thread Song, Ruiling
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Mark Thompson > Sent: Monday, July 2, 2018 3:40 PM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/2] lavfi/opencl: add macro for opencl > error handling. > > On 02/07/1

Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix

2018-07-03 Thread Hendrik Leppkes
On Tue, Jul 3, 2018 at 10:55 AM Li, Zhong wrote: > > > -Original Message- > > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > > Of Yuri Palich > > Sent: Friday, March 2, 2018 7:55 PM > > To: ffmpeg-devel > > Subject: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/t

Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 20:15 GMT+02:00, Hendrik Leppkes : > On Tue, Jul 3, 2018 at 10:55 AM Li, Zhong wrote: >> >> > -Original Message- >> > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf >> > Of Yuri Palich >> > Sent: Friday, March 2, 2018 7:55 PM >> > To: ffmpeg-devel >> > Su

Re: [FFmpeg-devel] [PATCH] avcodec/videotoolboxenc: fix undefined behavior with rc_max_rate=0

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 17:05 GMT+02:00, Thomas Guillem : > On macOS, a zero rc_max_rate cause an error from > VTSessionSetProperty(kVTCompressionPropertyKey_DataRateLimits). > > on iOS (depending on device/version), a zero rc_max_rate cause invalid > arguments from the vtenc_output_callback after few frames an

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adds ESPCN super resolution filter merged with SRCNN filter.

2018-07-03 Thread Carl Eugen Hoyos
2018-07-02 19:55 GMT+02:00, Jean-Baptiste Kempf : > Hello, > > On Mon, 2 Jul 2018, at 19:37, Pedro Arthur wrote: >> 2018-07-02 14:23 GMT-03:00 Jean-Baptiste Kempf : >> > On Mon, 2 Jul 2018, at 19:12, Pedro Arthur wrote: >> >> 2018-07-02 14:02 GMT-03:00 Jean-Baptiste Kempf : >> >> > On Mon, 2 Jul 20

Re: [FFmpeg-devel] [PATCH] avformat/avformat.h: Add av_stream_remove_side_data.

2018-07-03 Thread Jacob Trimble
On Mon, Jul 2, 2018 at 6:07 PM Michael Niedermayer wrote: > > On Mon, Jun 25, 2018 at 04:03:32PM -0700, Jacob Trimble wrote: > > Signed-off-by: Jacob Trimble > > --- > > libavformat/avformat.h | 8 > > libavformat/utils.c| 11 +++ > > 2 files changed, 19 insertions(+) > > >

Re: [FFmpeg-devel] [PATCH 3/3] lavc: implement an ATRAC9 decoder

2018-07-03 Thread Rostislav Pehlivanov
On 3 July 2018 at 18:28, Carl Eugen Hoyos wrote: > 2018-07-03 17:43 GMT+02:00, Rostislav Pehlivanov : > > On 1 July 2018 at 13:27, Carl Eugen Hoyos wrote: > > > >> 2018-07-01 13:45 GMT+02:00, Rostislav Pehlivanov : > >> > >> > Here's the last patch which fixes the lack of timestamps. Seems > >>

Re: [FFmpeg-devel] [PATCH 2/2] fate: add decoder test for ATRAC9

2018-07-03 Thread Carl Eugen Hoyos
2018-07-01 14:51 GMT+02:00, James Almer : > On 7/1/2018 8:46 AM, Rostislav Pehlivanov wrote: >> Signed-off-by: Rostislav Pehlivanov >> --- >> tests/fate/atrac.mak | 13 - >> 1 file changed, 12 insertions(+), 1 deletion(-) >> >> diff --git a/tests/fate/atrac.mak b/tests/fate/atrac.mak

Re: [FFmpeg-devel] [PATCH V2 1/2] lavf/qsv: suppress code scan complain

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 10:29 GMT+02:00, Zhong Li : > Suppress the complain "variables 'handle' is used but maybe > uninitialized". > > Signed-off-by: Zhong Li > --- > libavfilter/qsvvpp.c | 5 + > libavfilter/vf_deinterlace_qsv.c | 5 + > libavfilter/vf_scale_qsv.c | 5 + > 3 fi

[FFmpeg-devel] [PATCH]configure: toolchain-tsan does not need -fPIE

2018-07-03 Thread Carl Eugen Hoyos
Hi! Attached patch fixes compilation for some combinations of kernel and gcc, I tested that neither gcc-tsan nor clang-tsan need -fPIE. Please comment, Carl Eugen From 4854b07ee346374491c98ec1c5d10122ba2f1b5e Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 3 Jul 2018 22:17:06 +0200 Su

Re: [FFmpeg-devel] [PATCH v6 1/4] lavc,doc: add avs2 codec

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 6:22 GMT+02:00, hwren : > Signed-off-by: hwren > --- > doc/APIchanges | 3 +++ > libavcodec/avcodec.h| 1 + > libavcodec/codec_desc.c | 7 +++ > libavcodec/version.h| 4 ++-- > 4 files changed, 13 insertions(+), 2 deletions(-) > > diff --git a/doc/APIchanges b/doc/

Re: [FFmpeg-devel] [PATCH v3 3/3] aadec: fix seeking in mp3 content

2018-07-03 Thread Karsten Otto
TL;DR: I will drop patch 3/3, may rather spend some time investigating why "ff ee 47 9d“ passes the mp3 header parser. Also, the aa file "index" cannot be used for frame or chapter detection, unfortunately. More details inline below. > Am 03.07.2018 um 02:32 schrieb Michael Niedermayer : > > Si

Re: [FFmpeg-devel] [PATCH v6 4/4] lavc, doc, configure: add avs2 video decoder

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 6:22 GMT+02:00, hwren : > +- AVS2 video decoder via libdavs2 Is this related to ticket #6948 or is this another codec? Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v3 3/3] aadec: fix seeking in mp3 content

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 22:25 GMT+02:00, Karsten Otto : > It took a closer look at what happens when I hear a BLEEP: The packet begins > with a partial frame, starting with the byte sequence "ff ee 47 9d“. > Unfortunately, > the mp3 parser indeed accepts this as a valid mp3 header, causing the noise. > By look

Re: [FFmpeg-devel] [PATCH 1/5] avformat/mxfdec: add support for clip wrapped essences

2018-07-03 Thread Marton Balint
On Mon, 25 Jun 2018, Marton Balint wrote: Also use common code with opAtom. Fixes ticket #2776. Partially fixes ticket #5671. Fixes ticket #5866. Will push the series soon. Regards, Marton ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org htt

[FFmpeg-devel] [PATCH 1/6] avformat/mms: Add missing chunksize check

2018-07-03 Thread Michael Niedermayer
Fixes: out of array read Fixes: mms-crash-01b6c5d85f9d9f40f4e879896103e9f5b222816a Found-by: Paul Ch Signed-off-by: Michael Niedermayer --- libavformat/mms.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/mms.c b/libavformat/mms.c index 17fa76a8d4..036046dc37 100644 --- a

[FFmpeg-devel] [PATCH 4/6] avformat/rmdec: Do not pass mime type in rm_read_multi() to ff_rm_read_mdpr_codecdata()

2018-07-03 Thread Michael Niedermayer
Fixes: use after free() Fixes: rmdec-crash-ffe85b4cab1597d1cfea6955705e53f1f5c8a362 Found-by: Paul Ch Signed-off-by: Michael Niedermayer --- libavformat/rmdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index ac61723c66..021600

[FFmpeg-devel] [PATCH 3/6] avformat/asfdec_o: Check size_bmp more fully

2018-07-03 Thread Michael Niedermayer
Fixes: integer overflow and out of array access Fixes: asfo-crash-46080c4341572a7137a162331af77f6ded45cbd7 Found-by: Paul Ch Signed-off-by: Michael Niedermayer --- libavformat/asfdec_o.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/asfdec_o.c b/libavformat/a

[FFmpeg-devel] [PATCH 2/6] avformat/mxfdec: Fix av_log context

2018-07-03 Thread Michael Niedermayer
Fixes: out of array access Fixes: mxf-crash-1c2e59bf07a34675bfb3ada5e1ec22fa9f38f923 Found-by: Paul Ch 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 8c417aea26..7c

Re: [FFmpeg-devel] [PATCH v3 3/3] aadec: fix seeking in mp3 content

2018-07-03 Thread Karsten Otto
> Am 03.07.2018 um 22:29 schrieb Carl Eugen Hoyos : > > 2018-07-03 22:25 GMT+02:00, Karsten Otto : > >> It took a closer look at what happens when I hear a BLEEP: The packet begins >> with a partial frame, starting with the byte sequence "ff ee 47 9d“. >> Unfortunately, >> the mp3 parser indeed

[FFmpeg-devel] [PATCH 6/6] avcodec/mpeg4videodec: Check for bitstream end in read_quant_matrix_ext()

2018-07-03 Thread Michael Niedermayer
Fixes: out of array read Fixes: asff-crash-0e53d0dc491dfdd507530b66562812fbd4c36678 Found-by: Paul Ch Signed-off-by: Michael Niedermayer --- libavcodec/mpeg4videodec.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4vi

[FFmpeg-devel] [PATCH 5/6] avformat/pva: Check for EOF before retrying in read_part_of_packet()

2018-07-03 Thread Michael Niedermayer
Fixes: Infinite loop Fixes: pva-4b1835dbc2027bf3c567005dcc78e85199240d06 Found-by: Paul Ch Signed-off-by: Michael Niedermayer --- libavformat/pva.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/pva.c b/libavformat/pva.c index 16381db905..04ae8e2800 100644 --- a/libavformat

Re: [FFmpeg-devel] [PATCH 1/5] avformat/mxfdec: add support for clip wrapped essences

2018-07-03 Thread Tomas Härdin
tis 2018-07-03 klockan 22:36 +0200 skrev Marton Balint: > > On Mon, 25 Jun 2018, Marton Balint wrote: > > > Also use common code with opAtom. > > > > Fixes ticket #2776. > > Partially fixes ticket #5671. > > Fixes ticket #5866. > > Will push the series soon. Sorry, should have looked at this e

Re: [FFmpeg-devel] [PATCH 2/6] avformat/mxfdec: Fix av_log context

2018-07-03 Thread Tomas Härdin
tis 2018-07-03 klockan 23:05 +0200 skrev Michael Niedermayer: > Fixes: out of array access > Fixes: mxf-crash-1c2e59bf07a34675bfb3ada5e1ec22fa9f38f923 > > > Found-by: Paul Ch > > Signed-off-by: Michael Niedermayer > --- >  libavformat/mxfdec.c | 2 +- >  1 file changed, 1 insertion(+), 1 deletion

Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix

2018-07-03 Thread Hendrik Leppkes
On Tue, Jul 3, 2018 at 8:52 PM Carl Eugen Hoyos wrote: > > 2018-07-03 20:15 GMT+02:00, Hendrik Leppkes : > > On Tue, Jul 3, 2018 at 10:55 AM Li, Zhong wrote: > >> > >> > -Original Message- > >> > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > >> > Of Yuri Palich >

Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 23:27 GMT+02:00, Hendrik Leppkes : > QSV works fine for me. No, sorry, you misunderstood: Yuri's and Zhong's question was not if it works for you but why it does not work for them (one representing Intel afaict). Carl Eugen ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 6/6] avcodec/mpeg4videodec: Check for bitstream end in read_quant_matrix_ext()

2018-07-03 Thread Carl Eugen Hoyos
2018-07-03 23:05 GMT+02:00, Michael Niedermayer : > Fixes: out of array read > Fixes: asff-crash-0e53d0dc491dfdd507530b66562812fbd4c36678 > > Found-by: Paul Ch > Signed-off-by: Michael Niedermayer > --- > libavcodec/mpeg4videodec.c | 11 ++- > 1 file changed, 10 insertions(+), 1 deletion

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adds ESPCN super resolution filter merged with SRCNN filter.

2018-07-03 Thread Jean-Baptiste Kempf
On Tue, 3 Jul 2018, at 20:59, Carl Eugen Hoyos wrote: > How is this case different from many arrays in libavcodec/*data*? It is very different: the arrays in *data* come either from a mathematical computation or a spec. Else, as some Debian Developer said: "It looks like code hidden in an unsign

Re: [FFmpeg-devel] [PATCH 3/3] avformat/mov: Expose encryption info to the app.

2018-07-03 Thread Michael Niedermayer
On Mon, Jul 02, 2018 at 09:55:08AM -0700, Jacob Trimble wrote: > On Mon, Jun 25, 2018 at 10:59 AM Jacob Trimble wrote: > > > > Rebased and updated to handle multiple PSSH atoms. PTAL. > > > > On Tue, Jan 9, 2018 at 10:28 AM Jacob Trimble wrote: > >> > >> On Mon, Jan 8, 2018 at 5:23 PM, Carl Euge

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/jpeg2000dec: Check that there are enough bytes for all tiles

2018-07-03 Thread Michael Niedermayer
On Mon, Jul 02, 2018 at 08:45:08PM +0200, Michael Niedermayer wrote: > Fixes: OOM > Fixes: > 8781/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-5810709081358336 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Signed-

Re: [FFmpeg-devel] [PATCH 2/2] fate: add decoder test for ATRAC9

2018-07-03 Thread Michael Niedermayer
On Tue, Jul 03, 2018 at 09:35:53PM +0200, Carl Eugen Hoyos wrote: > 2018-07-01 14:51 GMT+02:00, James Almer : > > On 7/1/2018 8:46 AM, Rostislav Pehlivanov wrote: > >> Signed-off-by: Rostislav Pehlivanov > >> --- > >> tests/fate/atrac.mak | 13 - > >> 1 file changed, 12 insertions(+),

Re: [FFmpeg-devel] [PATCH 2/2] fate: add decoder test for ATRAC9

2018-07-03 Thread Carl Eugen Hoyos
2018-07-04 1:09 GMT+02:00, Michael Niedermayer : > On Tue, Jul 03, 2018 at 09:35:53PM +0200, Carl Eugen Hoyos wrote: >> 2018-07-01 14:51 GMT+02:00, James Almer : >> > On 7/1/2018 8:46 AM, Rostislav Pehlivanov wrote: >> >> Signed-off-by: Rostislav Pehlivanov >> >> --- >> >> tests/fate/atrac.mak |

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adds ESPCN super resolution filter merged with SRCNN filter.

2018-07-03 Thread Carl Eugen Hoyos
2018-07-04 0:14 GMT+02:00, Jean-Baptiste Kempf : > On Tue, 3 Jul 2018, at 20:59, Carl Eugen Hoyos wrote: >> How is this case different from many arrays in libavcodec/*data*? > > It is very different: the arrays in *data* come either from a > mathematical computation or a spec. (Apart from: Free an

Re: [FFmpeg-devel] [PATCH] avformat/avformat.h: Add av_stream_remove_side_data.

2018-07-03 Thread Michael Niedermayer
On Tue, Jul 03, 2018 at 12:14:19PM -0700, Jacob Trimble wrote: > On Mon, Jul 2, 2018 at 6:07 PM Michael Niedermayer > wrote: > > > > On Mon, Jun 25, 2018 at 04:03:32PM -0700, Jacob Trimble wrote: > > > Signed-off-by: Jacob Trimble > > > --- > > > libavformat/avformat.h | 8 > > > libav

Re: [FFmpeg-devel] [PATCH 6/6] avcodec/mpeg4videodec: Check for bitstream end in read_quant_matrix_ext()

2018-07-03 Thread Michael Niedermayer
On Tue, Jul 03, 2018 at 11:52:59PM +0200, Carl Eugen Hoyos wrote: > 2018-07-03 23:05 GMT+02:00, Michael Niedermayer : > > Fixes: out of array read > > Fixes: asff-crash-0e53d0dc491dfdd507530b66562812fbd4c36678 > > > > Found-by: Paul Ch > > Signed-off-by: Michael Niedermayer > > --- > > libavcode

Re: [FFmpeg-devel] [PATCH v3 3/3] aadec: fix seeking in mp3 content

2018-07-03 Thread Michael Niedermayer
On Tue, Jul 03, 2018 at 10:25:36PM +0200, Karsten Otto wrote: > TL;DR: I will drop patch 3/3, may rather spend some time investigating why > "ff ee 47 9d“ passes the mp3 header parser. Also, the aa file "index" cannot > be used for frame or chapter detection, unfortunately. > > More details inline

Re: [FFmpeg-devel] [PATCH V2 1/2] lavf/qsv: suppress code scan complain

2018-07-03 Thread Li, Zhong
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Carl Eugen Hoyos > Sent: Wednesday, July 4, 2018 4:16 AM > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] [PATCH V2 1/2] lavf/qsv: suppress code scan > complain

Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix

2018-07-03 Thread Li, Zhong
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Carl Eugen Hoyos > Sent: Wednesday, July 4, 2018 5:41 AM > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix > > 2

Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix

2018-07-03 Thread Li, Zhong
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Hendrik Leppkes > Sent: Wednesday, July 4, 2018 2:15 AM > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] [PATCH] https://trac.ffmpeg.org/ticket/7030 fix > > On