Re: [FFmpeg-devel] [PATCH 1/2] libavformat/hlsenc: Enable HTTP, persistent connections for hls_delete_file

2022-11-28 Thread Basel Sayeh
Please ignore this version and use the other one, as it was sent using the wrong email client and the patch is missed up. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit

Re: [FFmpeg-devel] [PATCH] avformat/mpegtsenc: Always output a minimum of 32 packets.

2022-11-28 Thread Marton Balint
On Mon, 28 Nov 2022, James Almer wrote: From: Thierry Foucu Otherwise, if you just output a PAT/PMT and a single TS packets, the demuxer will not be able to detect TS. This looks like a demuxer bug, which should be fixed in the demuxer, and not in the muxer. Regards, Marton

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/mpeg12dec: Check input size

2022-11-28 Thread Michael Niedermayer
On Mon, Nov 28, 2022 at 12:47:32AM +, Kieran Kunhya wrote: > On Sun, 27 Nov 2022 at 22:34, Michael Niedermayer > wrote: > > > Fixes: Timeout > > Fixes: > > 53599/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IPU_fuzzer-4950102511058944 > > > > Found-by: continuous fuzzing process > >

[FFmpeg-devel] [PATCH] avformat/mpegtsenc: Always output a minimum of 32 packets.

2022-11-28 Thread James Almer
From: Thierry Foucu Otherwise, if you just output a PAT/PMT and a single TS packets, the demuxer will not be able to detect TS. Signed-off-by: James Almer --- libavformat/mpegtsenc.c | 11 --- tests/ref/acodec/s302m | 4 ++-- tests/ref/lavf/ts | 4 ++-- 3 files changed, 8

Re: [FFmpeg-devel] [PATCH] mpegts: identify and demux DSMCC-B/MHEG streams

2022-11-28 Thread Scott Theisen
Ping for review. Thanks in advance, Scott Theisen On 11/13/22 18:19, Scott Theisen wrote: Ping for review. On 9/17/22 13:08, Scott Theisen wrote: These changes are from MythTV. --- The `AV_CODEC_ID`s are probably in the wrong place since these are data codecs, but that is where they are In

Re: [FFmpeg-devel] [PATCH] avcodec/pictordec: Remove mid exit branch

2022-11-28 Thread Michael Niedermayer
On Sat, Nov 26, 2022 at 10:43:34AM +1100, Peter Ross wrote: > On Fri, Nov 25, 2022 at 09:18:33PM +0100, Michael Niedermayer wrote: > > This causes the RLE decoder to exit before applying the last RLE run > > All images i tested with are unchanged, this makes the special case > > for handling the

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/bonk: Use unsigned in predictor_init_state() to avoid undefined behavior

2022-11-28 Thread Michael Niedermayer
On Thu, Nov 17, 2022 at 12:32:18AM +0100, Michael Niedermayer wrote: > Fixes: signed integer overflow: -5010 * -717450 cannot be represented in type > 'int' > Fixes: > 53370/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_BONK_fuzzer-4945644204195840 > > Found-by: continuous fuzzing process

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/tiff: Avoid 0.0/0.0 in camera_xyz_coeff()

2022-11-28 Thread Michael Niedermayer
On Fri, Nov 18, 2022 at 12:14:17AM +0100, Michael Niedermayer wrote: > Fixes: division by zero > Fixes: > 52230/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TIFF_fuzzer-5922608915021824 > > Found-by: continuous fuzzing process >

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/h263dec: Avoid parsing extradata repeatedly

2022-11-28 Thread Michael Niedermayer
On Mon, Nov 21, 2022 at 07:53:53PM +0100, Michael Niedermayer wrote: > On Mon, Nov 21, 2022 at 12:53:26PM +0100, Anton Khirnov wrote: > > Quoting Michael Niedermayer (2022-11-18 00:14:18) > > > Fixes: Timeout > > > Fixes: > > >

Re: [FFmpeg-devel] [PATCH 2/4] avformat/id3v2: Check taglen in read_uslt()

