Re: [FFmpeg-devel] [PATCH v4] avcodec/h264: fix stride calculation in slice_table for multi-slice field video deblocking

2024-12-26 Thread Thilo Borgmann via ffmpeg-devel
uploads to samples@ffmpeg. Thanks, Thilo ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] doc/ffmpeg.texi: replace use of uncommon unicode characters

2024-12-26 Thread Alexander Strasser via ffmpeg-devel
with the new symbols. Alexander [...] _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH 2/4] doc/community: Add list of prohibited behaviors

2024-12-26 Thread Kieran Kunhya via ffmpeg-devel
nts must not target > individuals. > + Hi Michael, Does your post on X calling VDD attendees "vultures" fall under this? Or was that ok because you decided retroactively that it was a "joke"? Regards, Kieran Kunhya _______ ffm

Re: [FFmpeg-devel] Worsening messages

2024-12-26 Thread Kieran Kunhya via ffmpeg-devel
ing you when you feel better again. Merry Christmas -- Vittorio _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] configure: Include quotes around pkg_version

2024-12-28 Thread Alexander Strasser via ffmpeg-devel
Hi Leo and Joe! On 2024-12-27 08:13 -0500, Leo Izen wrote: > On 12/26/24 6:12 PM, J Shiff wrote: > > On Wed, Dec 25, 2024 at 5:03 PM Alexander Strasser via ffmpeg-devel > > wrote: > > > > > > On 2024-12-21 19:29 -0500, J Shiff wrote: > > > > On Sa

Re: [FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-27 Thread Kieran Kunhya via ffmpeg-devel
> >>> > >>> > >> > 👏it's👏not👏a👏democracy👏if👏I👏can👏be👏judge👏jury👏and👏executioner👏 > >>> > >>> You are not him, and never will be. > >> > >> Vittorio, this is not ok at all. I don't even know who "

Re: [FFmpeg-devel] [PATCH] lavc/vvc_mc: reduce sequential dependency in R-V V sad

2024-12-31 Thread Alexander Strasser via ffmpeg-devel
is a case for committing security relevant fixes, even if the maintainer couldn't ack them yet. IMHO we should not let those wait too long because the maintainer is not quick to respond. It's another topic, but should probably also be documented if it isn't. Also it's the lived pra

Re: [FFmpeg-devel] [PATCH] avformat/vqf: Propagate errors from add_metadata()

2024-12-31 Thread Alexander Strasser via ffmpeg-devel
ATA; This looks wrong if I understood this function correctly. The variable *len* is only set at the beginning of the function. If I understand the intent correctly we should either always return AVERROR_INVALIDDATA or we should store the return value of avio_read and return that if it's negative.

Re: [FFmpeg-devel] Vittorio's mailinglist ban, git access removal and message deletion (was: Worsening messages)

2024-12-30 Thread Kieran Kunhya via ffmpeg-devel
just a statement from you saying > you know him and hes still your good friend vittorio > Where's your verification? Any observer can see you are behaving erratically. So why don't you verify yourself? Some Animals are More Equal than Others. Regards, Kieran Kunhya > _____

Re: [FFmpeg-devel] [PATCH] fix pad artifacting

2025-02-03 Thread Ben Lu via ffmpeg-devel
Sure, looks like gmail is complying with a plaintext email RFC. Let me try attaching to eml with: `git format-patch -s -o "outputfolder" --add-header "X-Unsent: 1" --suffix .eml --to [email protected] -1 0f497eb391b` On Mon, Feb 3, 2025 at 3:22 PM James Almer wrote: &g

[FFmpeg-devel] [PATCH 1/3] avfilter/delogo: add parameter to switch on circular delogo

2025-02-03 Thread Jörg Habenicht via ffmpeg-devel
%d, w:%d h:%d band:%d round:%d show:%d\n", + s->x, s->y, s->w, s->h, s->band, s->round, s->show); s->w += s->band*2; s->h += s->band*2; -- 2.45.3 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 0/3] *** SUBJECT HERE ***

2025-02-03 Thread Jörg Habenicht via ffmpeg-devel
iption avfilter/delogo: added the circular delogo algorithm libavfilter/vf_delogo.c | 59 + 1 file changed, 54 insertions(+), 5 deletions(-) -- 2.45.3 ___________ ffmpeg-devel mailing list [email protected] https:/

[FFmpeg-devel] [PATCH 2/3] avfilter/delogo: added circular delogo algorithm description

2025-02-03 Thread Jörg Habenicht via ffmpeg-devel
erp, weightl, weightr, weightt, weightb, weight; uint8_t *xdst, *xsrc; -- 2.45.3 ___________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 3/3] avfilter/delogo: added the circular delogo algorithm

