[FFmpeg-devel] [PATCH v8 1/2] lavc, doc, configure: add libxavs2 video encoder wrapper

2018-09-09 Thread hwren
Signed-off-by: hwren --- Changelog | 1 + configure | 4 + doc/encoders.texi | 49 doc/general.texi | 14 +++ libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/libxavs2.c | 300 ++

[FFmpeg-devel] [PATCH v8 2/2] lavf: add raw avs2 muxer

2018-09-09 Thread hwren
Signed-off-by: hwren --- libavformat/allformats.c | 1 + libavformat/rawenc.c | 13 + 2 files changed, 14 insertions(+) diff --git a/libavformat/allformats.c b/libavformat/allformats.c index adcc8d9..c17cdc2 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@

Re: [FFmpeg-devel] [PATCH v7 1/2] lavc, doc, configure: add libxavs2 video encoder wrapper

2018-09-09 Thread Huiwen Ren
At 2018-09-10 02:01:32, "Mark Thompson" wrote: >On 06/09/18 14:58, hwren wrote: >> Signed-off-by: hwren >> --- >> Changelog | 1 + >> configure | 4 + >> doc/encoders.texi | 41 +++ >> doc/general.texi | 14 +++ >> libavcodec/Makefile|

Re: [FFmpeg-devel] [PATCH] frame: Simplify the video allocation

2018-09-09 Thread Michael Niedermayer
On Thu, Sep 06, 2018 at 08:04:02PM -0300, James Almer wrote: > On 9/6/2018 7:26 PM, Michael Niedermayer wrote: > > On Thu, Sep 06, 2018 at 01:10:31PM -0300, James Almer wrote: > >> On 9/4/2018 5:09 PM, Michael Niedermayer wrote: > >>> On Mon, Sep 03, 2018 at 10:29:13AM -0300, James Almer wrote: > >

[FFmpeg-devel] [PATCH] tools: add target_dec_fate.sh

2018-09-09 Thread Michael Niedermayer
Script to download and test ossfuzz testcases This also includes a list of such testcases. I intend to subsequently fill this list with the cases we have fixed in the past Signed-off-by: Michael Niedermayer --- tools/target_dec_fate.list | 6 tools/target_dec_fate.sh | 62 +++

Re: [FFmpeg-devel] [PATCH 0/5] Support for Decklink output of EIA-708 and AFD

2018-09-09 Thread Devin Heitmueller
Hi James, > Shouldn't this new packet side data be handled in libavcodec/decode.c > ff_decode_frame_props() as well? I have a patch which does this as part of a patch series which adds AFD parsing to decklink capture, ensures it gets preserved in ff_decode_frame_props, and encodes the resulting A

Re: [FFmpeg-devel] [PATCH 0/5] Support for Decklink output of EIA-708 and AFD

2018-09-09 Thread Devin Heitmueller
On Sun, Sep 9, 2018 at 4:59 PM, Marton Balint wrote: > Thanks, I applied patches 1-4. > >> decklink: Add support for output of Active Format Description (AFD) > > > Regarding this one, I noticed you always set the AFD in line 12. Are you > sure that it is OK to use line 12 for all resolutions?

Re: [FFmpeg-devel] [PATCH 2/3] lavc: Add coded bitstream read/write support for AV1

2018-09-09 Thread James Almer
On 9/9/2018 7:08 PM, Mark Thompson wrote: > --- > Against versions which people might have seen before: > * Removed all of the vestigial annex B support (not useful, we are going to > ensure that AVPackets in FFmpeg never hold annex B data). > * gm_params subexp parsing made sensible - it doesn't

Re: [FFmpeg-devel] [PATCH 1/3] libaomenc: Add support for tiles

2018-09-09 Thread Mark Thompson
On 09/09/18 23:08, Mark Thompson wrote: > Adds an option to specify the number of tile rows and columns, then uses > equal-sized tiles to fill the frame. > --- > Useful for testing to make arbitrary arrangements of tiles, though the > requirement to set the superblock size for the whole stream at

[FFmpeg-devel] [PATCH 3/3] lavc: Add AV1 metadata bitstream filter

