Re: [FFmpeg-devel] [PATCH 7/8] avformat/mpegts: Fix for the DOVI video stream descriptor

2021-10-26 Thread lance . lmwang
On Thu, Oct 14, 2021 at 09:09:01PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > By <> > > Signed-off-by: Limin Wang > --- > libavformat/mpegts.c | 11 +-- > 1 file changed, 9 insertions(+), 2 deletions(-) > > diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c >

[FFmpeg-devel] [PATCH] avfilter: split negate filter from lut filter

2021-10-26 Thread Paul B Mahol
Using luts for negating is suboptimal. FATE test changes because filter no longer clips values into limited color range. Signed-off-by: Paul B Mahol --- doc/filters.texi | 13 ++ libavfilter/Makefile | 2 +- libavfilter/vf_lut.c | 28 ---

[FFmpeg-devel] [PATCH] fftools/ffplay: don't disable x11 compositing

2021-10-26 Thread Zane van Iperen
Prevents desktop stutters caused by the change (specifically on KDE). We're not a game, we don't actually need it disabled. Signed-off-by: Zane van Iperen --- fftools/ffplay.c | 4 1 file changed, 4 insertions(+) diff --git a/fftools/ffplay.c b/fftools/ffplay.c index

Re: [FFmpeg-devel] [PATCH][RFC] avformat/http: Add short_seek_size option

2021-10-26 Thread Derek Buitenhuis
On 10/26/2021 4:14 PM, Derek Buitenhuis wrote: > Signed-off-by: Derek Buitenhuis > --- > libavformat/http.c | 4 > 1 file changed, 4 insertions(+) As a further note, I'm unclear if it belongs in HTTP specifically, or should be added back as public to AVIO in general. What I do know is

[FFmpeg-devel] [PATCH][RFC] avformat/http: Add short_seek_size option

2021-10-26 Thread Derek Buitenhuis
In 45bfe8b838275235412777dd430206d9a24eb3ee, short_seek_threshold was removed from the public AVIO struct. Although this option was private and not intended to be used by public API users, it was nonetheless, because it provided functionality that could otherwise not be gained via public API.

Re: [FFmpeg-devel] [PATCH 4/4] lavc/aarch64: clean-up sao band 8x8 function formatting

2021-10-26 Thread Martin Storsjö
On Tue, 26 Oct 2021, J. Dekker wrote: On 19 Oct 2021, at 10:40, Martin Storsjö wrote: This one had the right indentation to start with, don't reindent it according to the new incorrectly indented code you're adding. Yep. This was a mistake, some of (my) previously pushed code is actually

Re: [FFmpeg-devel] [PATCH 4/4] lavc/aarch64: clean-up sao band 8x8 function formatting

2021-10-26 Thread J. Dekker
On 19 Oct 2021, at 10:40, Martin Storsjö wrote: > On Thu, 7 Oct 2021, J. Dekker wrote: > >> Signed-off-by: J. Dekker >> --- >> libavcodec/aarch64/hevcdsp_sao_neon.S | 103 +++--- >> 1 file changed, 44 insertions(+), 59 deletions(-) >> >> diff --git

Re: [FFmpeg-devel] [PATCH 1/2] fftools/ffmpeg: exit application when decoding returns AVERROR_EXIT

2021-10-26 Thread James Almer
On 10/26/2021 12:33 AM, Soft Works wrote: -Original Message- From: ffmpeg-devel On Behalf Of James Almer Sent: Monday, October 25, 2021 5:33 PM To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH 1/2] fftools/ffmpeg: exit application when decoding returns AVERROR_EXIT On