2025-02-03 Thread Jörg Habenicht via ffmpeg-devel
sub), - s->show, direct); + s->round, s->show, direct); } if (!direct) -- 2.45.3 ___________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscr

Re: [FFmpeg-devel] [PATCH] fix pad artifacting

2025-02-03 Thread Ben Lu via ffmpeg-devel
ink->w, s->w), + FFMAX(inlink->h, s->h)); +} if (!out) { av_frame_free(&in); return AVERROR(ENOMEM); -- 2.35.1.70.gdb80f58b59-twtrsrc On Sat, Feb 1, 2025 at 12:52 AM Michael Niedermayer wrote: > Hi >

[FFmpeg-devel] [PATCH 0/3] Patch to create a circular delogo area

2025-02-04 Thread Jörg Habenicht via ffmpeg-devel
rcular delogo algorithm description avfilter/delogo: added the circular delogo algorithm libavfilter/vf_delogo.c | 59 + 1 file changed, 54 insertions(+), 5 deletions(-) -- 2.45.3 ___________ ffmpeg-devel mailing

[FFmpeg-devel] [PATCH 3/3] avfilter/delogo: added the circular delogo algorithm

2025-02-04 Thread Jörg Habenicht via ffmpeg-devel
sub), - s->show, direct); + s->round, s->show, direct); } if (!direct) -- 2.45.3 ___________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscr

[FFmpeg-devel] [PATCH 2/3] avfilter/delogo: added circular delogo algorithm description

2025-02-04 Thread Jörg Habenicht via ffmpeg-devel
erp, weightl, weightr, weightt, weightb, weight; uint8_t *xdst, *xsrc; -- 2.45.3 ___________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 1/3] avfilter/delogo: add parameter to switch on circular delogo

2025-02-04 Thread Jörg Habenicht via ffmpeg-devel
ot;x:%d y:%d, w:%d h:%d band:%d round:%d show:%d\n", + s->x, s->y, s->w, s->h, s->band, s->round, s->show); s->w += s->band*2; s->h += s->band*2; -- 2.45.3 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH v2] examples/transcoding: Fix time_base handling

2025-02-04 Thread Jack Lau via ffmpeg-devel
scoding: Fix time_base handling X-Unsent: 1 To: [email protected] The `dec_ctx->time_base` was incorrectly default set by avcodec_open2(), while `enc_ctx->time_base` was derived from `dec_ctx->framerate`. This mismatch could cause incorrect video duration in the output. This pat

[FFmpeg-devel] [PATCH] examples/transcoding: Fix time_base handling

2025-02-05 Thread Jack Lau via ffmpeg-devel
if (ofmt_ctx->oformat->flags & AVFMT_GLOBALHEADER) -- 2.48.1 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 2/2] avfilter/delogo: change delogo round area to superellipse area

2025-02-07 Thread Jörg Habenicht via ffmpeg-devel
} +if (errno) { +av_log(NULL, AV_LOG_ERROR, + "Error in delogo calculating ellipse value. Math error returned\n"); + return; +} if (xf + yf > 1.0) co

[FFmpeg-devel] [PATCH 0/2] Extend delogo area to a superellipse

2025-02-07 Thread Jörg Habenicht via ffmpeg-devel
1 file changed, 58 insertions(+), 14 deletions(-) -- 2.45.3 _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 1/2] avfilter/delogo: changed type of parameter 'r' to float

2025-02-07 Thread Jörg Habenicht via ffmpeg-devel
CHECK_UNSET_OPT(w); CHECK_UNSET_OPT(h); +if (s->round < 0.0) { +av_log(s, AV_LOG_ERROR, "Option r was set negative (r=%.2f).\n", s->round); +return AVERROR(EINVAL); + } + s->band = 1; -av_log(ctx, AV_LOG_VERBOSE, "x:%d y:%d, w:%d h:

[FFmpeg-devel] [PATCH v2 2/2] avfilter/delogo: change delogo round area to superellipse area

2025-02-07 Thread Jörg Habenicht via ffmpeg-devel
} +if (errno) { +av_log(NULL, AV_LOG_ERROR, + "Error in delogo calculating ellipse value. Math error returned\n"); + return; +} if (xf + yf > 1.0) co

[FFmpeg-devel] [PATCH v2 1/2] avfilter/delogo: changed type of parameter 'r' to float

