Re: [FFmpeg-devel] [PATCH v4 2/4] libavutils: Add parse_r helper for MIPS

2020-06-08 Thread Shiyou Yin
>-Original Message- >From: jiaxun.y...@flygoat.com [mailto:jiaxun.y...@flygoat.com] >Sent: Tuesday, June 9, 2020 2:03 AM >To: FFmpeg development discussions and patches; Shiyou Yin; 'FFmpeg >development discussions and >patches' >Subject: Re: [FFmpeg-devel] [PATCH v4 2/4] libavutils: Add

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

2020-06-08 Thread Brad Hards
>> --git a/libavcodec/packet.h b/libavcodec/packet.h index >> 41485f4527..48e0ccbaf0 100644 >> --- a/libavcodec/packet.h >> +++ b/libavcodec/packet.h >> @@ -282,6 +282,11 @@ enum AVPacketSideDataType { >> */ >> AV_PKT_DATA_DOVI_CONF, >> >> +/** >> + * This side data contains

[FFmpeg-devel] [PATCH] libavcodec/jpeg2000dec: Support for PPM marker

2020-06-08 Thread gautamramk
From: Gautam Ramakrishnan This patch adds support for PPM marker for JPEG2000 decoder. It allows the sample p1_03.j2k to be decoded. --- libavcodec/jpeg2000dec.c | 78 ++-- 1 file changed, 75 insertions(+), 3 deletions(-) diff --git

[FFmpeg-devel] [PATCH] configure: allow OpenSSL>=3.0.0 with GPL

2020-06-08 Thread rcombs
--- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 8569a60bf8..cbe8b25001 100755 --- a/configure +++ b/configure @@ -1731,7 +1731,6 @@ EXTERNAL_LIBRARY_GPL_LIST=" EXTERNAL_LIBRARY_NONFREE_LIST=" decklink libfdk_aac -

Re: [FFmpeg-devel] [PATCH] prompeg_write() must report data all was written

2020-06-08 Thread myp...@gmail.com
On Mon, Jun 8, 2020 at 7:03 PM Michael Niedermayer wrote: > > On Mon, Jun 08, 2020 at 04:56:04PM +0800, myp...@gmail.com wrote: > > On Tue, Apr 2, 2019 at 5:20 AM Michael Niedermayer > > wrote: > > > > > > On Sun, Mar 31, 2019 at 02:32:34AM +0100, David Holroyd wrote: > > > > Previously,

Re: [FFmpeg-devel] release/4.3

2020-06-08 Thread lance . lmwang
On Mon, Jun 08, 2020 at 11:38:15PM +, Daniel Loman wrote: > Let me know if there is anything I can do to help get this included in 4.3 :) Before included in 4.3, I think first it's had to be reviewed and accepted into master. I give my review comment for the patch. >

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

2020-06-08 Thread lance . lmwang
On Mon, Jun 01, 2020 at 02:23:23PM -0700, Daniel Loman wrote: > Added seperate side data field to allow adding per packet side data > message to support MISB 604 encoding > --- > libavcodec/avpacket.c | 1 + > libavcodec/h264_metadata_bsf.c | 116 +++-- >

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

2020-06-08 Thread 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 --- a/libavcodec/adpcmenc.c +++ b/libavcodec/adpcmenc.c

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

2020-06-08 Thread 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 @@ -31,8 +31,8 @@ #define

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

2020-06-08 Thread 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(-) diff --git a/Changelog b/Changelog

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

2020-06-08 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 2/7] avcodec/adpcm_ima_apm: prepare extradata handling for encoder

2020-06-08 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 3/7] avcodec: add adpcm_ima_apm encoder

2020-06-08 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 1/7] avformat/apm: prepare extradata handling for muxer

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

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

2020-06-08 Thread Zane van Iperen
Add support for encoding adpcm_ima_apm and muxing to apm. I was hoping to get this into the 4.3 release. Zane van Iperen (7): avformat/apm: prepare extradata handling for muxer avcodec/adpcm_ima_apm: prepare extradata handling for encoder avcodec: add adpcm_ima_apm encoder avformat: add

Re: [FFmpeg-devel] release/4.3

2020-06-08 Thread Daniel Loman
Let me know if there is anything I can do to help get this included in 4.3 :) From: ffmpeg-devel on behalf of Brad Hards Sent: Monday, June 8, 2020 4:14 PM To: 'FFmpeg development discussions and patches' Subject: Re: [FFmpeg-devel] release/4.3

[FFmpeg-devel] [PATCH] avcodec/libzvbi-teletextdec: fix txt_default_region limits

2020-06-08 Thread Marton Balint
Max region ID is 87. Also the region affects not only the G0 charset but G2 and the national subset as well. Signed-off-by: Marton Balint --- doc/decoders.texi| 2 +- libavcodec/libzvbi-teletextdec.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [FFmpeg-devel] [PATCH] avformat/fifo: add timeshift option to delay output

2020-06-08 Thread Marton Balint
On Mon, 8 Jun 2020, Marton Balint wrote: On Tue, 26 May 2020, Marton Balint wrote: Signed-off-by: Marton Balint --- doc/muxers.texi | 5 libavformat/fifo.c| 59 ++- libavformat/version.h | 2 +- 3 files changed, 64 insertions(+), 2

Re: [FFmpeg-devel] release/4.3

2020-06-08 Thread Brad Hards
My apologies for the broken link. http://ffmpeg.org/pipermail/ffmpeg-devel/2020-June/263793.html I have no association with the original author, but it’s a fairly small change (just exposes existing code) that helps compliance with MISB ST0604. That standard (available at

Re: [FFmpeg-devel] [PATCH] Add constants for MPEG-TS transport stream identifiers

2020-06-08 Thread Marton Balint
On Wed, 3 Jun 2020, Brad Hards wrote: Signed-off-by: Brad Hards --- libavformat/mpegts.h| 7 +++ libavformat/mpegtsenc.c | 16 2 files changed, 15 insertions(+), 8 deletions(-) Will apply, thanks. Regards, Marton diff --git a/libavformat/mpegts.h

Re: [FFmpeg-devel] release/4.3

2020-06-08 Thread Kieran O Leary
hi On Mon, Jun 8, 2020 at 10:17 PM Michael Niedermayer wrote: > Hi > > ive branched release/4.3, will make the 4.3 release from its HEAD in a > few days (maybe a week depending on comments from other developers or > any major issues) > > If theres any issue remaining which you want to work on

Re: [FFmpeg-devel] Error while using libopenjpeg

2020-06-08 Thread Carl Eugen Hoyos
Am Mo., 8. Juni 2020 um 06:16 Uhr schrieb Gautam Ramakrishnan : > The issue is that I am trying to implement PPM marker support. I want > to compare for bit exactness between libopenjpeg and the native > decoder. The colours usually look off sometimes while comparing the > native output and

Re: [FFmpeg-devel] release/4.3

2020-06-08 Thread Carl Eugen Hoyos
Am Di., 9. Juni 2020 um 00:39 Uhr schrieb Brad Hards : > > Is there any chance that > https://patchwork.ffmpeg.org/project/ffmpeg/patch/20200601212323.16757-1-dlo > m...@toyon.com/ can be included in that? The link that you did (not) provide gives a strong reason not to include the patch. Carl

Re: [FFmpeg-devel] [PATCH] Add picture attachment support to OGG Muxer

2020-06-08 Thread LRFLEW
>seems to break fate Ok, I spent some time looking into what's happening, and I've figured what's causing the failures. The issue isn't that it's producing *invalid* output, but that it's just *different* output. As I had said, I wrote this patch some time ago, so I had forgotten a decision

Re: [FFmpeg-devel] release/4.3

2020-06-08 Thread Brad Hards
Is there any chance that https://patchwork.ffmpeg.org/project/ffmpeg/patch/20200601212323.16757-1-dlo m...@toyon.com/ can be included in that? Brad ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] release/4.3

2020-06-08 Thread Michael Niedermayer
Hi ive branched release/4.3, will make the 4.3 release from its HEAD in a few days (maybe a week depending on comments from other developers or any major issues) If theres any issue remaining which you want to work on and fix+backport now is your last chance to get it into 4.3 Thanks --

Re: [FFmpeg-devel] [PATCH] Don't adjust start time for MP3 files; packets are not adjusted.

2020-06-08 Thread Michael Niedermayer
On Fri, May 29, 2020 at 03:36:47PM -0700, Dale Curtis wrote: > On Thu, May 28, 2020 at 1:33 PM Michael Niedermayer > wrote: > > > I dont really have an oppinion about start_time, its more the change in > > timestamps & duratiion on the output side which is whats user vissible > > and that looked

Re: [FFmpeg-devel] [PATCH v2] lavdevice: Add AudioToolbox output device.

2020-06-08 Thread Thilo Borgmann
Am 08.06.20 um 20:21 schrieb Nicolas George: > Thilo Borgmann (12020-06-08): >> v2 due to Nicolas remarks. One device, several formats. > > I cannot comment on appleisms, but here are a few general remarks: > >> From 64b100d7b4cfe780c273d6e7d8b940a8427cfdc9 Mon Sep 17 00:00:00 2001 >> From:

[FFmpeg-devel] [PATCH v3] lavdevice: Add AudioToolbox output device.

2020-06-08 Thread Thilo Borgmann
$subject, v3. -Thilo From c9002ece648aa59b4334efe9fea83d265d64e258 Mon Sep 17 00:00:00 2001 From: Thilo Borgmann Date: Mon, 8 Jun 2020 21:42:27 +0200 Subject: [PATCH] lavdevice: Add AudioToolbox output device. --- Changelog | 1 + configure | 3 +

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/pnm: Check scale

2020-06-08 Thread Michael Niedermayer
On Sat, Jun 06, 2020 at 06:03:47PM +0200, Michael Niedermayer wrote: > Fixes: division by zero > Fixes: > 22974/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PFM_fuzzer-627002709456 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/hcadec: Check or bound indexes

2020-06-08 Thread Michael Niedermayer
On Thu, May 14, 2020 at 09:05:23PM +0200, Michael Niedermayer wrote: > On Wed, May 13, 2020 at 10:42:15PM +0200, Michael Niedermayer wrote: > > This causes indexes into scale_conversion_table to wrap around, > > alternatively they > > could be clipped, the table be enlarged or we can error out. I

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/mpeg12dec: Fix got_output

2020-06-08 Thread Michael Niedermayer
On Mon, Jun 08, 2020 at 04:18:08PM +0100, Kieran Kunhya wrote: > On Sun, 7 Jun 2020 at 23:33, Michael Niedermayer > wrote: > > > On Sun, Jun 07, 2020 at 11:07:13PM +0100, Kieran Kunhya wrote: > > > Needs some more explanation IMO > > > > If you look at the code which sets the outputed picture >

Re: [FFmpeg-devel] [PATCH 3/7] tools/target_dec_fuzzer: enable mjpeg for tiff or tdsc

2020-06-08 Thread Michael Niedermayer
On Fri, Feb 07, 2020 at 02:48:27PM +0100, Michael Niedermayer wrote: > This is needed for fuzzing tiff/tdsc and should increase coverage > > Signed-off-by: Michael Niedermayer > --- > libavcodec/allcodecs.c| 1 + > tools/target_dec_fuzzer.c | 6 ++ > 2 files changed, 7 insertions(+)

Re: [FFmpeg-devel] [PATCH v4 1/2] libavcodec/libaomenc.c: Support gray input

2020-06-08 Thread James Zern
On Mon, Jun 8, 2020 at 2:56 AM Moritz Barsnick wrote: > > On Sun, May 10, 2020 at 00:59:25 +0900, Ryo Hirafuji wrote: > > I can create and send a new patch without these workaround lines, but of > > course, it will crash if the ffmpeg will be built with older versions of > > libaom. > > Actually,

Re: [FFmpeg-devel] [PATCH v2] lavdevice: Add AudioToolbox output device.

2020-06-08 Thread Nicolas George
Thilo Borgmann (12020-06-08): > v2 due to Nicolas remarks. One device, several formats. I cannot comment on appleisms, but here are a few general remarks: > From 64b100d7b4cfe780c273d6e7d8b940a8427cfdc9 Mon Sep 17 00:00:00 2001 > From: Thilo Borgmann > Date: Mon, 8 Jun 2020 13:04:11 +0200 >

Re: [FFmpeg-devel] [PATCH v4 2/4] libavutils: Add parse_r helper for MIPS

2020-06-08 Thread jiaxun.y...@flygoat.com
于 2020年6月8日 GMT+08:00 下午4:38:58, Shiyou Yin 写到: >>-Original Message- >>From: ffmpeg-devel-boun...@ffmpeg.org >>[mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of >>Jiaxun Yang >>Sent: Monday, June 8, 2020 11:30 AM >>To: ffmpeg-devel@ffmpeg.org >>Cc: yinshi...@loongson.cn; Jiaxun

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

2020-06-08 Thread James Almer
On 6/8/2020 10:46 AM, James Almer wrote: > On 6/8/2020 7:54 AM, Anton Khirnov wrote: >> Quoting Hendrik Leppkes (2020-06-08 12:42:08) >>> On Mon, Jun 8, 2020 at 12:22 PM Anton Khirnov wrote: This stops update_thread_context() from being called with frame threading, which causes

Re: [FFmpeg-devel] [PATCH] avformat/dashenc: use AVCodecContext timebase when computing missing bitrate

2020-06-08 Thread Przemysław Sobala
On Thu, Jun 4, 2020 at 3:13 PM Przemysław Sobala < przemyslaw.sob...@gmail.com> wrote: > On Thu, Jun 4, 2020 at 11:24 AM Jeyapal, Karthick > wrote: > >> >> On 6/4/20 1:29 PM, Przemysław Sobala wrote: >> > On Tue, Jun 2, 2020 at 10:19 AM Przemysław Sobala < >> > przemyslaw.sob...@gmail.com>

Re: [FFmpeg-devel] [PATCH v2] doc/utils: document the "s", "ms" and "us" suffixes for durations

2020-06-08 Thread Gyan Doshi
On 08-06-2020 09:09 pm, Moritz Barsnick wrote: These suffixes were introduced in 61c972384d311508d07f9360d196909e27195655 and completed in 8218249f1f04de65904f58519bde21948e5a0783. Signed-off-by: Moritz Barsnick --- doc/utils.texi | 6 -- 1 file changed, 4 insertions(+), 2

Re: [FFmpeg-devel] [PATCH] lavdevice: Add VideoToolbox output device.

2020-06-08 Thread Thilo Borgmann
Hi, Am 08.06.20 um 16:36 schrieb Devin Heitmueller: > On Sun, Jun 7, 2020 at 6:31 PM Thilo Borgmann wrote: >> >> >> Not sure if you don't mix it with Video screw me... >> For Audio, I cannot find another device handling more than one format in one >> device. >> I'd appreciate a better way

Re: [FFmpeg-devel] [PATCH] lavdevice: Add VideoToolbox output device.

2020-06-08 Thread Thilo Borgmann
Hi, Am 08.06.20 um 16:27 schrieb Nicolas George: > Thilo Borgmann (12020-06-08): >> How do you avoid the auto-scaler to be scaling to alsa's default >> format of pcm_s16 on the command line? > > We cannot, not with your original version, not with how alsa_enc does > and the new version. > >

Re: [FFmpeg-devel] [PATCH v2] avfilter/f_metadata: use AVBPrint API to remove buf size limitation

2020-06-08 Thread lance . lmwang
On Mon, Jun 08, 2020 at 05:32:57PM +0200, Nicolas George wrote: > lance.lmw...@gmail.com (12020-06-08): > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/f_metadata.c | 17 - > > 1 file changed, 12 insertions(+), 5 deletions(-) > > > > diff --git

[FFmpeg-devel] [PATCH v2] doc/utils: document the "s", "ms" and "us" suffixes for durations

2020-06-08 Thread Moritz Barsnick
These suffixes were introduced in 61c972384d311508d07f9360d196909e27195655 and completed in 8218249f1f04de65904f58519bde21948e5a0783. Signed-off-by: Moritz Barsnick --- doc/utils.texi | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/utils.texi b/doc/utils.texi index

Re: [FFmpeg-devel] [PATCH] lavdevice: Add VideoToolbox output device.

2020-06-08 Thread Devin Heitmueller
On Sun, Jun 7, 2020 at 6:31 PM Thilo Borgmann wrote: > > > Not sure if you don't mix it with Video screw me... > For Audio, I cannot find another device handling more than one format in one > device. > I'd appreciate a better way to do it than having N-devices... While not yet upstream, my

Re: [FFmpeg-devel] [PATCH v7 2/3] avdevice/lavfi: support the dumpgraph with options

2020-06-08 Thread Nicolas George
Marton Balint (12020-06-05): > I think it always depended on the fallout, we were never blindly strict > about this. I agree. And in this case, this option is quite obscure, and the function behind it even more. > I suggested the separate option for the options because otherwise you can't > do

Re: [FFmpeg-devel] [PATCH v2] avfilter/f_metadata: use AVBPrint API to remove buf size limitation

2020-06-08 Thread Nicolas George
lance.lmw...@gmail.com (12020-06-08): > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavfilter/f_metadata.c | 17 - > 1 file changed, 12 insertions(+), 5 deletions(-) > > diff --git a/libavfilter/f_metadata.c b/libavfilter/f_metadata.c > index 598257b..79515b7

Re: [FFmpeg-devel] [PATCH] avfilter/f_metadata: use AVBPrint API to remove buf size limitation

2020-06-08 Thread Nicolas George
lance.lmw...@gmail.com (12020-06-08): > For the print_file is void, so I haven't considered to add error > check, can we just print one error message if av_bprint_is_complete > checking failed? Assume the log goes to /dev/null. If there is an error, especially if there is a risk of data loss or

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/mpeg12dec: Fix got_output

2020-06-08 Thread Kieran Kunhya
On Sun, 7 Jun 2020 at 23:33, Michael Niedermayer wrote: > On Sun, Jun 07, 2020 at 11:07:13PM +0100, Kieran Kunhya wrote: > > Needs some more explanation IMO > > If you look at the code which sets the outputed picture > in slice_end() > if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) { >

Re: [FFmpeg-devel] [PATCH v2] doc/ffmpeg: remove reference to deprecated option

2020-06-08 Thread Gyan Doshi
On 08-06-2020 08:39 pm, Moritz Barsnick wrote: The "-deinterlace" was deprecated since d7edd35, over eight years ago. Refer to deinterlacing filters instead. Will apply. Thanks, Gyan Signed-off-by: Moritz Barsnick --- doc/ffmpeg.texi | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [FFmpeg-devel] [PATCH] avfilter/f_metadata: use AVBPrint API to remove buf size limitation

2020-06-08 Thread lance . lmwang
On Mon, Jun 08, 2020 at 04:02:22PM +0200, Nicolas George wrote: > lance.lmw...@gmail.com (12020-06-08): > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavfilter/f_metadata.c | 9 ++--- > > 1 file changed, 6 insertions(+), 3 deletions(-) > > > > diff --git

Re: [FFmpeg-devel] [PATCH 1/3] lavc/avcodec: Add caps for the support of variable dimension encoding

2020-06-08 Thread Linjie Fu
> From: "Anton Khirnov" > Sent Time: 2020-06-08 18:50:43 (Monday) > To: "FFmpeg development discussions and patches" > Cc: > Subject: Re: [FFmpeg-devel] [PATCH 1/3] lavc/avcodec: Add caps for the > supportof variable dimension encoding > > Quoting Linjie Fu (2020-06-08 10:58:03) > >

[FFmpeg-devel] [PATCH v2] doc/ffmpeg: remove reference to deprecated option

2020-06-08 Thread Moritz Barsnick
The "-deinterlace" was deprecated since d7edd35, over eight years ago. Refer to deinterlacing filters instead. Signed-off-by: Moritz Barsnick --- doc/ffmpeg.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index

[FFmpeg-devel] [PATCH] avcodec/libx265: Fix integer overflow in computation of max and avg bitrate

2020-06-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/libx265.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c index f560d7f62f..686c205b6b 100644 --- a/libavcodec/libx265.c +++ b/libavcodec/libx265.c @@ -310,8 +310,8 @@

[FFmpeg-devel] Test message

2020-06-08 Thread Devin Heitmueller
Please ignore -- Devin Heitmueller, Senior Software Engineer LTN Global Communications o: +1 (301) 363-1001 w: https://ltnglobal.com e: devin.heitmuel...@ltnglobal.com ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] [PATCH] avcodec/libx265: Fix integer overflow in computation of max and avg bitrate

2020-06-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/libx265.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c index f560d7f62f..686c205b6b 100644 --- a/libavcodec/libx265.c +++ b/libavcodec/libx265.c @@ -310,8 +310,8 @@

[FFmpeg-devel] [PATCH v2] avfilter/f_metadata: use AVBPrint API to remove buf size limitation

2020-06-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/f_metadata.c | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/libavfilter/f_metadata.c b/libavfilter/f_metadata.c index 598257b..79515b7 100644 --- a/libavfilter/f_metadata.c +++

Re: [FFmpeg-devel] [PATCH] lavdevice: Add VideoToolbox output device.

2020-06-08 Thread Nicolas George
Thilo Borgmann (12020-06-08): > How do you avoid the auto-scaler to be scaling to alsa's default > format of pcm_s16 on the command line? We cannot, not with your original version, not with how alsa_enc does and the new version. Because they are not sample formats, they are codecs, and

Re: [FFmpeg-devel] [PATCH v7 2/3] avdevice/lavfi: support the dumpgraph with options

2020-06-08 Thread lance . lmwang
On Fri, Jun 05, 2020 at 07:10:08PM +0200, Marton Balint wrote: > > > On Fri, 5 Jun 2020, Nicolas George wrote: > > > lance.lmw...@gmail.com (12020-05-25): > > > From: Limin Wang > > > > > > Signed-off-by: Limin Wang > > > --- > > > doc/indevs.texi | 19 +-- > > >

Re: [FFmpeg-devel] [PATCH] libavutil: add clean aperture (CLAP) side data.

2020-06-08 Thread Tobias Rapp
On 30.05.2020 12:41, Kieran O Leary wrote: Hi, On Fri 29 May 2020, 22:47 Neil Birkbeck, wrote: [...] I've changed the side data to be PixelCrop (instead of CleanAperture) given the intent to reuse as cropping elsewhere. -For now, I've kept the rational representation--although CLAP seems to

Re: [FFmpeg-devel] [PATCH] avfilter/f_metadata: use AVBPrint API to remove buf size limitation

2020-06-08 Thread Nicolas George
lance.lmw...@gmail.com (12020-06-08): > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavfilter/f_metadata.c | 9 ++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > > diff --git a/libavfilter/f_metadata.c b/libavfilter/f_metadata.c > index 598257b15b..808782d31a 100644 >

[FFmpeg-devel] [PATCH] avfilter/f_metadata: use AVBPrint API to remove buf size limitation

2020-06-08 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/f_metadata.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libavfilter/f_metadata.c b/libavfilter/f_metadata.c index 598257b15b..808782d31a 100644 --- a/libavfilter/f_metadata.c +++

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

2020-06-08 Thread James Almer
On 6/8/2020 7:54 AM, Anton Khirnov wrote: > Quoting Hendrik Leppkes (2020-06-08 12:42:08) >> On Mon, Jun 8, 2020 at 12:22 PM Anton Khirnov wrote: >>> >>> This stops update_thread_context() from being called with frame >>> threading, which causes races. >>> --- >>> libavcodec/codec_desc.c | 2 +-

Re: [FFmpeg-devel] [PATCH 1/4] lavu/buffer: add a convenience function for replacing buffers

2020-06-08 Thread James Almer
On 6/8/2020 8:34 AM, Anton Khirnov wrote: > Quoting James Almer (2020-06-05 15:05:33) >> On 6/5/2020 7:02 AM, Anton Khirnov wrote: >>> A common pattern e.g. in libavcodec is replacing/updating buffer >>> references: unref old one, ref new one. This function allows simplifying >>> such code an

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

2020-06-08 Thread Paul B Mahol
On 6/8/20, Anton Khirnov wrote: > This stops update_thread_context() from being called with frame > threading, which causes races. > --- > libavcodec/codec_desc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c > index

Re: [FFmpeg-devel] [PATCH 1/4] lavu/buffer: add a convenience function for replacing buffers

2020-06-08 Thread Anton Khirnov
Quoting James Almer (2020-06-05 15:05:33) > On 6/5/2020 7:02 AM, Anton Khirnov wrote: > > A common pattern e.g. in libavcodec is replacing/updating buffer > > references: unref old one, ref new one. This function allows simplifying > > such code an avoiding unnecessary refs+unrefs if the

[FFmpeg-devel] [PATCH v2] lavdevice: Add AudioToolbox output device.

2020-06-08 Thread Thilo Borgmann
Hi, v2 due to Nicolas remarks. One device, several formats. Thanks, Thilo From 64b100d7b4cfe780c273d6e7d8b940a8427cfdc9 Mon Sep 17 00:00:00 2001 From: Thilo Borgmann Date: Mon, 8 Jun 2020 13:04:11 +0200 Subject: [PATCH] lavdevice: Add AudioToolbox output device. --- configure

Re: [FFmpeg-devel] [PATCH] prompeg_write() must report data all was written

2020-06-08 Thread Michael Niedermayer
On Mon, Jun 08, 2020 at 04:56:04PM +0800, myp...@gmail.com wrote: > On Tue, Apr 2, 2019 at 5:20 AM Michael Niedermayer > wrote: > > > > On Sun, Mar 31, 2019 at 02:32:34AM +0100, David Holroyd wrote: > > > Previously, prompeg_write() would only report to caller that bytes we > > > written when a

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

2020-06-08 Thread Anton Khirnov
Quoting Hendrik Leppkes (2020-06-08 12:42:08) > On Mon, Jun 8, 2020 at 12:22 PM Anton Khirnov wrote: > > > > This stops update_thread_context() from being called with frame > > threading, which causes races. > > --- > > libavcodec/codec_desc.c | 2 +- > > 1 file changed, 1 insertion(+), 1

Re: [FFmpeg-devel] [PATCH 1/3] lavc/avcodec: Add caps for the support of variable dimension encoding

2020-06-08 Thread Anton Khirnov
Quoting Linjie Fu (2020-06-08 10:58:03) > And declare AV_CODEC_CAP_VARIABLE_DIMENSIONS for rawvideo and > wrapped_avframe. > > Signed-off-by: Linjie Fu > --- > doc/APIchanges | 3 +++ > fftools/cmdutils.c | 2 ++ > libavcodec/avcodec.h | 4 +++- >

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

2020-06-08 Thread Hendrik Leppkes
On Mon, Jun 8, 2020 at 12:22 PM Anton Khirnov wrote: > > This stops update_thread_context() from being called with frame > threading, which causes races. > --- > libavcodec/codec_desc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/codec_desc.c

Re: [FFmpeg-devel] [PATCH] tools/target_dem_fuzzer: Implement AVSEEK_SIZE

2020-06-08 Thread Michael Niedermayer
On Mon, Jun 08, 2020 at 01:35:41AM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > tools/target_dem_fuzzer.c | 2 ++ > 1 file changed, 2 insertions(+) will apply [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB In a rich man's

Re: [FFmpeg-devel] [PATCH 4/4] pthread_frame: use av_buffer_replace() to simplify code

2020-06-08 Thread Anton Khirnov
Quoting Michael Niedermayer (2020-06-05 23:36:47) > On Fri, Jun 05, 2020 at 12:02:19PM +0200, Anton Khirnov wrote: > > --- > > libavcodec/pthread_frame.c | 13 +++-- > > 1 file changed, 3 insertions(+), 10 deletions(-) > > > > this changes the output from: (it has fewer frames output) >

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

2020-06-08 Thread Anton Khirnov
This stops update_thread_context() from being called with frame threading, which causes races. --- libavcodec/codec_desc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 9f8847544f..5117984c75 100644 ---

[FFmpeg-devel] [PATCH 2/4] avformat/mpl2dec: Fix integer overflow with duration

2020-06-08 Thread Michael Niedermayer
Fixes: signed integer overflow: 9223372036854775807 - -1 cannot be represented in type 'long' Fixes: 23167/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-6425051741290496 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by:

[FFmpeg-devel] [PATCH 3/4] avformat/utils: Print analyze duration and probesize when printing a suggestion to increase them

2020-06-08 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavformat/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 667249362c..45a4179552 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -4132,8 +4132,8 @@

Re: [FFmpeg-devel] [PATCH 1/3] avformat/4xm: Cleanup on GET_LIST_HEADER() failure

2020-06-08 Thread Michael Niedermayer
On Sun, Jun 07, 2020 at 10:21:56PM +0200, Andreas Rheinhardt wrote: > Michael Niedermayer: > > Fixes: memleak > > Fixes: > > 23142/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5932860820422656 > > > > Found-by: continuous fuzzing process > >

[FFmpeg-devel] [PATCH 4/4] tools/target_dem_fuzzer: Use file extensions listed in input formats

2020-06-08 Thread Michael Niedermayer
This should make it easier for the fuzzer to fuzz formats being detected only by file extension and thus increase coverage Signed-off-by: Michael Niedermayer --- tools/target_dem_fuzzer.c | 27 ++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git

[FFmpeg-devel] [PATCH 1/4] avformat/thp: Check fps

2020-06-08 Thread Michael Niedermayer
Fixes: division by zero Fixes: 23162/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-4856420817436672 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavformat/thp.c | 2 ++ 1 file changed, 2

Re: [FFmpeg-devel] [PATCH v4 1/2] libavcodec/libaomenc.c: Support gray input

2020-06-08 Thread Moritz Barsnick
On Sun, May 10, 2020 at 00:59:25 +0900, Ryo Hirafuji wrote: > I can create and send a new patch without these workaround lines, but of > course, it will crash if the ffmpeg will be built with older versions of > libaom. Actually, it depends on the runtime version of the library, not which version

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

2020-06-08 Thread Moritz Barsnick
On Thu, Jun 04, 2020 at 10:35:32 +0800, Siyuan Huang wrote: > Hello Mr. Moritz Please use your mailer's reply function to reply to e-mail messages to the list, so that the email threading in maintained. > I have try finding recently doc update for dashenc.c , but I found no > related commit . >

Re: [FFmpeg-devel] [PATCH] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-06-08 Thread Moritz Barsnick
On Sat, Jun 06, 2020 at 11:42:17 +0530, gautamr...@gmail.com wrote: > +static uint8_t info_marker(uint16_t marker) Usually ffmpeg uses type int as a replacement for bool (but I'm not sure on this). > +else > +if (marker > 0xFF00) return 1; > +return 0; Should be else if

Re: [FFmpeg-devel] [PATCH] prompeg_write() must report data all was written

2020-06-08 Thread myp...@gmail.com
On Tue, Apr 2, 2019 at 5:20 AM Michael Niedermayer wrote: > > On Sun, Mar 31, 2019 at 02:32:34AM +0100, David Holroyd wrote: > > Previously, prompeg_write() would only report to caller that bytes we > > written when a FEC packet was actually created. Not all RTP packets are > > expected to

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_filter: add -autoscale to disable/enable the default scale

2020-06-08 Thread Fu, Linjie
> From: ffmpeg-devel On Behalf Of Fu, > Linjie > Sent: Sunday, June 7, 2020 12:58 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_filter: add -autoscale > to disable/enable the default scale > > > From: ffmpeg-devel On

[FFmpeg-devel] [PATCH 3/3] fftools/ffmpeg_filter: add -autoscale to disable/enable the default scale

2020-06-08 Thread Linjie Fu
Currently, ffmpeg inserts scale filter by default in the filter graph to force the whole decoded stream to scale into the same size with the first frame. It's not quite make sense in resolution changing cases if user wants the rawvideo without any scale. Using autoscale/noautoscale as an output

[FFmpeg-devel] [PATCH 1/3] lavc/avcodec: Add caps for the support of variable dimension encoding

2020-06-08 Thread Linjie Fu
And declare AV_CODEC_CAP_VARIABLE_DIMENSIONS for rawvideo and wrapped_avframe. Signed-off-by: Linjie Fu --- doc/APIchanges | 3 +++ fftools/cmdutils.c | 2 ++ libavcodec/avcodec.h | 4 +++- libavcodec/codec.h | 5 + libavcodec/rawenc.c | 1

[FFmpeg-devel] [PATCH 2/3] fftools/ffmpeg: check caps of encoders for encoding with variable dimension

2020-06-08 Thread Linjie Fu
This ensures that an encoder is able to cope with input frames with resolution changing only if it declares the capability of AV_CODEC_CAP_VARIABLE_DIMENSIONS. Signed-off-by: Linjie Fu --- fftools/ffmpeg.c | 9 + 1 file changed, 9 insertions(+) diff --git a/fftools/ffmpeg.c

Re: [FFmpeg-devel] [PATCH v4 2/4] libavutils: Add parse_r helper for MIPS

2020-06-08 Thread Shiyou Yin
>-Original Message- >From: ffmpeg-devel-boun...@ffmpeg.org [mailto:ffmpeg-devel-boun...@ffmpeg.org] >On Behalf Of >Jiaxun Yang >Sent: Monday, June 8, 2020 11:30 AM >To: ffmpeg-devel@ffmpeg.org >Cc: yinshi...@loongson.cn; Jiaxun Yang >Subject: [FFmpeg-devel] [PATCH v4 2/4] libavutils: Add

Re: [FFmpeg-devel] [PATCH v4 1/4] ffbuild: Refine MIPS handling

2020-06-08 Thread Shiyou Yin
>-Original Message- >From: ffmpeg-devel-boun...@ffmpeg.org [mailto:ffmpeg-devel-boun...@ffmpeg.org] >On Behalf Of >Jiaxun Yang >Sent: Monday, June 8, 2020 11:30 AM >To: ffmpeg-devel@ffmpeg.org >Cc: yinshi...@loongson.cn; Jiaxun Yang >Subject: [FFmpeg-devel] [PATCH v4 1/4] ffbuild: Refine

Re: [FFmpeg-devel] [PATCH] lavdevice: Add VideoToolbox output device.

2020-06-08 Thread Thilo Borgmann
Am 08.06.20 um 09:52 schrieb Michael Niedermayer: > On Mon, Jun 08, 2020 at 12:26:28AM +0200, Thilo Borgmann wrote: >> Hi, >> >> $subject. >> >> Enables native audio output on OSX. >> OSX accepts numerous formats, so there are several output devices. >> >> -Thilo > >> configure

Re: [FFmpeg-devel] [PATCH] lavdevice: Add VideoToolbox output device.

2020-06-08 Thread Michael Niedermayer
On Mon, Jun 08, 2020 at 12:26:28AM +0200, Thilo Borgmann wrote: > Hi, > > $subject. > > Enables native audio output on OSX. > OSX accepts numerous formats, so there are several output devices. > > -Thilo > configure |3 > libavdevice/Makefile |1 >