Re: [FFmpeg-devel] [RFC] 7.1 Release

2024-09-08 Thread Jean-Baptiste Kempf
Hello, On Sat, 7 Sep 2024, at 22:46, Michael Niedermayer wrote: > I intend to branch 7.1 in the next 24h Could you wait a tiny bit more, please? I know Lynne and James have important work in progress, maybe they could chim in on Monday to merge them or not. jbk -- Jean-Baptiste Kempf - Presi

Re: [FFmpeg-devel] [PATCH] configure: enable warnings for shadowed variables

2024-09-08 Thread Andreas Rheinhardt
Timo Rothenpieler: > These can easily lead to incredibly confusing errors, and should > practically never happen. > I'd have loved to make this a -Werror even, but sadly there is way too > many instances in the codebase right now that first needs to be weeded > out. IMO these instances would need

Re: [FFmpeg-devel] [PATCH] libavcodec: implementation of DNxUncompressed decoder

2024-09-08 Thread Andreas Rheinhardt
Martin Schitter: > This is a second attempt to contribute the corrected code of an > AVID DNxUncompressed / SMTPE RDD 50 decoder. > > Thanks > Martin > > --- > Changelog | 1 + > doc/general_contents.texi | 1 + > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c

Re: [FFmpeg-devel] [PATCH v2] avcodec/riscv: add h264 qpel

2024-09-08 Thread Rémi Denis-Courmont
Le keskiviikkona 4. syyskuuta 2024, 16.32.21 EEST J. Dekker a écrit : > From: Niklas Haas > > checkasm: bench runs 131072 (1 << 17) Err, the code contains two separate set of optimisations, and only one set of benchmarks? Also landing pads seem to be missing. -- レミ・デニ-クールモン http://www.remlab

Re: [FFmpeg-devel] [PATCH] configure: enable warnings for shadowed variables

2024-09-08 Thread Timo Rothenpieler
On 08.09.2024 10:15, Andreas Rheinhardt wrote: Timo Rothenpieler: These can easily lead to incredibly confusing errors, and should practically never happen. I'd have loved to make this a -Werror even, but sadly there is way too many instances in the codebase right now that first needs to be weed

[FFmpeg-devel] [PATCH v2] avfilter: fix YUV colorspace negotiation for YUVJ