2018-09-09 Thread Mark Thompson
Can adjust colour and timing information. --- A simple start to the bsf - metadata support still todo. configure | 1 + libavcodec/Makefile| 1 + libavcodec/av1_metadata_bsf.c | 267 + libavcodec/bitstream_filters.c | 1 + 4

[FFmpeg-devel] [PATCH 1/3] libaomenc: Add support for tiles

2018-09-09 Thread Mark Thompson
Adds an option to specify the number of tile rows and columns, then uses equal-sized tiles to fill the frame. --- Useful for testing to make arbitrary arrangements of tiles, though the requirement to set the superblock size for the whole stream at the top level rather than letting it be set dynam

Re: [FFmpeg-devel] [PATCH 0/5] Support for Decklink output of EIA-708 and AFD

2018-09-09 Thread James Almer
On 9/9/2018 5:59 PM, Marton Balint wrote: > > > On Fri, 7 Sep 2018, Devin Heitmueller wrote: > >> The following patches add support for output of 708 and AFD over >> the Decklink SDI interface.  This series is a subset of a series >> submitted in early January, with the hope of getting the less

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-09 Thread Marton Balint
On Sun, 9 Sep 2018, Nicolas George wrote: Marton Balint (2018-09-09): And finally applied. If Nicolas or anybody can provide some pointers on how to get rid of the extra frame queue, then I will be more than happy to work on it. I am sorry, I am currently having a very annoying trouble with

Re: [FFmpeg-devel] [PATCH] avfilter: add nvidia NPP based transpose filter

2018-09-09 Thread Michael Niedermayer
On Sun, Sep 09, 2018 at 01:07:57PM +0200, Timo Rothenpieler wrote: > From: Roman Arzumanyan > > Signed-off-by: Timo Rothenpieler > --- > configure | 5 +- > doc/filters.texi | 42 +++ > libavfilter/Makefile | 1 + > libavfilter/allfilters.c

Re: [FFmpeg-devel] [PATCH 0/5] Support for Decklink output of EIA-708 and AFD

2018-09-09 Thread Marton Balint
On Fri, 7 Sep 2018, Devin Heitmueller wrote: The following patches add support for output of 708 and AFD over the Decklink SDI interface. This series is a subset of a series submitted in early January, with the hope of getting the less controversial parts merged upstream. Note compared to th

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-09 Thread Nicolas George
Marton Balint (2018-09-09): > And finally applied. If Nicolas or anybody can provide some pointers on how > to get rid of the extra frame queue, then I will be more than happy to work > on it. I am sorry, I am currently having a very annoying trouble with my eye which makes it easy to miss importa

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-09 Thread Paul B Mahol
On 9/9/18, Marton Balint wrote: > > 2018.08.25. 20:35 keltezessel, Marton Balint irta: >> To delay filtering until a given wallclock timestamp. >> >> Signed-off-by: Marton Balint >> --- >> doc/filters.texi | 36 ++ >> libavfilter/Makefile | 2

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-09 Thread Marton Balint
2018.08.25. 20:35 keltezéssel, Marton Balint írta: To delay filtering until a given wallclock timestamp. Signed-off-by: Marton Balint ---   doc/filters.texi |  36 ++   libavfilter/Makefile |   2 +   libavfilter/allfilters.c |   2 +   libavfilter/f_cue.c  | 182 +++

Re: [FFmpeg-devel] [PATCH] avfilter/vf_framerate: switch to activate

2018-09-09 Thread Marton Balint
On Wed, 5 Sep 2018, Marton Balint wrote: On Tue, 28 Aug 2018, Marton Balint wrote: Signed-off-by: Marton Balint --- libavfilter/vf_framerate.c | 119 - 1 file changed, 63 insertions(+), 56 deletions(-) Ping, will push soon. Pushed. Regar

Re: [FFmpeg-devel] [PATCH 2/2] avutil/file: allow mapping 0 byte files with av_file_map

2018-09-09 Thread Marton Balint
On Fri, 7 Sep 2018, Michael Niedermayer wrote: On Thu, Sep 06, 2018 at 08:58:37PM +0200, Marton Balint wrote: Signed-off-by: Marton Balint --- libavutil/file.c | 8 libavutil/file.h | 2 ++ 2 files changed, 10 insertions(+) probably ok Thanks, applied. Regards, Marton

Re: [FFmpeg-devel] [PATCH] avdevice/decklink_enc: add support for setting duplex mode

