> On Wed, 2021-08-04 at 10:10 +, Soft Works wrote:
> > Haihao,
> >
> > I've just been looking into the source patch from February:
> >
> > > > > (We may apply http://ffmpeg.org/pipermail/ffmpeg-devel/2021-
> > > > > February/276695.html
> > > > > to create a connection between two devices
* Let older tags on the same place as originally
* Add new fate tests for rawvideo and v210 and update checksum for mxf tests
---
libavformat/mxf.c | 17 +++
libavformat/mxf.h | 1 +
libavformat/mxfenc.c| 184 ++
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> Xiang, Haihao
> Sent: Friday, 6 August 2021 10:01
> To: ffmpeg-devel@ffmpeg.org
> Subject: Re: [FFmpeg-devel] [PATCH v2 1/2] qsvdec: add support for
> HW_DEVICE_CTX method
>
>
> > On Wed, 2021-08-04 at 10:10 +, Soft Works wr
MISB ST 0604 and ST 2101 require user data unregistered SEI messages
(precision timestamps and sensor identifiers) to be included. That
currently isn't supported for libx264. This patch adds support
for user data unregistered SEI messages in accordance with ISO/IEC
14496-10:2020(E) section D.1.7 (s
On Mon, Aug 02, 2021 at 08:50:05PM +0200, Marton Balint wrote:
> Also split error message to error and warning.
>
> Signed-off-by: Marton Balint
> ---
> libavcodec/mpeg12dec.c | 14 ++
> 1 file changed, 10 insertions(+), 4 deletions(-)
>
> diff --git a/libavcodec/mpeg12dec.c b/libav
On Wed, Aug 04, 2021 at 11:28:19PM +0100, Derek Buitenhuis wrote:
> On 8/4/2021 11:03 PM, Michael Niedermayer wrote:
> >>
> >> * There is no public documentation on:
> >> * Who owns the physical infra.
> >
> > its all donated one way or another IIRC,
> > I am a bit hesitant to post a names wh
Fixes compilation with GCC 11 when configured with --disable-optimizations
Signed-off-by: James Almer
---
fftools/ffmpeg_filter.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index 94838adc56..49076f13ee 100644
--- a/ff
Fixes compilation with GCC 11 when configured with --disable-optimizations
Signed-off-by: James Almer
---
libavfilter/vsrc_testsrc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c
index 0ced726f5e..08686938db 100644
---
Fixes compilation with GCC 11 when configured with --disable-optimizations
Signed-off-by: James Almer
---
libavformat/mxfenc.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index 5ec619675b..229817dba6 100644
--- a/libavformat/mxfenc.c
+++ b/liba
Fixes compilation with GCC 11 when configured with --disable-optimizations
Signed-off-by: James Almer
---
libavutil/tx.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavutil/tx.c b/libavutil/tx.c
index 25adb6b37e..fa81ada2f1 100644
--- a/libavutil/tx.c
+++ b/libavutil/tx.c
@@ -38,6 +38,
On 8/6/2021 10:31 AM, James Almer wrote:
Fixes compilation with GCC 11 when configured with --disable-optimizations
Changed into "with --disable-optimizations --toolchain=gcc-tsan" because
i just noticed the former alone is not enough to trigger this.
Signed-off-by: James Almer
---
ffto
6 Aug 2021, 15:31 by jamr...@gmail.com:
> Fixes compilation with GCC 11 when configured with --disable-optimizations
>
> Signed-off-by: James Almer
> ---
> libavutil/tx.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/libavutil/tx.c b/libavutil/tx.c
> index 25adb6b37e..fa81ada2f1 10064
On Mon, Aug 02, 2021 at 08:21:29AM +1000, Peter Ross wrote:
> On Sun, Aug 01, 2021 at 09:30:31PM +0200, Michael Niedermayer wrote:
> > Fixes: Infinite loop
> > Fixes:
> > 36311/clusterfuzz-testcase-minimized-ffmpeg_dem_WTV_fuzzer-4889181296918528
> >
> > Found-by: continuous fuzzing process
> >
On Sun, Aug 01, 2021 at 09:30:28PM +0200, Michael Niedermayer wrote:
> Fixes: Timeout
> Fixes:
> 36020/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ALS_fuzzer-4774629855068160
>
> Found-by: continuous fuzzing process
> https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
> Signed-
On Thu, Aug 05, 2021 at 11:06:00AM +, Maryam Ebrahimzadeh wrote:
> Ping.
>
> > On Aug 5, 2021, at 12:45 AM, maryam ebrahimzadeh
> > wrote:
> >
> > version2:
> > As second argument for init_get_bits (buf) can be crafted, return value
> > check for this function call is necessary.
> > 'buf'
The function definition used float *data_buf[14], although there are
only 13 elements (and only 13 are used); the declaration used 13.
Given that the type will be converted to float **data_buf anyway,
this is not in violation of the C specs, but nevertheless a bug.
GCC 11 has a new warning for thi
Only used here; the vif.h header can then be removed.
Signed-off-by: Andreas Rheinhardt
---
libavfilter/vf_vif.c | 19 ---
libavfilter/vif.h| 32
2 files changed, 8 insertions(+), 43 deletions(-)
delete mode 100644 libavfilter/vif.h
diff --g
hybrid2_re() has a parameter declared as "const INTFLOAT filter[8]",
although the actual argument for said parameter only has seven elements;
the code itself only uses seven elements, so change the parameter.
Fixes a -Wstringop-overread warning with GCC 11.
Signed-off-by: Andreas Rheinhardt
---
Before 3793caa5e2d1d16ed45771574b2ffc932497cfcf the code was
"if (...) do { ... } while (...);". After said commit this became
"if (...) av_assert0(...); do { ... } while (...);", i.e. the loop
is always executed. This commit changes the logic to what it was before
said commit. Notice that the cond
Signed-off-by: Jason Fry
---
libavcodec/audiotoolboxdec.c | 19 +++
libavcodec/audiotoolboxenc.c | 2 +-
2 files changed, 16 insertions(+), 5 deletions(-)
diff --git a/libavcodec/audiotoolboxdec.c b/libavcodec/audiotoolboxdec.c
index a222cde62e..f2a897c8c1 100644
--- a/libavcodec/
August 6, 2021 7:20 AM, "Michael Niedermayer" wrote:
> On Wed, Aug 04, 2021 at 11:28:19PM +0100, Derek Buitenhuis wrote:
>
>> On 8/4/2021 11:03 PM, Michael Niedermayer wrote:
>>
>> * There is no public documentation on:
>> * Who owns the physical infra.
>>
>> its all donated one way or another
From: Matthieu Patou
Suggested-by: ffm...@fb.com
Signed-off-by: James Almer
---
fftools/cmdutils.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 912e881174..fc58277df7 100644
--- a/fftools/cmdutils.c
+++ b/fftools/cmdutils
James Almer:
> From: Matthieu Patou
>
> Suggested-by: ffm...@fb.com
> Signed-off-by: James Almer
> ---
> fftools/cmdutils.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
> index 912e881174..fc58277df7 100644
> --- a/fftool
lgtm
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".
On 8/6/2021 3:08 PM, Andreas Rheinhardt wrote:
James Almer:
From: Matthieu Patou
Suggested-by: ffm...@fb.com
Signed-off-by: James Almer
---
fftools/cmdutils.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 912e881174..
On Thu, Aug 05, 2021 at 02:30:32PM +, Linjie Fu wrote:
> ffmpeg | branch: master | Linjie Fu | Sun Aug 1
> 18:58:19 2021 +0800| [b3a0548a981db52911dd34d9de254c4fee0a8f79] | committer:
> Linjie Fu
>
> fftools/ffmpeg_filter: fix the flags parsing for scaler
>
> Scaler relys on "-sws_flags"
Fixes many -Warray-parameter warnings from GCC 11.
Signed-off-by: Andreas Rheinhardt
---
If someone has a good name for a macro for "5 * 8" in this context,
I'll use it.
libavcodec/aarch64/h264dsp_init_aarch64.c | 8
libavcodec/arm/h264dsp_init_arm.c | 8
libavcodec/
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> James Almer
> Sent: Friday, 6 August 2021 20:27
> To: ffmpeg-devel@ffmpeg.org
> Subject: Re: [FFmpeg-devel] [PATCH] fftools/cmdutils: don't print build
> configuration by default
>
> On 8/6/2021 3:08 PM, Andreas Rheinhardt wrote:
Suggested-by: ffm...@fb.com
Signed-off-by: James Almer
---
fftools/cmdutils.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 912e881174..e6ae749167 100644
--- a/fftools/cmdutils.c
+++ b/fftools/cmdutils.c
@@ -1152,6 +1152,8 @@
6 Aug 2021, 23:17 by jamr...@gmail.com:
> Suggested-by: ffm...@fb.com
> Signed-off-by: James Almer
> ---
> fftools/cmdutils.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
> index 912e881174..e6ae749167 100644
> --- a/fftools/
On 8/6/2021 6:29 PM, Lynne wrote:
6 Aug 2021, 23:17 by jamr...@gmail.com:
Suggested-by: ffm...@fb.com
Signed-off-by: James Almer
---
fftools/cmdutils.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 912e881174..e6ae749167
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> Lynne
> Sent: Friday, 6 August 2021 23:30
> To: FFmpeg development discussions and patches de...@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH v2] fftools/cmdutils: don't print build
> configuration by default
>
> 6 Aug 2021,
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> James Almer
> Sent: Friday, 6 August 2021 23:17
> To: ffmpeg-devel@ffmpeg.org
> Subject: [FFmpeg-devel] [PATCH v2] fftools/cmdutils: don't print build
> configuration by default
>
> Suggested-by: ffm...@fb.com
> Signed-off-by: Ja
On 8/6/2021 6:38 PM, Soft Works wrote:
-Original Message-
From: ffmpeg-devel On Behalf Of
James Almer
Sent: Friday, 6 August 2021 23:17
To: ffmpeg-devel@ffmpeg.org
Subject: [FFmpeg-devel] [PATCH v2] fftools/cmdutils: don't print build
configuration by default
Suggested-by: ffm...@fb.
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> James Almer
> Sent: Friday, 6 August 2021 23:49
> To: ffmpeg-devel@ffmpeg.org
> Subject: Re: [FFmpeg-devel] [PATCH v2] fftools/cmdutils: don't print build
> configuration by default
>
> On 8/6/2021 6:38 PM, Soft Works wrote:
> >
On 8/6/2021 7:08 PM, Soft Works wrote:
-Original Message-
From: ffmpeg-devel On Behalf Of
James Almer
Sent: Friday, 6 August 2021 23:49
To: ffmpeg-devel@ffmpeg.org
Subject: Re: [FFmpeg-devel] [PATCH v2] fftools/cmdutils: don't print build
configuration by default
On 8/6/2021 6:38 PM,
6 Aug 2021, 23:32 by jamr...@gmail.com:
> On 8/6/2021 6:29 PM, Lynne wrote:
>
>> 6 Aug 2021, 23:17 by jamr...@gmail.com:
>>
>>> Suggested-by: ffm...@fb.com
>>> Signed-off-by: James Almer
>>> ---
>>> fftools/cmdutils.c | 4 +++-
>>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>>
>>> diff --gi
On 8/6/2021 8:18 PM, Lynne wrote:
6 Aug 2021, 23:32 by jamr...@gmail.com:
On 8/6/2021 6:29 PM, Lynne wrote:
6 Aug 2021, 23:17 by jamr...@gmail.com:
Suggested-by: ffm...@fb.com
Signed-off-by: James Almer
---
fftools/cmdutils.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
dif
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> James Almer
> Sent: Saturday, 7 August 2021 00:17
> To: ffmpeg-devel@ffmpeg.org
> Subject: Re: [FFmpeg-devel] [PATCH v2] fftools/cmdutils: don't print build
> configuration by default
>
> On 8/6/2021 7:08 PM, Soft Works wrote:
>
On 7/14/2021 12:57 PM, James Almer wrote:
The field was removed during the last major bump.
Signed-off-by: James Almer
---
doc/ffprobe.xsd | 2 -
doc/filters.texi | 2 +-
fftools/ffprobe.c | 4 +-
It's creating too much noise, even for debug
Signed-off-by: softworkz
---
libavformat/mov.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index e95d3d2a90..46bc7b5aa3 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -3611,7 +36
On 8/6/2021 10:31 PM, Soft Works wrote:
It's creating too much noise, even for debug
Signed-off-by: softworkz
---
libavformat/mov.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index e95d3d2a90..46bc7b5aa3 100644
--- a/libavformat/
The test /libavutil/tests/hwdevice checks that when deriving a device
from a source device and then deriving back to the type of the source
device, the result is matching the original source device, i.e. the
derivation mechanism doesn't create a new device in this case.
Previously, this test was u
The flite filter apparently only wanted to declare a struct,
but mistakenly also defined an unused and zero-initialized element
with external linkage.
Signed-off-by: Andreas Rheinhardt
---
Would not have happened if one had actually defined a typedef.
libavfilter/asrc_flite.c | 2 +-
1 file cha
Unused since 1f63665ca567fbc49fa80166d468a822c2999efa.
Signed-off-by: Andreas Rheinhardt
---
Shall I rename ff_ass_split_dialogue2 to ff_ass_split_dialogue?
libavcodec/ass_split.c | 19 ---
libavcodec/ass_split.h | 16
2 files changed, 35 deletions(-)
diff --gi
Unused since 00d0a4aa9eda8553113e51556123c46648a5f31b.
Signed-off-by: Andreas Rheinhardt
---
libavcodec/qsv.c | 13 -
libavcodec/qsv_internal.h | 1 -
2 files changed, 14 deletions(-)
diff --git a/libavcodec/qsv.c b/libavcodec/qsv.c
index 6e3154e1a3..c53e2e3b07 100644
---
Added in cf12a478b206cd107343827426a05aedb83816bc, but not used.
Signed-off-by: Andreas Rheinhardt
---
fftools/cmdutils.c | 1 -
fftools/cmdutils.h | 1 -
2 files changed, 2 deletions(-)
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 912e881174..64237a4796 100644
--- a/fftools/cmdut
在 2021/8/2 下午4:33, yinshiyou...@loongson.cn 写道:
-原始邮件-
发件人: "Jiaxun Yang"
发送时间: 2021-08-02 13:40:54 (星期一)
收件人: "FFmpeg development discussions and patches" ,
yinshiyou...@loongson.cn
抄送:
主题: Re: [FFmpeg-devel] [PATCH] avcodec/mips: Support old style mmi instruction
mnemonics
在 2021
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> Xiang, Haihao
> Sent: Friday, 6 August 2021 07:15
> To: ffmpeg-devel@ffmpeg.org
> Subject: Re: [FFmpeg-devel] [PATCH v2] avfilter: add QSV variants of the
> stack filters
>
> On Thu, 2021-08-05 at 15:53 +, Soft Works wrote:
>
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> Soft Works
> Sent: Friday, 6 August 2021 10:26
> To: FFmpeg development discussions and patches de...@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH v2 1/2] qsvdec: add support for
> HW_DEVICE_CTX method
>
>
>
> > -Origi
Required for uploading frames with alpha for qsv_overlay
Signed-off-by: softworkz
---
libavutil/hwcontext_dxva2.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavutil/hwcontext_dxva2.c b/libavutil/hwcontext_dxva2.c
index 63b037da4a..a652ebf0bb 100644
--- a/libavutil/hwcontext_dxva2.c
++
Signed-off-by: softworkz
---
libavcodec/qsvenc.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/qsvenc.h b/libavcodec/qsvenc.h
index fc8a14143e..7f729ce2ba 100644
--- a/libavcodec/qsvenc.h
+++ b/libavcodec/qsvenc.h
@@ -76,8 +76,8 @@
#define QSV_COMMON_OPTS \
Signed-off-by: softworkz
---
doc/developer.texi | 17 +
1 file changed, 17 insertions(+)
diff --git a/doc/developer.texi b/doc/developer.texi
index b33cab0fc7..d909fa6ea5 100644
--- a/doc/developer.texi
+++ b/doc/developer.texi
@@ -494,6 +494,23 @@ patch is inline or attached per
Required for uploading frames with alpha for qsv_overlay
(v2: remove tab indent)
Signed-off-by: softworkz
---
libavutil/hwcontext_dxva2.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavutil/hwcontext_dxva2.c b/libavutil/hwcontext_dxva2.c
index 63b037da4a..9987cdc578 100644
--- a/libavu
(v2: fix doc build)
Signed-off-by: softworkz
---
doc/developer.texi | 16
1 file changed, 16 insertions(+)
diff --git a/doc/developer.texi b/doc/developer.texi
index b33cab0fc7..ce5500b85d 100644
--- a/doc/developer.texi
+++ b/doc/developer.texi
@@ -494,6 +494,22 @@ patch is in
On Sat, Aug 7, 2021 at 3:46 AM Soft Works wrote:
>
> The test /libavutil/tests/hwdevice checks that when deriving a device
> from a source device and then deriving back to the type of the source
> device, the result is matching the original source device, i.e. the
> derivation mechanism doesn't cr
56 matches
Mail list logo