2024-09-08 Thread Niklas Haas
From: Niklas Haas Ironically, despite being introduced to make YUVJ unnecessary, the new YUV negotiation logic failed to actually negotiate YUVJ formats themselves correctly, leading to errors when passing YUVJ frames into a filter graph. (They were effectively treated like RGB or Grayscale forma

Re: [FFmpeg-devel] [PATCH v2] avfilter: fix YUV colorspace negotiation for YUVJ

2024-09-08 Thread Niklas Haas
On Sun, 08 Sep 2024 15:04:29 +0200 Niklas Haas wrote: > From: Niklas Haas > > Ironically, despite being introduced to make YUVJ unnecessary, the new > YUV negotiation logic failed to actually negotiate YUVJ formats > themselves correctly, leading to errors when passing YUVJ frames into > a filter

Re: [FFmpeg-devel] [PATCH 09/13] avformat: add an LCEVC stream group

2024-09-08 Thread James Almer
On 9/6/2024 8:44 AM, Anton Khirnov wrote: Quoting James Almer (2024-08-31 18:31:10) +typedef struct AVStreamGroupLCEVC { +const AVClass *av_class; + +/** + * Width of the final stream for presentation. + */ +int width; +/** + * Height of the final image for presentati

Re: [FFmpeg-devel] [PATCH 2/2] MAINTAINERS: remove Aurelien and David from matroska*

2024-09-08 Thread Michael Niedermayer
On Sun, Sep 01, 2024 at 04:27:22PM +0200, Michael Niedermayer wrote: > Aurelien last activity in git is from 2017, last activity on the ML is from > 2018 > David last activity in git is from 2011, and ML from 2013 > > matroska* is actively maintained > > CC: Aurelien Jacobs > CC: David Conrad

Re: [FFmpeg-devel] [PATCH 1/5] MAINTAINERS: Mark parts from Robert as unmaintained

2024-09-08 Thread Michael Niedermayer
On Sat, Aug 31, 2024 at 11:44:45PM +0200, Michael Niedermayer wrote: > Last mail and commit from Robert seems from 2011, thats 13 years ago > > CC: Rob > Signed-off-by: Michael Niedermayer > --- > MAINTAINERS | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) will apply patchset [...

Re: [FFmpeg-devel] [RFC] 7.1 Release

2024-09-08 Thread Michael Niedermayer
On Sun, Sep 08, 2024 at 09:34:39AM +0200, Jean-Baptiste Kempf wrote: > Hello, > > On Sat, 7 Sep 2024, at 22:46, Michael Niedermayer wrote: > > I intend to branch 7.1 in the next 24h > > Could you wait a tiny bit more, please? I could if someone opens corresponding issues on trac to track these o

Re: [FFmpeg-devel] [PATCH] web/index: Add news entry about coverity

2024-09-08 Thread Michael Niedermayer
Hi (also adding tara as i think he is interrested about the news entry) On Fri, Aug 16, 2024 at 09:20:06AM +0200, Anton Khirnov wrote: > Quoting Michael Niedermayer (2024-08-15 23:50:18) > > Based on suggestion of Jonatas > > > > CC: "Jonatas L. Nogueira" > > --- > > src/index | 8 > >

Re: [FFmpeg-devel] [PATCH] configure: enable warnings for shadowed variables

2024-09-08 Thread Zhao Zhili
> On Sep 8, 2024, at 20:39, Timo Rothenpieler wrote: > > On 08.09.2024 10:15, Andreas Rheinhardt wrote: >> Timo Rothenpieler: >>> These can easily lead to incredibly confusing errors, and should >>> practically never happen. >>> I'd have loved to make this a -Werror even, but sadly there is way

Re: [FFmpeg-devel] [PATCH] configure: enable warnings for shadowed variables

2024-09-08 Thread Timo Rothenpieler
On 08.09.2024 18:44, Zhao Zhili wrote: On Sep 8, 2024, at 20:39, Timo Rothenpieler wrote: On 08.09.2024 10:15, Andreas Rheinhardt wrote: Timo Rothenpieler: These can easily lead to incredibly confusing errors, and should practically never happen. I'd have loved to make this a -Werror even,

[FFmpeg-devel] [PATCH] libavcodec: implementation of DNxUncompressed decoder

2024-09-08 Thread martin schitter
Dear Andreas! Thanks for taking a look. I'm not familiar with ffmpeg development and it's really hard to figure out the more complex demands and hidden secrets of all the projects tooling and workflow requirements. On 08.09.24 10:47, Andreas Rheinhardt wrote: [...] +++ b/libavcodec/dnxucde

[FFmpeg-devel] [PATCH 1/3] libavcodec: implementation of DNxUncompressed decoder

2024-09-08 Thread Martin Schitter
--- Changelog | 1 + doc/general_contents.texi | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c| 1 + libavcodec/codec_desc.c | 7 + libavcodec/codec_id.h | 1 + libavcodec/dnxucdec.c | 495 ++ libavcodec/p

[FFmpeg-devel] [PATCH 2/3] libavcodec/dnxucdec.c: fix displaced bracket

2024-09-08 Thread Martin Schitter
--- libavcodec/dnxucdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dnxucdec.c b/libavcodec/dnxucdec.c index 502e736..e9a2157 100644 --- a/libavcodec/dnxucdec.c +++ b/libavcodec/dnxucdec.c @@ -486,7 +486,7 @@ const AVCodecParser ff_dnxuc_parser = { const FFC

[FFmpeg-devel] [PATCH 3/3] libavcodec/dnxucdec.c: fix missing newline at EOF

2024-09-08 Thread Martin Schitter
--- libavcodec/dnxucdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dnxucdec.c b/libavcodec/dnxucdec.c index e9a2157..455c374 100644 --- a/libavcodec/dnxucdec.c +++ b/libavcodec/dnxucdec.c @@ -492,4 +492,4 @@ const FFCodec ff_dnxuc_decoder = { .init

Re: [FFmpeg-devel] [PATCH 2/3] libavcodec/dnxucdec.c: fix displaced bracket

2024-09-08 Thread Zhao Zhili
> On Sep 9, 2024, at 01:27, Martin Schitter wrote: > > --- > libavcodec/dnxucdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/dnxucdec.c b/libavcodec/dnxucdec.c > index 502e736..e9a2157 100644 > --- a/libavcodec/dnxucdec.c > +++ b/libavcodec/dnxucdec.c >

Re: [FFmpeg-devel] [PATCH 2/3] libavcodec/dnxucdec.c: fix displaced bracket

2024-09-08 Thread martin schitter
On 08.09.24 19:52, Zhao Zhili wrote: If there are defects in a patch, fix the patch instead of add a new commit. For example, use git commit —amend. If it’s a patch in a patchset, use git rebase —interactive. We don’t merge a patch if there is know issue, then fix it with another patch. Thank

[FFmpeg-devel] [PATCH v3] libavcodec: implementation of DNxUncompressed decoder

2024-09-08 Thread Martin Schitter
As suggested by Zhao Zhili, here is a squash rebased 3rd attempt. I'm still unsure about my solution of adding the codec_id entries and increasing the lead-position value, as criticized by Andreas Rheinhard, but I don't see any other way to make it better. martin --- Changelog |

[FFmpeg-devel] [PATCH] avcodec/avcodec: remove usage of __typeof__()

2024-09-08 Thread James Almer
It's non-standard C. Signed-off-by: James Almer --- libavcodec/avcodec.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/avcodec.c b/libavcodec/avcodec.c index cb89236549..78153d12f1 100644 --- a/libavcodec/avcodec.c +++ b/libavcodec/avcodec.c @@ -70

Re: [FFmpeg-devel] [PATCH] avcodec/avcodec: remove usage of __typeof__()

2024-09-08 Thread Martin Storsjö
On Sun, 8 Sep 2024, James Almer wrote: It's non-standard C. Signed-off-by: James Almer --- libavcodec/avcodec.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) LGTM // Martin ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.o

Re: [FFmpeg-devel] [PATCH] avcodec/avcodec: remove usage of __typeof__()

2024-09-08 Thread Martin Storsjö
On Sun, 8 Sep 2024, James Almer wrote: It's non-standard C. Signed-off-by: James Almer --- libavcodec/avcodec.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/avcodec.c b/libavcodec/avcodec.c index cb89236549..78153d12f1 100644 --- a/libavcodec/avc

[FFmpeg-devel] [PATCH] avcodec/amfenc: Fix HEVC/AV1 colorspace assumptions

2024-09-08 Thread Cameron Gutman
Fixes incorrect colors in AMF encoding of 10-bit SDR content in HEVC and AV1. Signed-off-by: Cameron Gutman --- libavcodec/amfenc_av1.c | 13 - libavcodec/amfenc_hevc.c | 13 - 2 files changed, 8 insertions(+), 18 deletions(-) diff --git a/libavcodec/amfenc_av1.c b/liba

[FFmpeg-devel] [PATCH v2] avcodec/amfenc: Add support for on-demand key frames

2024-09-08 Thread Cameron Gutman
v2: Use forced_idr option instead of AV_FRAME_FLAG_KEY Signed-off-by: Cameron Gutman --- In response to the feedback from Anton on the previous patch, I opted to switch to a new codec option plus pict_type rather than triggering IDR frames on AV_FRAME_FLAG_KEY. However, I chose to use 'forced_idr

[FFmpeg-devel] [PATCH 01/60] fftools/ffmpeg_opt: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- fftools/ffmpeg_opt.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c index 3cbf0795ac..1aa187f706 100644 --- a/fftools/ffmpeg_opt.c +++ b/fftools/ffmpeg_opt.c @@ -87,8 +87,6 @@ int recast_media = 0; static void uninit_opt

[FFmpeg-devel] [PATCH 02/60] fftools/opt_common: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- fftools/opt_common.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fftools/opt_common.c b/fftools/opt_common.c index 9d2d5184a0..059f7a53d2 100644 --- a/fftools/opt_common.c +++ b/fftools/opt_common.c @@ -553,15 +553,15 @@ static void show_help_filter(const c

[FFmpeg-devel] [PATCH 03/60] fftools/opt_common: use av_err2str instead of strerror

2024-09-08 Thread Marvin Scholz
The strerror function must not be used here, as the error is a AVERROR errno, which depending on the platform no longer corresponds to the actual errno that can be handled by strerror. --- fftools/opt_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fftools/opt_common.c

[FFmpeg-devel] [PATCH 04/60] lavfi/vf_ssim360: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavfilter/vf_ssim360.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libavfilter/vf_ssim360.c b/libavfilter/vf_ssim360.c index 57da2f3938..68bd7b4d78 100644

[FFmpeg-devel] [PATCH 05/60] lavfi/vf_ssim360: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavfilter/vf_ssim360.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libavfilter/vf_ssim360.c b/libavfilter/vf_ssim360.c index 68bd7b4d78..42632bcd85 100644 --- a/libavfilter/vf_ssim360.c +++ b/libavfilter/vf_ssim360.c @@ -1132,7 +1132,7 @@ static int

[FFmpeg-devel] [PATCH 11/60] lavfi/vf_ssim: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavfilter/vf_ssim.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c index 97bffcf70c..54e28d43bd 100644 --- a/lib

[FFmpeg-devel] [PATCH 06/60] fftools/cmdutils: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- fftools/cmdutils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index f725c31c12..a9a7ff4194 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -802,7 +802,7 @@ int split_commandline(OptionParseContext *octx, int arg

[FFmpeg-devel] [PATCH 12/60] lavfi/vf_ssim: narrow variable scopes

2024-09-08 Thread Marvin Scholz
--- libavfilter/vf_ssim.c | 15 ++- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c index 54e28d43bd..52b22a6870 100644 --- a/libavfilter/vf_ssim.c +++ b/libavfilter/vf_ssim.c @@ -194,9 +194,8 @@ static float ssim_end1(int s1,

[FFmpeg-devel] [PATCH 07/60] lavfi/vf_psnr: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavfilter/vf_psnr.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavfilter/vf_psnr.c b/libavfilter/vf_psnr.c index 1f02811806..4a5db5df23 100644 --- a/lib

[FFmpeg-devel] [PATCH 13/60] lavfi/f_metadata: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavfilter/f_metadata.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavfilter/f_metadata.c b/libavfilter/f_metadata.c index 1a72284790..abdfb1802b 100644

[FFmpeg-devel] [PATCH 08/60] lavfi/vf_vmafmotion: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavfilter/vf_vmafmotion.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavfilter/vf_vmafmotion.c b/libavfilter/vf_vmafmotion.c index 7bc73416e8..f9315e56b

[FFmpeg-devel] [PATCH 09/60] lavfi/vf_vmafmotion: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavfilter/vf_vmafmotion.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavfilter/vf_vmafmotion.c b/libavfilter/vf_vmafmotion.c index f9315e56b6..a8adc67019 100644 --- a/libavfilter/vf_vmafmotion.c +++ b/libavfilter/vf_vmafmotion.c @@ -90,11 +90,10 @@ static void

[FFmpeg-devel] [PATCH 14/60] lavfi/vf_signature: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavfilter/vf_signature.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/libavfilter/vf_signature.c b/libavfilter/vf_signature.c index f205f6919f..f419522

[FFmpeg-devel] [PATCH 10/60] lavfi/vf_vmafmotion: narrow variable scopes

2024-09-08 Thread Marvin Scholz
--- libavfilter/vf_vmafmotion.c | 53 + 1 file changed, 24 insertions(+), 29 deletions(-) diff --git a/libavfilter/vf_vmafmotion.c b/libavfilter/vf_vmafmotion.c index a8adc67019..3f1bd1a6e2 100644 --- a/libavfilter/vf_vmafmotion.c +++ b/libavfilter/vf_vmafmotio

[FFmpeg-devel] [PATCH 15/60] avformat/network: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavformat/network.c | 21 +++-- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/libavformat/network.c b/libavformat/network.c index 6db82b6d26..2eabd0c

[FFmpeg-devel] [PATCH 16/60] avformat/dashdec: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavformat/dashenc.c | 23 ++- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index d4a6fe0304..df9d

[FFmpeg-devel] [PATCH 17/60] avformat/crypto: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/crypto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/crypto.c b/libavformat/crypto.c index cd462e7b9d..868f6ddc25 100644 --- a/libavformat/crypto.c +++ b/libavformat/crypto.c @@ -62,7 +62,7 @@ typedef struct CryptoContext { #define OFFSET(x)

[FFmpeg-devel] [PATCH 18/60] avutil/file: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavutil/file.c | 10 +++--- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/libavutil/file.c b/libavutil/file.c index 2d1063b6a2..db8507286b 100644 --- a/libavutil/

[FFmpeg-devel] [PATCH 19/60] avdevice/jack: use av_err2str to simplify code

2024-09-08 Thread Marvin Scholz
No need to explicitly specify the buffer here as it is only ever passed to av_log, so av_err2str can be used. --- libavdevice/jack.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavdevice/jack.c b/libavdevice/jack.c index d52bb06822..bb06971fe6 100644 --- a/libavdevice/

[FFmpeg-devel] [PATCH 20/60] fftools/ffmpeg_mux_init: remove unused variable

2024-09-08 Thread Marvin Scholz
This dict is declared and freed but nothing is ever written to it. --- fftools/ffmpeg_mux_init.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c index 37d626add6..8d475f5b45 100644 --- a/fftools/ffmpeg_mux_init.c +++ b/fftools/ffmpeg_mux_i

[FFmpeg-devel] [PATCH 21/60] fftools/ffmpeg_mux_init: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- fftools/ffmpeg_mux_init.c | 17 +++-- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c index 8d475f5b45..c2867192ee 100644 --- a/fftools/ffmpeg_mux_init.c +++ b/fftools/ffmpeg_mux_init.c @@ -661,11 +661,9 @@ static

[FFmpeg-devel] [PATCH 22/60] fftools/ffmpeg_demux: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- fftools/ffmpeg_demux.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c index 039ee0c785..18938f1f12 100644 --- a/fftools/ffmpeg_demux.c +++ b/fftools/ffmpeg_demux.c @@ -1597,7 +1597,7 @@ int ifile_open(const Options

[FFmpeg-devel] [PATCH 23/60] fftools/ffmpeg_demux: narrow variable scope

2024-09-08 Thread Marvin Scholz
--- fftools/ffmpeg_demux.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c index 18938f1f12..0b639f2b60 100644 --- a/fftools/ffmpeg_demux.c +++ b/fftools/ffmpeg_demux.c @@ -1888,9 +1888,7 @@ int ifile_open(const OptionsContext

[FFmpeg-devel] [PATCH 24/60] avcodec/libx264: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/libx264.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index d07a65a103..fc0f182bf4 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -564,12 +564,12 @@ static int setup_frame(AVCodecContext *ctx,

[FFmpeg-devel] [PATCH 25/60] avcodec/mjpegdec: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/mjpegdec.c| 15 +++ libavcodec/mjpegenc_common.c | 13 ++--- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index 7daec649bc..86ec58713c 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mj

[FFmpeg-devel] [PATCH 26/60] avcodec/g2meet: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/g2meet.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index 7ae987ec40..f952a06f12 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c @@ -1052,7 +1052,6 @@ static int kempf_decode_tile(G2MContext *

[FFmpeg-devel] [PATCH 27/60] avcodec/flacenc: fix variable shadowing and narrow scopes

2024-09-08 Thread Marvin Scholz
--- libavcodec/flacenc.c | 26 ++ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c index 3a9578f5cd..83b3f5e324 100644 --- a/libavcodec/flacenc.c +++ b/libavcodec/flacenc.c @@ -952,7 +952,7 @@ static int lpc_encode_

[FFmpeg-devel] [PATCH 28/60] avcodec/fix: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/fic.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/fic.c b/libavcodec/fic.c index ec26e3154d..4763fab689 100644 --- a/libavcodec/fic.c +++ b/libavcodec/fic.c @@ -191,8 +191,6 @@ static int fic_decode_slice(AVCodecContext *avctx, void *tdata) for (y = 0

[FFmpeg-devel] [PATCH 29/60] avcodec/fix: narrow variable scopes

2024-09-08 Thread Marvin Scholz
--- libavcodec/fic.c | 44 1 file changed, 20 insertions(+), 24 deletions(-) diff --git a/libavcodec/fic.c b/libavcodec/fic.c index 4763fab689..8f4277b4e1 100644 --- a/libavcodec/fic.c +++ b/libavcodec/fic.c @@ -113,25 +113,24 @@ static av_always_inlin

[FFmpeg-devel] [PATCH 30/60] avcodec/ffv1enc: fix shadowing and narrow variable scopes

2024-09-08 Thread Marvin Scholz
--- libavcodec/ffv1enc.c | 113 +- libavcodec/ffv1enc_template.c | 19 +++--- 2 files changed, 63 insertions(+), 69 deletions(-) diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index 23d757e5c6..f054ef0974 100644 --- a/libavcodec/ffv1enc.c +++ b/

[FFmpeg-devel] [PATCH 31/60] avcodec/exr: narrow variable scope and fix shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/exr.c | 103 --- 1 file changed, 53 insertions(+), 50 deletions(-) diff --git a/libavcodec/exr.c b/libavcodec/exr.c index 4bac0be89b..0f7c7b8546 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -989,7 +989,7 @@ static int dwa_uncom

[FFmpeg-devel] [PATCH 32/60] avcodec/dvdec: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/dvdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c index 8297b6d2f3..7ca891e93a 100644 --- a/libavcodec/dvdec.c +++ b/libavcodec/dvdec.c @@ -155,10 +155,10 @@ static av_cold void dv_init_static(void) VLC dv_vl

[FFmpeg-devel] [PATCH 33/60] avcodec/dv_tablegen: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/dv_tablegen.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dv_tablegen.h b/libavcodec/dv_tablegen.h index 7f0ab53fa7..6d3e200a01 100644 --- a/libavcodec/dv_tablegen.h +++ b/libavcodec/dv_tablegen.h @@ -51,7 +51,7 @@ static struct dv_vlc_pair dv

[FFmpeg-devel] [PATCH 34/60] avcodec/dv_tablegen: narrow variable scope

2024-09-08 Thread Marvin Scholz
--- libavcodec/dv_tablegen.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavcodec/dv_tablegen.h b/libavcodec/dv_tablegen.h index 6d3e200a01..ee604b1cfe 100644 --- a/libavcodec/dv_tablegen.h +++ b/libavcodec/dv_tablegen.h @@ -51,7 +51,6 @@ static struct dv_vlc_pair d

[FFmpeg-devel] [PATCH 35/60] avcodec/eatgq: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/eatgq.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/eatgq.c b/libavcodec/eatgq.c index d326c05390..b760f29243 100644 --- a/libavcodec/eatgq.c +++ b/libavcodec/eatgq.c @@ -154,19 +154,19 @@ static void tgq_idct_put_mb_dconly(TgqContext *s, AVF

[FFmpeg-devel] [PATCH 36/60] avcodec/eatgq: narrow variable scopes

2024-09-08 Thread Marvin Scholz
--- libavcodec/eatgq.c | 25 +++-- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/libavcodec/eatgq.c b/libavcodec/eatgq.c index b760f29243..f17802f5e8 100644 --- a/libavcodec/eatgq.c +++ b/libavcodec/eatgq.c @@ -59,9 +59,9 @@ static av_cold int tgq_decode_init(

[FFmpeg-devel] [PATCH 37/60] avcodec/elbg: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/elbg.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/elbg.c b/libavcodec/elbg.c index 84043af4fd..22219f9a6f 100644 --- a/libavcodec/elbg.c +++ b/libavcodec/elbg.c @@ -158,7 +158,7 @@ static int simple_lbg(ELBGContext *elbg,

[FFmpeg-devel] [PATCH 38/60] avcodec/elbg: narrow variable scopes

2024-09-08 Thread Marvin Scholz
--- libavcodec/elbg.c | 31 ++- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/libavcodec/elbg.c b/libavcodec/elbg.c index 22219f9a6f..c1b8d16cd2 100644 --- a/libavcodec/elbg.c +++ b/libavcodec/elbg.c @@ -74,8 +74,8 @@ typedef struct ELBGContext { st

[FFmpeg-devel] [PATCH 39/60] avcodec/atrac3plus: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/atrac3plus.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/atrac3plus.c b/libavcodec/atrac3plus.c index f17ed0cbb5..8ca6989c07 100644 --- a/libavcodec/atrac3plus.c +++ b/libavcodec/atrac3plus.c @@ -75,7 +75,7 @@ static av_cold void build_cano

[FFmpeg-devel] [PATCH 40/60] avcodec/alac: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/alac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/alac.c b/libavcodec/alac.c index f91288e97c..7916a006c2 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -331,7 +331,7 @@ static int decode_element(AVCodecContext *avctx, AVFrame *frame,

[FFmpeg-devel] [PATCH 41/60] avcodec/ac3dec: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavcodec/ac3dec.c | 20 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 0a4d3375ee..5cc47a6b1d 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -1492,7 +1492,7 @@ static int ac3_decode_frame(AVCo

[FFmpeg-devel] [PATCH 42/60] avformat/webpenc: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/webpenc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/webpenc.c b/libavformat/webpenc.c index ce0d046aa9..5d0eed5a8e 100644 --- a/libavformat/webpenc.c +++ b/libavformat/webpenc.c @@ -163,7 +163,6 @@ static int webp_write_packet(AVFormatContext *s, AVPacket *pkt

[FFmpeg-devel] [PATCH 43/60] avformat/webmdashenc: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/webmdashenc.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c index 3d9badc0d3..a4940dd1c5 100644 --- a/libavformat/webmdashenc.c +++ b/libavformat/webmdashenc.c @@ -382,11 +382,11 @@ static int writ

[FFmpeg-devel] [PATCH 44/60] avformat/vorbiscomment: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/vorbiscomment.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/vorbiscomment.c b/libavformat/vorbiscomment.c index abe12fd586..af51c237e6 100644 --- a/libavformat/vorbiscomment.c +++ b/libavformat/vorbiscomment.c @@ -62,7 +62,7 @@ int64_t ff

[FFmpeg-devel] [PATCH 45/60] avformat/vividas: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/vividas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/vividas.c b/libavformat/vividas.c index 130b81ebbe..4cad6c6456 100644 --- a/libavformat/vividas.c +++ b/libavformat/vividas.c @@ -417,7 +417,7 @@ static int track_header(VividasDemuxContext *v

[FFmpeg-devel] [PATCH 46/60] avformat/vividas: narrow variable scopes

2024-09-08 Thread Marvin Scholz
--- libavformat/vividas.c | 22 ++ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/libavformat/vividas.c b/libavformat/vividas.c index 4cad6c6456..e984dd0b21 100644 --- a/libavformat/vividas.c +++ b/libavformat/vividas.c @@ -282,7 +282,7 @@ static uint8_t *read_

[FFmpeg-devel] [PATCH 47/60] avformat/yuv4mpegdec: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/yuv4mpegdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/yuv4mpegdec.c b/libavformat/yuv4mpegdec.c index 2b66a1e596..61b5a9e17b 100644 --- a/libavformat/yuv4mpegdec.c +++ b/libavformat/yuv4mpegdec.c @@ -36,7 +36,7 @@ static int yuv4_read_hea

[FFmpeg-devel] [PATCH 49/60] avformat/srtpproto: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/srtpproto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/srtpproto.c b/libavformat/srtpproto.c index 02cf156327..cf6064625c 100644 --- a/libavformat/srtpproto.c +++ b/libavformat/srtpproto.c @@ -37,7 +37,7 @@ typedef struct SRTPProtoContext {

[FFmpeg-devel] [PATCH 48/60] avformat/tee: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/tee.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/tee.c b/libavformat/tee.c index 1a2a8ead82..7ec9ab4800 100644 --- a/libavformat/tee.c +++ b/libavformat/tee.c @@ -65,7 +65,7 @@ static const char *const slave_bsfs_spec_sep = "/"; static cons

[FFmpeg-devel] [PATCH 50/60] avformat/rawdec: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/rawdec.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c index d0c829dc42..c7c18f9aac 100644 --- a/libavformat/rawdec.c +++ b/libavformat/rawdec.c @@ -161,12 +161,11 @@ const FFInputFormat ff_data_demuxer = { #i

[FFmpeg-devel] [PATCH 51/60] avformat/mxfdec: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/mxfdec.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index ac63c0d5ad..eb7d301444 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -871,16 +871,16 @@ static int mxf_read_partition_

[FFmpeg-devel] [PATCH 52/60] avformat/mxfdec: narrow variable scopes

2024-09-08 Thread Marvin Scholz
--- libavformat/mxfdec.c | 35 --- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index eb7d301444..8a83bdfa04 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -482,9 +482,7 @@ static int kl

[FFmpeg-devel] [PATCH 53/60] avformat/nsvdec: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/nsvdec.c | 27 +-- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index dd01765d7d..a55da05226 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -380,7 +380,7 @@ static int nsv_parse_

[FFmpeg-devel] [PATCH 54/60] avformat/matroskadec: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/matroskadec.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index c8741ff2af..60b20e9658 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1281,8 +1281,8 @@ static int

[FFmpeg-devel] [PATCH 55/60] avformat/img2enc: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/img2enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/img2enc.c b/libavformat/img2enc.c index 526a11e5ee..ae239d27ea 100644 --- a/libavformat/img2enc.c +++ b/libavformat/img2enc.c @@ -224,7 +224,7 @@ static int write_packet(AVFormatContext *s, AV

[FFmpeg-devel] [PATCH 56/60] avformat/http: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/http.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index ec60bc0b17..22e4126790 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -150,7 +150,7 @@ typedef struct HTTPContext { #define E AV_OPT_FLAG_ENCOD

[FFmpeg-devel] [PATCH 57/60] avformat/bonk: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/bonk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/bonk.c b/libavformat/bonk.c index 44de8e2087..d5eacfdc91 100644 --- a/libavformat/bonk.c +++ b/libavformat/bonk.c @@ -63,7 +63,7 @@ static int bonk_read_header(AVFormatContext *s) const

[FFmpeg-devel] [PATCH 58/60] avformat/avio: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/avio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/avio.c b/libavformat/avio.c index d109f3adff..fd767c9ba9 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -57,7 +57,7 @@ static void *urlcontext_child_next(void *obj, void *prev)

[FFmpeg-devel] [PATCH 59/60] avformat/apetag: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavformat/apetag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/apetag.c b/libavformat/apetag.c index 0989fcb094..84645607de 100644 --- a/libavformat/apetag.c +++ b/libavformat/apetag.c @@ -81,7 +81,7 @@ static int ape_tag_read_field(AVFormatContext *s)

[FFmpeg-devel] [PATCH 60/60] avfilter/drawutils: fix variable shadowing

2024-09-08 Thread Marvin Scholz
--- libavfilter/drawutils.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavfilter/drawutils.c b/libavfilter/drawutils.c index 95525d38b4..b29d3e565e 100644 --- a/libavfilter/drawutils.c +++ b/libavfilter/drawutils.c @@ -156,7 +156,6 @@ int ff_draw_init(FFDrawContext *dr

Re: [FFmpeg-devel] [PATCH] avutil/cpu_internal: Provide ff_getauxval() wrapper for getauxvaul()

2024-09-08 Thread Brad Smith
ping. On 2024-08-24 9:19 a.m., Brad Smith wrote: avutil/cpu_internal: Provide ff_getauxval() wrapper for getauxvaul() Initially used for getauxval() but will be used to add support for other API. Signed-off-by: Brad Smith --- libavutil/aarch64/cpu.c | 4 ++-- libavutil/arm/cpu.c |

Re: [FFmpeg-devel] [PATCH 03/60] fftools/opt_common: use av_err2str instead of strerror

2024-09-08 Thread Andreas Rheinhardt
Marvin Scholz: > The strerror function must not be used here, as the error is a AVERROR > errno, which depending on the platform no longer corresponds to the > actual errno that can be handled by strerror. > --- > fftools/opt_common.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > di

Re: [FFmpeg-devel] [PATCH 03/60] fftools/opt_common: use av_err2str instead of strerror

2024-09-08 Thread epirat07
On 9 Sep 2024, at 3:30, Andreas Rheinhardt wrote: > Marvin Scholz: >> The strerror function must not be used here, as the error is a AVERROR >> errno, which depending on the platform no longer corresponds to the >> actual errno that can be handled by strerror. >> --- >> fftools/opt_common.c | 2

[FFmpeg-devel] [PATCH v1 4/4] tests/fate/matroska: check the demuxer and decoder allyes before fate-matroska-side-data-pref-codec

2024-09-08 Thread Steven Liu
fix error message when use --disable-everything --samples=fate-suite/ Signed-off-by: Steven Liu --- tests/fate/matroska.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fate/matroska.mak b/tests/fate/matroska.mak index 738c7fe30a..563d756485 100644 --- a/tests/fate/m

[FFmpeg-devel] [PATCH v1 3/4] tests/fate/audio: set flcl1905 test case with depend formats, decoder, protocol

2024-09-08 Thread Steven Liu
move fate-flcl1905 with depend on test case, because there will get an error when disable-everything with fate-suite samples. Signed-off-by: Steven Liu --- tests/fate/audio.mak | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/fate/audio.mak b/tests/fate/audio.mak in

[FFmpeg-devel] [PATCH v1 2/4] tests/fate/mov: check mov formats build status be for make test

2024-09-08 Thread Steven Liu
fix make fate error when make fate with --disable-everything, should check the mov build into ffmpeg status before test mov functions. Signed-off-by: Steven Liu --- tests/fate/mov.mak | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fate/mov.mak b/tests/fate/mov.mak

[FFmpeg-devel] [PATCH v1 1/4] tests/fate/libavcodec: add mjpeg encoder depend for fate-libavcodec-huffman

2024-09-08 Thread Steven Liu
fix make fate failed problem, because fate libavcodec-avcodec need mjpeg encoder when fate-libavcodec-huffman Signed-off-by: Steven Liu --- tests/fate/libavcodec.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fate/libavcodec.mak b/tests/fate/libavcodec.mak index 1a

[FFmpeg-devel] [PATCH v2 1/5] tests/fate/libavcodec: add mjpeg encoder depend for fate-libavcodec-huffman

2024-09-08 Thread Steven Liu
fix make fate failed problem, because fate libavcodec-avcodec need mjpeg encoder when fate-libavcodec-huffman Signed-off-by: Steven Liu --- tests/fate/libavcodec.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fate/libavcodec.mak b/tests/fate/libavcodec.mak index 1a

[FFmpeg-devel] [PATCH v2 2/5] tests/fate/mov: check mov formats build status be for make test

2024-09-08 Thread Steven Liu
fix make fate error when make fate with --disable-everything, should check the mov build into ffmpeg status before test mov functions. Signed-off-by: Steven Liu --- tests/fate/mov.mak | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fate/mov.mak b/tests/fate/mov.mak

[FFmpeg-devel] [PATCH v2 3/5] tests/fate/audio: set flcl1905 test case with depend formats, decoder, protocol

2024-09-08 Thread Steven Liu
move fate-flcl1905 with depend on test case, because there will get an error when disable-everything with fate-suite samples. Signed-off-by: Steven Liu --- tests/fate/audio.mak | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/fate/audio.mak b/tests/fate/audio.mak in

[FFmpeg-devel] [PATCH v2 4/5] tests/fate/matroska: check the demuxer and decoder allyes before fate-matroska-side-data-pref-codec

2024-09-08 Thread Steven Liu
fix error message when use --disable-everything --samples=fate-suite/ Signed-off-by: Steven Liu --- tests/fate/matroska.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fate/matroska.mak b/tests/fate/matroska.mak index 738c7fe30a..563d756485 100644 --- a/tests/fate/m

[FFmpeg-devel] [PATCH v2 5/5] tests/fate/mov: check mov and framemd5 has enabled when test

2024-09-08 Thread Steven Liu
fix error st fate-mov-neg-firstpts-discard when --disable-everything --samples=fate-suite Signed-off-by: Steven Liu --- tests/fate/mov.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fate/mov.mak b/tests/fate/mov.mak index 4160c63a45..682997f7fe 100644 --- a/tests/f