2025-02-07 Thread Jörg Habenicht via ffmpeg-devel
CHECK_UNSET_OPT(w); CHECK_UNSET_OPT(h); +if (s->round < 0.0) { +av_log(s, AV_LOG_ERROR, "Option r was set negative (r=%.2f).\n", s->round); +return AVERROR(EINVAL); + } + s->band = 1; -av_log(ctx, AV_LOG_VERBOSE, "x:%d y:%d, w:%d h:

[FFmpeg-devel] [PATCH v2 0/2] Extend delogo area to a superellipse

2025-02-07 Thread Jörg Habenicht via ffmpeg-devel
delogo round area to superellipse area libavfilter/vf_delogo.c | 72 + 1 file changed, 58 insertions(+), 14 deletions(-) -- 2.45.3 _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/

[FFmpeg-devel] [PATCH] avformat/hls: fix typo There is an extra space in the original comment

2025-02-09 Thread Jack Lau via ffmpeg-devel
quot;seekable", c->http_seekable, 0); -- 2.48.1 _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avcodec/aarch64/opusdsp_neon: Simplify opus_postfilter_neon

2025-02-07 Thread Krzysztof Pyrkosz via ffmpeg-devel
-- 2.47.2 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH] swscale/aarch64/rgb2rgb_neon: Implemented uyvytoyuv422

2025-02-07 Thread Krzysztof Pyrkosz via ffmpeg-devel
2b +3: +add x3, x3, x8 +add x0, x0, x6 +add x1, x1, x7 +add x2, x2, x7 +cbnz w5, 1b +ret +endfunc -- 2.47.2 _______ ffmpeg-devel mailing list ffm

Re: [FFmpeg-devel] [PATCH] checkasm/v210enc.c: Use checkasm_check_type

2025-02-10 Thread Kieran Kunhya via ffmpeg-devel
On Mon, Feb 10, 2025 at 12:40 PM Martin Storsjö wrote: > > On Sat, 8 Feb 2025, Kieran Kunhya via ffmpeg-devel wrote: > > > $subj > > > -if (memcmp(y0, y1, BUF_SIZE * sizeof(type)) > > \ > > -|| memcmp

Re: [FFmpeg-devel] [PATCH 1/3] avfilter/delogo: add parameter to switch on circular delogo

2025-02-06 Thread Jörg Habenicht via ffmpeg-devel
Hi Am 06.02.25 um 18:12 schrieb Michael Niedermayer: > Hi Jörg > > On Tue, Feb 04, 2025 at 08:53:58PM +0100, Jörg Habenicht via ffmpeg-devel > wrote: >> Add a parameter (boolean) r to switch the area from >> rectangular (r=0) to circular(r=1) delogo. >> [...] >&

Re: [FFmpeg-devel] [PATCH] swscale/aarch64/rgb2rgb_neon: Implemented uyvytoyuv422

2025-02-11 Thread Krzysztof Pyrkosz via ffmpeg-devel
ot;shuffle_bytes_2130"); report("shuffle_bytes_2130"); -check_uyvy_to_422p(); - report("uyvytoyuv422"); +check_uyvy_to_yuv(); +report("uyvytoyuv"); check_interleave_bytes(); report("interleave_bytes"); -- 2.47.2 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 2/2] swscale/aarch64/rgb2rgb_neon: Implemented {yuyv, uyvy}toyuv{420, 422}

2025-02-11 Thread Krzysztof Pyrkosz via ffmpeg-devel
___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 1/2] tests/checkasm/sw_rgb: Added {yuyv, uyvy}toyuv{420, 422} test cases

2025-02-11 Thread Krzysztof Pyrkosz via ffmpeg-devel
vy_to_yuv(); +report("uyvytoyuv"); check_interleave_bytes(); report("interleave_bytes"); -- 2.47.2 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] Democratization

2025-02-01 Thread Kieran Kunhya via ffmpeg-devel
ked the >GA idea originally IIRC) also paul opposed it publically immedeatly >when it was announced many years ago > > We can easily have something better > > The community is thousands of people not just 49 > > thx > Hi Michael, How are you not subject to a one

Re: [FFmpeg-devel] Democratization work in progress draft v2

2025-02-01 Thread Kieran Kunhya via ffmpeg-devel
he biggest GA cohort) and shareholder are you aware of anyone in your company instructing people to vote a certain way? Kieran _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link abo

Re: [FFmpeg-devel] [PATCH] avcodec/amfenc: DX12 Reference-only feature support