2022-11-28 Thread Michael Niedermayer
On Fri, Nov 18, 2022 at 10:09:16PM +0100, Michael Niedermayer wrote: > Fixes: Timeout (read mostly the same data repeatly) > Fixes: > 52457/clusterfuzz-testcase-minimized-ffmpeg_dem_ALP_fuzzer-6610706313379840 > > Found-by: continuous fuzzing process >

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/mobiclip: Check input size before (re)allocation

2022-11-28 Thread Michael Niedermayer
On Fri, Nov 18, 2022 at 10:09:17PM +0100, Michael Niedermayer wrote: > Fixes: Timeout > Fixes: > 52566/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MOBICLIP_fuzzer-4913160050311168 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg >

[FFmpeg-devel] [PATCH 2/2] libavformat/dashenc: Enable HTTP persistent connections for dashenc_delete_file

2022-11-28 Thread Basel Sayeh
Signed-off-by: Basel Sayeh --- libavformat/dashenc.c | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 9c1bcad9e3..ba0eb913a1 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -179,6 +179,7 @@

[FFmpeg-devel] [PATCH 1/2] libavformat/hlsenc: Enable HTTP persistent connections for hls_delete_file

2022-11-28 Thread Basel Sayeh
Signed-off-by: Basel Sayeh --- libavformat/hlsenc.c | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index a86fc8907f..e4749aad87 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -252,6 +252,7 @@

[FFmpeg-devel] [PATCH 1/2] libavformat/hlsenc: Enable HTTP persistent connections for hls_delete_file

2022-11-28 Thread Basel Sayeh
Signed-off-by: Basel Sayeh --- libavformat/hlsenc.c | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index a86fc8907f..e4749aad87 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -252,6 +252,7 @@

[FFmpeg-devel] [PATCH 2/2] libavformat/dashenc: Enable HTTP persistent connections for dashenc_delete_file

2022-11-28 Thread Basel Sayeh
Signed-off-by: Basel Sayeh --- libavformat/dashenc.c | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 9c1bcad9e3..ba0eb913a1 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -179,6 +179,7 @@

[FFmpeg-devel] [PATCH 2/2] av1dec: fix typo in logged error

2022-11-28 Thread Tristan Matthews
--- libavcodec/av1dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c index 80da0943d4..d83c902f1f 100644 --- a/libavcodec/av1dec.c +++ b/libavcodec/av1dec.c @@ -567,7 +567,7 @@ static int get_pixel_format(AVCodecContext *avctx)

[FFmpeg-devel] [PATCH 1/2] av1dec: fix comment typo

2022-11-28 Thread Tristan Matthews
--- libavcodec/av1dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c index 0c24eac842..80da0943d4 100644 --- a/libavcodec/av1dec.c +++ b/libavcodec/av1dec.c @@ -194,7 +194,7 @@ static uint8_t get_shear_params_valid(AV1DecContext *s,

Re: [FFmpeg-devel] [EXTERNAL] [PATCH v2 2/2] ibavformat/mov: Add support for exporting poster time.

2022-11-28 Thread Bryce Newman
Hi, This should address the feedback from a prior change that was not accepted. Could I please get some eyes on this? Thank you in advance. Bryce Bryce Chester Newman | Principal Developer p: +12069255045 | From: Bryce Chester Newman Date: Wednesday, October 5, 2022 at 8:25 AM

Re: [FFmpeg-devel] [PATCH v5 2/2] lavc/vaapi_decode: add support for HWACCEL_CAP_RESET_WITHOUT_UNINIT

2022-11-28 Thread Mark Thompson
On 14/11/2022 01:16, Fei Wang wrote: This can fix vp9 decode image corruption when the frame size is change, but the pervious frames still be referenced. Surfaces don't need to be bound to vaContext only after VAAPI 1.0.0:

Re: [FFmpeg-devel] [PATCH] avcodec/pnm: avoid mirroring PFM images vertically

2022-11-28 Thread Leo Izen
On 11/22/22 11:46, Leo Izen wrote: On 11/16/22 06:43, Leo Izen wrote: PFM (aka Portable FloatMap) encodes its scanlines from bottom-to-top, not from top-to-bottom, unlike other NetPBM formats. Without this patch, FFmpeg ignores this exception and decodes/encodes PFM images mirrored vertically