2018-09-09 Thread Marton Balint
On Thu, 6 Sep 2018, Marton Balint wrote: Signed-off-by: Marton Balint --- doc/outdevs.texi | 4 libavdevice/decklink_enc.cpp | 1 + libavdevice/decklink_enc_c.c | 4 libavdevice/version.h| 2 +- 4 files changed, 10 insertions(+), 1 deletion(-) Applied. Regards, Mar

Re: [FFmpeg-devel] [PATCH 2/2] Add FATE test for QT format audio descriptors in MP4

2018-09-09 Thread Derek Buitenhuis
On 07/09/2018 17:09, Michael Niedermayer wrote: > tested on linux x86-32/64, mingw32/64, and qemu arm/mips > all work fine Pushed, thanks. - Derek ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v7 1/2] lavc, doc, configure: add libxavs2 video encoder wrapper

2018-09-09 Thread Mark Thompson
On 06/09/18 14:58, hwren wrote: > Signed-off-by: hwren > --- > Changelog | 1 + > configure | 4 + > doc/encoders.texi | 41 +++ > doc/general.texi | 14 +++ > libavcodec/Makefile| 1 + > libavcodec/allcodecs.c | 1 + > libavcodec/libxavs2.c

Re: [FFmpeg-devel] [PATCH v6 1/2] lavc, doc, configure: add libxavs2 video encoder wrapper

2018-09-09 Thread Mark Thompson
On 06/09/18 14:46, Huiwen Ren wrote: > At 2018-09-06 08:43:05, "Mark Thompson" wrote: >> On 05/09/18 14:38, hwren wrote: >>> +{ "i_initial_qp", "Quantization parameter" , >>> OFFSET(i_initial_qp), AV_OPT_TYPE_INT, {.i64 = 34 }, 1, 63, VE }, >> >> If I understand w

Re: [FFmpeg-devel] [PATCH]configure: Do not use -fomit-frame-pointer on sparc

2018-09-09 Thread Carl Eugen Hoyos
2018-09-09 2:39 GMT+02:00, Michael Niedermayer : > On Sun, Sep 09, 2018 at 01:03:36AM +0200, Carl Eugen Hoyos wrote: >> Hi! >> >> Attached patch fixes many warnings when compiling for sparc. >> >> Please comment, Carl Eugen > >> configure |2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-)

[FFmpeg-devel] [PATCH] avfilter: add nvidia NPP based transpose filter

2018-09-09 Thread Timo Rothenpieler
From: Roman Arzumanyan Signed-off-by: Timo Rothenpieler --- configure | 5 +- doc/filters.texi | 42 +++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/version.h | 2 +- libavfilter/vf_transpose_npp.c

Re: [FFmpeg-devel] [PATCH] avfilter: add nvidia NPP based transpose filter

2018-09-09 Thread Michael Niedermayer
On Sun, Sep 09, 2018 at 11:31:49AM +0200, Timo Rothenpieler wrote: > On 9/9/2018 2:12 AM, Michael Niedermayer wrote: > >On Sat, Sep 08, 2018 at 03:49:29PM +0200, Timo Rothenpieler wrote: > >>From: Roman Arzumanyan > >> > >>Signed-off-by: Timo Rothenpieler > >>--- > >>I'm not overly a fan of a rot

Re: [FFmpeg-devel] [PATCH] avfilter: add nvidia NPP based transpose filter

2018-09-09 Thread Timo Rothenpieler
On 9/9/2018 2:12 AM, Michael Niedermayer wrote: On Sat, Sep 08, 2018 at 03:49:29PM +0200, Timo Rothenpieler wrote: From: Roman Arzumanyan Signed-off-by: Timo Rothenpieler --- I'm not overly a fan of a rotate filter that only support 90° angles either. So here's my modified version of the orig

[FFmpeg-devel] [PATCH] avcodec/lagarith: switch to planar rgb

2018-09-09 Thread Paul B Mahol
Speed goes from 363 fps to 428 fps for 640x480 video. Signed-off-by: Paul B Mahol --- libavcodec/lagarith.c | 108 +++- tests/ref/fate/lagarith-red | 50 +-- tests/ref/fate/lagarith-rgb24 | 8 +- tests/ref/fate/lagarith-ticke