2025-01-30 Thread Benjamin Cheng via ffmpeg-devel
ctx->sw_format, ctx->width, ctx->height, @@ -322,6 +374,11 @@ static int d3d12va_get_buffer(AVHWFramesContext *ctx, AVFrame *frame) return ret; frame->data[0] = frame->buf[0]->data; + +if (frames_hwctx->flags & D3D12_RESOURCE_FLAG_VIDEO_DECOD

Re: [FFmpeg-devel] Democratization

2025-02-01 Thread Kieran Kunhya via ffmpeg-devel
On Sat, 1 Feb 2025, 15:03 Michael Niedermayer, wrote: > Hi > > On Sat, Feb 01, 2025 at 02:48:51PM +, Kieran Kunhya via ffmpeg-devel > wrote: > > On Sat, 1 Feb 2025, 14:46 Michael Niedermayer, > > wrote: > > > > > Hi > > > > > > On

[FFmpeg-devel] [PATCH] swscale/aarch64/output.S: refactor ff_yuv2plane1_8_neon

2025-01-31 Thread Krzysztof Pyrkosz via ffmpeg-devel
b.gt2b // loop until width consumed ret endfunc -- 2.45.2 _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ.

[FFmpeg-devel] [PATCH] fix pad artifacting

2025-01-31 Thread Ben Lu via ffmpeg-devel
FFMAX(inlink->w, s->w), + FFMAX(inlink->h, s->h)); +} if (!out) { av_frame_free(&in); return AVERROR(ENOMEM); -- 2.35.1.70.gdb80f58b59-twtrsrc _______ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avformat: add AV1 RTP depacketizer and packetizer

2024-12-11 Thread Tristan Matthews via ffmpeg-devel
Hi, On Friday, December 6th, 2024 at 12:39 PM, Tristan Matthews via ffmpeg-devel wrote: > Hi (also apologies if my client mangles the inline version of the patch, it's > the first time I've tried to review an attached patch with it)... > > On Monday, December 2nd,

Re: [FFmpeg-devel] [PATCH] avcodec: uninit hwaccel in case of software decoder

2024-12-10 Thread Thomas Guillem via ffmpeg-devel
Hi, On Tue, Dec 10, 2024, at 19:29, Anton Khirnov wrote: > Hi, > Quoting Thomas Guillem via ffmpeg-devel (2024-11-29 11:44:21) >> avcodec_get_hw_frames_parameters(), called by the user from get_format, >> is allocating ctx->internal->hwaccel_priv_data. But the hardware &g

Re: [FFmpeg-devel] [RFC 00/13] flvdec/flvenc: add support for enhanced rtmp codecs and multitrack/multichannel

2024-12-12 Thread Dennis Sädtler via ffmpeg-devel
the > same packet, have not been tested at all, since no software can write such > files. > > The set can also be found on GitHub, where ignoring whitespaces makes > specially the last patch a lot more readable: > https://github.com/BtbN/FFmpeg/tree/enhanced-flv > > &

Re: [FFmpeg-devel] [RFC 00/13] flvdec/flvenc: add support for enhanced rtmp codecs and multitrack/multichannel

2024-12-12 Thread Dennis Sädtler via ffmpeg-devel
is point and it is "ready for implementation". Would be nice to have it in mainline ffmpeg soon! Cheers ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH v2] lavc/videotoolboxenc: Add spatial_aq option

2024-12-16 Thread Dennis Sädtler via ffmpeg-devel
_INT, { .i64 = -1 }, -1, 1, VE }, \ { "max_ref_frames", \ "Sets the maximum number of reference frames. This only has an effect when the value is less than the maximum allowed by the profile/level.", \ OFFSET(max_ref_frames), AV_OPT_TYPE_INT, { .i64 = 0

Re: [FFmpeg-devel] [PATCH] lavc/videotoolboxenc: Add spatial_aq option

2024-12-16 Thread Dennis Sädtler via ffmpeg-devel
mit in a bit. ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] SCaLE booth

2024-12-15 Thread Alexander Strasser via ffmpeg-devel
need sponsorship, please check with > FFmpeg's treasurer (who is not me). Sounds cool! Did you ask for a both? If you did it would be best to add an entry in the conferences page: https://trac.ffmpeg.org/wiki/Conferences Greetings, Alexander _________

Re: [FFmpeg-devel] [PATCH 2/5] lavc/container_fifo: move to lavu and make public

2024-12-15 Thread Alexander Strasser via ffmpeg-devel
t ideas. Some suggestions to get started follow in no particular order: * objpool_fifo * reusable_obj_fifo * refstruct_fifo Best regards, Alexander _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH v3] avformat: add AV1 RTP depacketizer and packetizer

2024-12-17 Thread Tristan Matthews via ffmpeg-devel
s is a keyframe and b) a sequence header is present. A keyframe with no sequence header (which an encoder might decide to emit) or a sequence header in a non-keyframe like you're describing will not result in the N bit being set. Hopefully that clarifies things. Best, Tristan _____

Re: [FFmpeg-devel] [PATCH v2 0/3] Make fate tests succeed with zlib-ng

2024-12-17 Thread Alexander Strasser via ffmpeg-devel
was to remove the .alt files after at least all fate clients have been updated to zlib implementations that don't need it anymore. Alexander _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffm

Re: [FFmpeg-devel] [ANNOUNCE] upcoming vote: CC election

2024-12-18 Thread Kieran Kunhya via ffmpeg-devel
o you see a bias in > the CCs decissions ? (as a whole not based on what i write here) > And if so what do you plan to do about it ? But your opinions in this thread are not biased and are factual? Reporting this thread to CC. Kieran _______ ffmpeg-devel m

[FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-19 Thread Kieran Kunhya via ffmpeg-devel
ng to happen but is not capable of acting on the vote. Regards, Kieran Kunhya -- Forwarded message - From: Date: Thu, 19 Dec 2024, 08:55 Subject: Your message to ffmpeg-devel awaits moderator approval To: Your mail to 'ffmpeg-devel' with the subject Re: [FFmpeg-d

[FFmpeg-devel] Coverity access

2024-12-12 Thread Kieran Kunhya via ffmpeg-devel
Hello, This person asked for coverity access: https://x.com/acentauri92/status/1867186643704099105 I don't know if they should have access. Kieran ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-

Re: [FFmpeg-devel] [PATCH 5/7] avformat/mpegts: add s337m support

2024-12-12 Thread Kieran Kunhya via ffmpeg-devel
t relative to 29.97 video. I'm not really sure how an atomic clock is relevant. Kieran > _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH 0/7] RFC: complete rework of s337m support

2024-12-12 Thread Kieran Kunhya via ffmpeg-devel
On Thu, 12 Dec 2024, 13:07 Nicolas Gaullier, wrote: > >De : ffmpeg-devel de la part de Anton > Khirnov > >Envoyé : jeudi 12 décembre 2024 09:36 > > > >I am not intimately familiar with these formats and their mutual > >relationship, so these problems you refe

Re: [FFmpeg-devel] [PATCH] checkasm: Print benchmarks of C-only functions

2024-12-14 Thread Alexander Strasser via ffmpeg-devel
t; regression fix or anything like that, but the change adds value for being > able to use checkasm to benchmark compiler performance. LGTM. Tested on aarch64 . Total run times match. Output had only additional lines which all were for functions ending in `_c` Alexander __

Re: [FFmpeg-devel] [PATCH v2 0/3] Make fate tests succeed with zlib-ng

2024-12-14 Thread Alexander Strasser via ffmpeg-devel
On 2024-12-14 11:09 +0100, Anton Khirnov wrote: > Quoting Alexander Strasser via ffmpeg-devel (2024-12-01 21:13:56) > > This is a fixed up version of the series I sent before. > > > > This worked for me on Ubuntu 20.04 but probably will break > > with older zlib version

Re: [FFmpeg-devel] [PATCH 0/7] RFC: complete rework of s337m support

2024-12-13 Thread Kieran Kunhya via ffmpeg-devel
On Fri, 13 Dec 2024, 02:46 Michael Niedermayer, wrote: > Hi > > On Fri, Dec 13, 2024 at 01:40:43AM +, Kieran Kunhya via ffmpeg-devel > wrote: > > On Thu, 12 Dec 2024, 13:07 Nicolas Gaullier, > > > wrote: > > > > > >De : ffmpeg-devel de la

Re: [FFmpeg-devel] [PATCH 0/7] RFC: complete rework of s337m support

2024-12-13 Thread Kieran Kunhya via ffmpeg-devel
On Fri, 13 Dec 2024, 10:00 Nicolas George, wrote: > Kieran Kunhya via ffmpeg-devel (12024-12-13): > > Where is the second sample rate stored in wav? > > Nowhere, obviously. I am surprised somebody who has been in the project > for more than 12 years still does not know how it

Re: [FFmpeg-devel] [PATCH 0/7] RFC: complete rework of s337m support

2024-12-13 Thread Kieran Kunhya via ffmpeg-devel
On Fri, 13 Dec 2024, 10:14 Nicolas George, wrote: > Kieran Kunhya via ffmpeg-devel (12024-12-13): > > Then the conclusion in your example is wrong. > > No it is not. Either you misunderstood what I explained — I am guessing > you only read it superficially, you did not actuall

Re: [FFmpeg-devel] [PATCH 0/7] RFC: complete rework of s337m support

2024-12-13 Thread Kieran Kunhya via ffmpeg-devel
On Fri, 13 Dec 2024, 09:31 Nicolas George, wrote: > Kieran Kunhya via ffmpeg-devel (12024-12-13): > > Does FFmpeg even support a new sample rate per AVFrame? > > Generate a 48000 Hz MP3. > Generate a 32000 Hz MP3. > Concatenate them. > Convert the result to wave. >

Re: [FFmpeg-devel] [PATCH] avformat: add AV1 RTP depacketizer and packetizer

2024-12-13 Thread Tristan Matthews via ffmpeg-devel
On Thursday, December 12th, 2024 at 4:18 AM, Chris Hodges wrote: > Hi Tristan, > > thanks for taking the time reviewing. > > On 12/6/24 18:39, Tristan Matthews via ffmpeg-devel wrote: > > > Hi (also apologies if my client mangles the inline version of the patch, >

Re: [FFmpeg-devel] [PATCH 5/7] avformat/mpegts: add s337m support

2024-12-13 Thread Kieran Kunhya via ffmpeg-devel
On Fri, 13 Dec 2024, 13:41 Niklas Haas, wrote: > On Fri, 13 Dec 2024 01:37:34 + Kieran Kunhya via ffmpeg-devel < > [email protected]> wrote: > > On Fri, 13 Dec 2024, 00:39 Michael Niedermayer, > > wrote: > > > > > Hi > > > > &g

Re: [FFmpeg-devel] [PATCH] avformat: add AV1 RTP depacketizer and packetizer

2024-12-13 Thread Tristan Matthews via ffmpeg-devel
can discuss the changes and it gives me more time to look into the > issue below. > > On 12/11/24 23:53, Tristan Matthews via ffmpeg-devel wrote: > > > Aside from my minor comments on the patch, one thing that came up in terms > > of testing is that while the packetization seems

[FFmpeg-devel] [PATCH] lavc/videotoolboxenc: Add spatial_aq option

2024-12-13 Thread Dennis Sädtler via ffmpeg-devel
"Sets the maximum number of reference frames. This only has an effect when the value is less than the maximum allowed by the profile/level.", \ OFFSET(max_ref_frames), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, -- 2.39.1.windows.1

Re: [FFmpeg-devel] [PATCH] libavformat/prompeg.c: Add parameters to control FEC ports.

2024-12-13 Thread Kieran Kunhya via ffmpeg-devel
If they are internally mapping to +2 and +4, I am not sure it's a good idea that FFmpeg features are added to work around someone's firewall limitation. Kieran _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [ANNOUNCE] upcoming vote: CC election

2024-12-19 Thread Kieran Kunhya via ffmpeg-devel
it not happened? You can't complain it the CC fails to act when it has voted for something to happen but is not capable of acting on the vote. Regards, Kieran Kunhya > _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/

Re: [FFmpeg-devel] [PATCH v2] avcodec/h264: fix stride calculation in slice_table for multi-slice field video deblocking

2024-12-20 Thread Kieran Kunhya via ffmpeg-devel
else { > deblock_topleft = (sl->mb_x > 0); > -- > 2.43.0 Hi Lingyi, Thank you for your patch. Would it be possible to create a FATE test for this? https://trac.ffmpeg.org/wiki/FATE/AddingATest Regards, Kieran Kunhya _______ ffmpeg

Re: [FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-19 Thread Kieran Kunhya via ffmpeg-devel
On Thu, 19 Dec 2024, 20:30 compn, wrote: > On Thu, 19 Dec 2024 20:15:10 +, Kieran Kunhya via ffmpeg-devel > wrote: > > > Some Animals are More Equal Than Others. > > > > Kieran > > and now a CC candidate calling devs animals ? > This is one of th

Re: [FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-19 Thread Kieran Kunhya via ffmpeg-devel
On Thu, 19 Dec 2024, 20:38 compn, wrote: > On Thu, 19 Dec 2024 20:35:43 +, Kieran Kunhya via ffmpeg-devel > wrote: > > > On Thu, 19 Dec 2024, 20:30 compn, wrote: > > > > > On Thu, 19 Dec 2024 20:15:10 +0000, Kieran Kunhya via ffmpeg-devel > > > wro

Re: [FFmpeg-devel] [ANNOUNCE] upcoming vote: CC election

2024-12-19 Thread Kieran Kunhya via ffmpeg-devel
On Thu, Dec 19, 2024 at 7:25 PM Michael Niedermayer wrote: > > Hi Kieran > > First before replying, id like to say, that i hope we can resolve this and > in the future work together in a mutually more friendly way. > > On Wed, Dec 18, 2024 at 10:18:20PM -0500, Kieran Ku

Re: [FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-19 Thread Alexander Strasser via ffmpeg-devel
to happen with the queued emails. The decentralized/freedom aspects of email are a strong part about what makes email good. Thank you Kieran for complaining about this by opening this thread! Alexander > > reading the mails stuck in the moderation queue and clearing the > moderation

Re: [FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-19 Thread Kieran Kunhya via ffmpeg-devel
On Thu, Dec 19, 2024 at 7:52 PM Michael Niedermayer wrote: > > Hi compn > > On Thu, Dec 19, 2024 at 06:16:03AM -1000, compn wrote: > > On Thu, 19 Dec 2024 08:58:14 +, Kieran Kunhya via ffmpeg-devel > > wrote: > > > > > Hello, > > > > &g

Re: [FFmpeg-devel] [PATCH] avfilter/vf_scale: remove systematic PAL8 hack

2024-12-20 Thread Alexander Strasser via ffmpeg-devel
better long-term solution here isn't to just > > improve the way libavfilter auto-inserts conversion filters, such that it > > could > > automatically insert a paletteuse filter when downstream requires PAL8. > > PAL8 is tricky, encoders may benefit from similarities in p

Re: [FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-19 Thread Kieran Kunhya via ffmpeg-devel
On Thu, Dec 19, 2024 at 9:11 PM compn wrote: > > On Thu, 19 Dec 2024 20:40:55 +, Kieran Kunhya via ffmpeg-devel > wrote: > > > Please can you confirm you will be resigning your moderator status in light > > of the election censorship you have undertaken while at t

[FFmpeg-devel] Crash in Niagara Workbench Streaming with FFmpeg 7.0.1+ (H.264 Codec) on Initial Attempts

2024-11-22 Thread Kumar, Rahul via ffmpeg-devel
___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH v2] fate: Add a target for listing failed tests

2024-12-05 Thread Alexander Strasser via ffmpeg-devel
der > + > +fate-clear-results: > + @rm -f tests/data/fate/*.rep > + > coverage.info: TAG = LCOV > coverage.info: > $(M)lcov -q -d $(CURDIR) -b $(patsubst src%,./,$(SRC_LINK)) --capture | > \ > -- _______ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avformat: add AV1 RTP depacketizer and packetizer

2024-12-06 Thread Tristan Matthews via ffmpeg-devel
Hi (also apologies if my client mangles the inline version of the patch, it's the first time I've tried to review an attached patch with it)... On Monday, December 2nd, 2024 at 9:57 AM, Chris Hodges wrote: > Hi, > > On 11/25/24 18:47, Tristan Matthews via ffmpeg-devel wr

[FFmpeg-devel] [PATCH] avcodec/hw_base_encode: restrict size of next_prev

2024-12-21 Thread Benjamin Cheng via ffmpeg-devel
int p_to_gpb; +// The number of L0/L1 references supported by the driver. +int ref_l0; +int ref_l1; + // Whether the driver supports ROI at all. int roi_allowed; -- 2.47.1 ___ ffmpeg-devel

[FFmpeg-devel] [PATCH v2] avcodec/hw_base_encode: restrict size of next_prev

2024-12-21 Thread Benjamin Cheng via ffmpeg-devel
text { int end_of_stream; int p_to_gpb; +// The number of L0/L1 references supported by the driver. +int ref_l0; +int ref_l1; + // Whether the driver supports ROI at all. int roi_allowed; -- 2.47.1 __

Re: [FFmpeg-devel] [PATCH] configure: Include quotes around pkg_version

2024-12-21 Thread Alexander Strasser via ffmpeg-devel
pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg) > pkg_incdir=$($pkg_config --variable=includedir $pkg_config_flags $pkg) > pkg_incflags=$($pkg_config --cflags-only-I $pkg_config_flags $pkg) > -- ___ ffmpeg-devel mailing list ffmpeg-d

Re: [FFmpeg-devel] Fwd: Your message to ffmpeg-devel awaits moderator approval

2024-12-22 Thread Kieran Kunhya via ffmpeg-devel
intolerant where anyone with the slightest bit of observance can see the problem is you (and your surrogates). Merry Christmas! Kieran > _______________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubsc

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/mpegvideo_enc: Check FLV1 resolution limits

2025-01-12 Thread Alexander Strasser via ffmpeg-devel
his into a more readable and potentially stronger form. Best regards, Alexander _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] avformat/rtpdec: int overflow in start_time_realtime

2025-01-12 Thread Alexander Strasser via ffmpeg-devel
> > 2.41.0 > > Looks ok - I've managed to reproduce this now. > > I'll apply this, and backport it to the 7.1 branch. Thanks Martin! FTR: I could also reproduce and confirm the fix locally. Alexander ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] avformat/mov: merge stts and ctts arrays into one

2025-01-12 Thread Alexander Strasser via ffmpeg-devel
On 2025-01-10 10:40 -0300, James Almer wrote: > On 1/10/2025 10:05 AM, James Almer wrote: > > On 1/7/2025 6:50 PM, Alexander Strasser via ffmpeg-devel wrote: > > > On 2025-01-07 10:55 -0300, James Almer wrote: > > > > Should reduce memory usage as w

Re: [FFmpeg-devel] [PATCH] swscale/cms, graph, lut3d: Use ff_-prefix, don't export, internal functions

2025-01-12 Thread Alexander Strasser via ffmpeg-devel
them and partially tested locally. Nice clean ups. Thank you! Best regards, Alexander _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ.

Re: [FFmpeg-devel] [PATCH 1/2] ffbuild/bin2c: misc fix

2025-01-12 Thread Alexander Strasser via ffmpeg-devel
or(input) || !feof(input)) +if (ferror(input) || !feof(input)) { +fclose(input); return -1; + } fclose(input); -- ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/ffv1enc: Fix handling of 32bit unsigned sambols

2025-01-12 Thread Alexander Strasser via ffmpeg-devel
> -const int a = FFABS(v); > +const unsigned a = is_signed ? FFABS(v) : v; > const int e = av_log2(a); > put_rac(c, state + 0, 0); > if (e <= 9) { > -- LGTM but s/sambols/symbols/ in the Subject/Git-short-message I suspect. Alexander _

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Remove audio_drift_threshold

2025-01-19 Thread Alexander Strasser via ffmpeg-devel
(and should be non-controversial to push at this point) Thanks, Alexander _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avutil/aarch64/float_dsp_neon: Refactor ff_vector_fmac_scalar_neon

2025-01-19 Thread Krzysztof Pyrkosz via ffmpeg-devel
{v18.4s, v19.4s}, [x0], #32 +stp q18, q19, [x0], #32 b.ne1b ret endfunc -- 2.45.2 ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe

[FFmpeg-devel] avutil/aarch64/float_dsp_neon: Refactor ff_vector_fmac_scalar_neon

2025-01-19 Thread Krzysztof Pyrkosz via ffmpeg-devel
Removed two redundant pointer arithmetic operations and split load section into two smaller ones. Speedup compared to C increased from 4.50 to 5.80. ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avfilter: minor spell fix

2025-01-19 Thread Alexander Strasser via ffmpeg-devel
> +av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO executable > network or inference request\n"); > return ret; > } > } > -- LGTM, will push it soon'ish if Guo doesn't beat me to it. Thanks, Alexander ______

[FFmpeg-devel] [PATCH] avutil/aarch64/float_dsp_neon: Refactor ff_vector_fmul_add_neon

2025-01-19 Thread Krzysztof Pyrkosz via ffmpeg-devel
___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avutil/aarch64/float_dsp_neon: Refactor ff_butterflies_float_neon

2025-01-19 Thread Krzysztof Pyrkosz via ffmpeg-devel
___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH v0] Implement promeg decoder.

2025-01-22 Thread Kieran Kunhya via ffmpeg-devel
On Wed, Jan 22, 2025 at 3:33 PM Michael Niedermayer wrote: > > On Mon, Jan 20, 2025 at 06:46:46AM +, Kieran Kunhya via ffmpeg-devel > wrote: > > > > > > > The data arrives on multiple sockets, leading to all sorts > > > > of opportunities

Re: [FFmpeg-devel] Regarding Git Tooling

2025-01-20 Thread Kieran Kunhya via ffmpeg-devel
for new contributors? Running two systems concurrently is a recipe for disaster and makes a difficult process essentially impossible. Kieran > ___________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To u

Re: [FFmpeg-devel] [PATCH v0] Implement promeg decoder.

2025-01-22 Thread Kieran Kunhya via ffmpeg-devel
On Wed, Jan 22, 2025 at 4:37 PM Michael Niedermayer wrote: > > Hi > > On Mon, Jan 20, 2025 at 03:00:17PM +, Kieran Kunhya via ffmpeg-devel > wrote: > [...] > > > Error recovery protocols are complicated - > > everything is complicated > > > > this

Re: [FFmpeg-devel] [PATCH v0] Implement promeg decoder.

2025-01-22 Thread Kieran Kunhya via ffmpeg-devel
On Wed, Jan 22, 2025 at 4:53 PM Romain Beauxis wrote: > > Le mer. 22 janv. 2025 à 10:29, Kieran Kunhya via ffmpeg-devel > a écrit : > > > > On Wed, Jan 22, 2025 at 3:33 PM Michael Niedermayer > > wrote: > > > > > > On Mon, Jan 20, 2025 at 06:

[FFmpeg-devel] [PATCH] libavutil/avstring: av_match_list: Update API documentation

2025-01-22 Thread Alexander Strasser via ffmpeg-devel
separator Character that separates items in the given lists. + * + * @returns 0 if no match was found, otherwise 1. */ int av_match_list(const char *name, const char *list, char separator); -- ___ ffmpeg-devel mailing list [email protected] https

<    15   16   17   18   19   20   21   22   23   24   >