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

2024-11-25 Thread Tristan Matthews via ffmpeg-devel
ou set it if you're dealing with a FRAME OBU of type 0 (keyframe) or 2 (intra-only)? You'd need to parse the OBU to extract that however. Best, Tristan ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo

Re: [FFmpeg-devel] Discussion about mails from 9 years ago Was: [PATCH 1/2] doc/community: Add a standard set of rules for software development mailing lists

2024-11-24 Thread Kieran Kunhya via ffmpeg-devel
On Sun, 24 Nov 2024, 19:09 Michael Niedermayer, wrote: > Hi Kieran > > I think this is off topic for this thread, but i will reply with adjusted > Subject and as a new thread > > On Sun, Nov 24, 2024 at 02:58:29PM +, Kieran Kunhya via ffmpeg-devel > wrote: > >

Re: [FFmpeg-devel] Discussion about mails from 9 years ago Was: [PATCH 1/2] doc/community: Add a standard set of rules for software development mailing lists

2024-11-24 Thread Kieran Kunhya via ffmpeg-devel
of new ideas and it's only you and a few others that talk repeatedly about ancient history. It's as if this current setup is highly convenient for you... Kieran _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listin

[FFmpeg-devel] [PATCH] avcodec/pthread_frame: rework assert

2024-11-29 Thread Thomas Guillem via ffmpeg-devel
hwaccel != src->hwaccel)) { ff_hwaccel_uninit(dst); -- 2.45.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] [PATCH] avcodec/pthread_frame: rework assert

2024-11-29 Thread Thomas Guillem via ffmpeg-devel
This patch is an alternative to the patch "avcodec: add avcodec_reset_hw_frames_parameters(): On Fri, Nov 29, 2024, at 09:34, Thomas Guillem via ffmpeg-devel wrote: > avcodec_get_hw_frames_parameters(), called by the user from get_format, > is allocating ctx->internal->hwaccel_p

Re: [FFmpeg-devel] [PATCH] avcodec: add avcodec_reset_hw_frames_parameters()

2024-11-29 Thread Thomas Guillem via ffmpeg-devel
Or you can check the alternative patch: "avcodec/pthread_frame: rework assert" On Thu, Nov 28, 2024, at 16:57, Thomas Guillem via ffmpeg-devel wrote: > usage example: > > AVBufferRef *hwframes_ref; > int ret = avcodec_get_hw_frames_parameters

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

2024-11-29 Thread Thomas Guillem via ffmpeg-devel
setup required. ret = user_choice; +// Remove a potential failed hwaccel context +ff_hwaccel_uninit(avctx); break; } config = &hw_config->public; -- 2.45.2 ___________ ffmpeg-devel mailing list ffm

Re: [FFmpeg-devel] [PATCH] avcodec/pthread_frame: rework assert

2024-11-29 Thread Thomas Guillem via ffmpeg-devel
Sorry for the spam. "avcodec: uninit hwaccel in case of software decoder" is a better version. On Fri, Nov 29, 2024, at 09:37, Thomas Guillem via ffmpeg-devel wrote: > This patch is an alternative to the patch "avcodec: add > avcodec_reset_hw_frames_parameters(): > >

Re: [FFmpeg-devel] [PATCH] doc/infra: List at what companies the name servers are hosted and who provides the servers

2024-11-27 Thread Kieran Kunhya via ffmpeg-devel
On Wed, 27 Nov 2024, 16:56 Michael Niedermayer, wrote: > Hi Kieran > > On Wed, Nov 27, 2024 at 12:01:03AM +, Kieran Kunhya via ffmpeg-devel > wrote: > > On Tue, 26 Nov 2024, 23:32 Michael Niedermayer, > > wrote: > > > > > Signed-off-by: Michael Nied

[FFmpeg-devel] [PATCH] avcodec: add avcodec_reset_hw_frames_parameters()

2024-11-28 Thread Thomas Guillem via ffmpeg-devel
nst FFHWAccel *hwaccel) { -- 2.45.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] When will the patch mentioned at the following URL be merged into its source code?

2024-11-29 Thread Bryan Kirk via ffmpeg-devel
*subject* https://ffmpeg.org/pipermail/ffmpeg-devel/2024-May/328600.html ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected]

Re: [FFmpeg-devel] Patch for libx265 memory leak

2024-11-16 Thread Timo Rothenpieler via ffmpeg-devel
matches between parallel encodes. So the libx265.c wrapper at least would need to check the already initialized global CTU state, and cleanly error out if it mismatches. Or plain not allow more than exactly one x265 encode. On 11/11/24, 10:46 PM, "ffmpeg-devel on behalf of Damiano Gal

Re: [FFmpeg-devel] [PATCH 3/9] avcodec/webp: Check ref_x/y

2024-11-15 Thread Thilo Borgmann via ffmpeg-devel
: Michael Niedermayer --- libavcodec/webp.c | 3 +++ 1 file changed, 3 insertions(+) Should be ok if tested. -Thilo ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link

Re: [FFmpeg-devel] [PATCH v13 2/8] avcodec/webp: separate VP8 decoding

2024-11-15 Thread Thilo Borgmann via ffmpeg-devel
Am 21.06.24 um 13:52 schrieb Anton Khirnov: Quoting Thilo Borgmann via ffmpeg-devel (2024-06-21 12:43:17) From: Thilo Borgmann via ffmpeg-devel --- libavcodec/webp.c | 50 +-- 1 file changed, 44 insertions(+), 6 deletions(-) diff --git a

Re: [FFmpeg-devel] [PATCH 16/22] avformat/webpenc: Check filesize in trailer

2024-11-15 Thread Thilo Borgmann via ffmpeg-devel
. -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 2/3] doc/developer: Document how disagreements should be handled

2024-11-17 Thread Kieran Kunhya via ffmpeg-devel
ent. > > Strongly against. It would lead to the project partitioning into walled > gardens each with its own inconsistent set of rules. > +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".

Re: [FFmpeg-devel] [PATCH 1/2] doc/community: Add a standard set of rules for software development mailing lists

2024-11-24 Thread Kieran Kunhya via ffmpeg-devel
. Assume good intentions and avoid escalating > > >conflicts. > > > > That's even worse. We can't control people's opinions to have them assume > > good intentions. That doesn't belong at all. > > The goal isn’t to control opinions but

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

2024-11-26 Thread Kumar, Rahul via ffmpeg-devel
I tried to stream H264 video outside Niagara(attached file) Looks like it is running there: Can you pls guide how to capture ffmpeg crash specific logs which we are facing in Niagara? Regards, Rahul -Original Message- From: ffmpeg-devel On Behalf Of Frank Plowman Sent: Friday

Re: [FFmpeg-devel] [PATCH] doc/infra: List at what companies the name servers are hosted and who provides the servers

2024-11-26 Thread Kieran Kunhya via ffmpeg-devel
4-11-22", though I accept this could be a coincidence. https://who.is/whois/avcodec.org Regards, Kieran Kunhya ___ 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 1/3] Reapply "tests/fate: disable compression for zlib-based codecs"

2024-12-01 Thread Alexander Strasser via ffmpeg-devel
g.avi +8a728d2ddfa7d6426c0b86e98936 *tests/data/fate/vsynth_lena-mpng.avi +15278752 tests/data/fate/vsynth_lena-mpng.avi 98d0e2854731472c5bf13d8638502d0a *tests/data/fate/vsynth_lena-mpng.out.rawvideo stddev:1.26 PSNR: 46.10 MAXDIFF: 13 bytes: 7603200/ 7603200 diff --git a/tests/ref/vs

[FFmpeg-devel] [PATCH v2 2/3] fate: Make it possible to have alternative reference files

2024-12-01 Thread Alexander Strasser via ffmpeg-devel
+esac +cmperr=$? +fi + test $err = 0 && err=$cmperr if [ "$report_type" = "ignore" ]; then test $err = 0 || echo "IGNORE\t${test}" && err=0 && unset sig -- ___ 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 0/3] Make fate tests succeed with zlib-ng

2024-12-01 Thread Alexander Strasser via ffmpeg-devel
iles changed, 161 insertions(+), 84 deletions(-) create mode 100644 tests/ref/fate/mov-cover-image.alt create mode 100644 tests/ref/fate/png-mdcv.alt -- ___________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-deve

[FFmpeg-devel] [PATCH v2 3/3] fate: Add .alt files so all tests pass on Ubuntu 20.04

2024-12-01 Thread Alexander Strasser via ffmpeg-devel
quot; +frames.frame.0.side_data_list.side_data.1.white_point_y="16450/5" +frames.frame.0.side_data_list.side_data.1.min_luminance="50/1" +frames.frame.0.side_data_list.side_data.1.max_luminance="1000/1" -- _______ f

[FFmpeg-devel] [PATCH] avcodec/vvc decode: ALF filtering without CC-ALF

2024-12-02 Thread Chris Warrington via ffmpeg-devel
r system. Do not copy them or disclose the contents to any other person. _______ 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] [RFC] STF 2025

2024-11-15 Thread Thilo Borgmann via ffmpeg-devel
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 1/2] doc/infra: clarify domain name servers

2024-11-26 Thread Kieran Kunhya via ffmpeg-devel
> wrote: > >> > >>> Signed-off-by: Michael Niedermayer > > [...] > >>> +ns1.avcodec.org master Name server > >>> +ns2.avcodec.org slave Name server > >>> +ns3.avcodec.org slave Name server > Please document who owns avcodec.org and

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

2024-12-01 Thread Alexander Strasser via ffmpeg-devel
le index adb0799328..2c4ad7c18f 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -314,7 +314,7 @@ fate-list: @printf '%s\n' $(sort $(FATE)) fate-list-failing: - @cat tests/data/fate/*.rep | cut -f 1-2 -d : | grep -v :0 | sed 's/:.*//;s/^/fate-/' + @awk -F:

[FFmpeg-devel] [PATCH] avcodec/cbs_h266: Fix typo

2024-12-01 Thread Alexander Strasser via ffmpeg-devel
1, 0); +us(hlen, sps_subpic_height_minus1[0], 0, max_height_minus1, 1, 0); else infer(sps_subpic_height_minus1[0], max_height_minus1); if (!current->sps_independent_subpics_flag) { -- _______ ffm

Re: [FFmpeg-devel] [RFC] infrastructure documentation

2024-12-04 Thread Kieran Kunhya via ffmpeg-devel
> > > [email protected]:ffmpeg-internals > > > > can you move doc/infra.txt there. > > if the community wants that, i could > > do people want that ? > > thx > > [...] > > -- > Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB >

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

2024-12-04 Thread Kieran Kunhya via ffmpeg-devel
this case, do you go forwards or go backwards (FYI in Upipe we go backwards) 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-05 Thread Kieran Kunhya via ffmpeg-devel
ue). Why not just send the packet with the actual PTS (including the guard band) to Dolby E and then resample there? The resampler needs to handle the NTSC 1601/1602 cadence. 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] [RFC] infrastructure documentation

2024-12-05 Thread Kieran Kunhya via ffmpeg-devel
On Thu, Dec 5, 2024 at 5:04 PM Michael Niedermayer wrote: > > Hi Kieran > > On Wed, Dec 04, 2024 at 09:51:23PM +, Kieran Kunhya via ffmpeg-devel > wrote: > > Hi Michael, > > > > Are you able to document the differences between source.ffmpeg.org and >

Re: [FFmpeg-devel] [PATCH] avcodec/vvc decode: ALF filtering without CC-ALF

2024-12-03 Thread Chris Warrington via ffmpeg-devel
_enabled_flag/sh_alf_cc_cr_enabled_flag or the similar picture header values. _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected]

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

2024-12-06 Thread Thomas Guillem via ffmpeg-devel
Ping. On Fri, Nov 29, 2024, at 11:44, Thomas Guillem via ffmpeg-devel wrote: > avcodec_get_hw_frames_parameters(), called by the user from get_format, > is allocating ctx->internal->hwaccel_priv_data. But the hardware > decoding setup may fail on the user side and it may fallb

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

2024-12-05 Thread Alexander Strasser via ffmpeg-devel
On 2024-12-04 16:07 +0200, Martin Storsjö wrote: > On Sun, 1 Dec 2024, Alexander Strasser via ffmpeg-devel wrote: [...] > > > > Would it be better to use the same description as int fate.texi ? > > Sure, I can add that extra parenthesis. Thanks. [...] > > > +fate

Re: [FFmpeg-devel] [PATCH] avcodec/png{dec, enc}: update mDCV and cLLI chunk capitalization

2024-12-07 Thread Alexander Strasser via ffmpeg-devel
D(mdcv->white_point[1], 5)); > AV_WB32(s->buf + 16, PNG_Q2D(mdcv->max_luminance, 1)); > AV_WB32(s->buf + 20, PNG_Q2D(mdcv->min_luminance, 1)); > -png_write_chunk(&s->bytestream, MKTAG('m', 'D', 'C',

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

2024-12-07 Thread Alexander Strasser via ffmpeg-devel
more than 20 years * I love reading source code * I have a nag at studying languages be it natural ones or programming languages * My day job is not related to FFmpeg or audio/video projects Best regards, Alexander _______ ffmpeg-devel mailing list ff

Re: [FFmpeg-devel] [PATCH] web: Add link to conferences page

2024-12-09 Thread Alexander Strasser via ffmpeg-devel
>Developers > -- Should probably be fine. Maybe wait a few more days for comments. 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] avcodec/mpeg12dec: fix range for cc_format option

2024-12-28 Thread Kieran Kunhya via ffmpeg-devel
On Tue, Dec 24, 2024 at 9:59 PM Marth64 wrote: > > After support was added for DVB 0502 Closed Caption coding, What is "DVB 0502"? Kieran _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/

Re: [FFmpeg-devel] [PATCH 2/4] doc/faq: Anwser some questions about he GA, which keep popping up

2025-01-06 Thread Kieran Kunhya via ffmpeg-devel
by their employers. > + > @bye > -- > Hi Michael, Can you add that you are exempt from this as you are incorruptible? Regards, Kieran Kunhya > ___________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ff

[FFmpeg-devel] [PATCH 4/4] avfilter/vf_frei0r: support mixer2 and mixer3 plugins

2025-01-01 Thread Stefan Breunig via ffmpeg-devel
0..941b46b148 --- /dev/null +++ b/tests/ref/fate/filter-frei0r-mixer2 @@ -0,0 +1,10 @@ +#tb 0: 1/1 +#media_type 0: video +#codec_id 0: rawvideo +#dimensions 0: 320x240 +#sar 0: 1/1 +0, 0, 0, 1, 307200, 0x1fa4a17c +0, 1, 1, 1, 30720

[FFmpeg-devel] [PATCH 3/4] fate/filter-video: add frei0r and frei0r_src tests

2025-01-01 Thread Stefan Breunig via ffmpeg-devel
6, 0xe2b9de94 +0, 3, 3,1, 16, 0xe2b9de94 +0, 4, 4,1, 16, 0xe2b9de94 -- 2.45.2 _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To uns

[FFmpeg-devel] [PATCH 2/4] avfilter/vf_frei0r: fix time when input is realigned

2025-01-01 Thread Stefan Breunig via ffmpeg-devel
ts * av_q2d(inlink->time_base), +s->update(s->instance, time, (const uint32_t *)in->data[0], (uint32_t *)out->data[0]); -- 2.45.2 ___ ffmpeg-devel mailing list [email protected] https:/

[FFmpeg-devel] [PATCH 1/4] avfilter/vf_frei0r: fix time not being passed in seconds

2025-01-01 Thread Stefan Breunig via ffmpeg-devel
(uint32_t *)out->data[0]); -- 2.45.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] FFmpeg governance

2025-01-01 Thread Kieran Kunhya via ffmpeg-devel
On Wed, Jan 1, 2025 at 11:10 PM compn wrote: > > On Tue, 31 Dec 2024 17:28:31 +, Kieran Kunhya via ffmpeg-devel > wrote: > > > I personally don't want any control (I am not in GA or CC), I want the > > people to control FFmpeg. > > iirc someone wanted, to

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

2025-01-02 Thread Alexander Strasser via ffmpeg-devel
On 2024-12-28 12:56 +0100, Alexander Strasser via ffmpeg-devel wrote: > On 2024-12-27 08:13 -0500, Leo Izen wrote: [...] > > > > I did a bit of testing and I believe the issue is >=, specifically, it's > > being interpreted as a redirect-out to a file named "=&q

Re: [FFmpeg-devel] [PATCH] avfilter/vf_grayworld: Use the correct pointer for av_log()

2025-01-06 Thread Alexander Strasser via ffmpeg-devel
uot;Gray world color correction works on > linear light only.\n"); > } > > td.in = in; > -- LGTM 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] [RFC PATCH] avformat/rtpdec: fix another int overflow in start_time_realtime

2025-01-06 Thread Alexander Strasser via ffmpeg-devel
objections from other developers. Thanks for submitting this patch! 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/ipfsgateway: fix capitalizaton mistake

2025-01-07 Thread Alexander Strasser via ffmpeg-devel
&h->interrupt_callback, options, > h->protocol_whitelist, > -- Not super urgent but LGTM ;-) Isn't the patch authored by NyanMaths though? Best regards, Alexander _______ ffmpeg-devel mail

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

2025-01-07 Thread Alexander Strasser via ffmpeg-devel
, 11,1, 921600, 0x01a16629 > -- 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/faq: Anwser some questions about he GA, which keep popping up

2025-01-07 Thread Alexander Strasser via ffmpeg-devel
t thru as intended with many people. Third, AFAIU this was to start discussing that issue, but I think it's rather weird to to that in this mixed patch series. Not sure how to proceed, but I would think it's better to at least change the subject when discussing this further or maybe start a new thread by optionally quoting this patch. [...] 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 3/4] doc/faq: Document the plan ahead for Governance

2025-01-07 Thread Alexander Strasser via ffmpeg-devel
sion. And would advise the same to proceed here (change subject or start new thread). 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] avutil/frame.h: improve documentation for AV_FRAME_FLAG_LOSSLESS

2025-01-08 Thread Alexander Strasser via ffmpeg-devel
hing new AFAICT. > */ > #define AV_FRAME_FLAG_LOSSLESS(1 << 5) > /** > -- LGTM maybe Marton can also comment. 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".

Re: [FFmpeg-devel] FFmpeg governance and accusations

2024-12-30 Thread Kieran Kunhya via ffmpeg-devel
l exclude them permanently for > all times) > > Also the text quoted from me from years ago saying i would > support passing power on, has expired now, the community back then also is not > the GA now. Hi Michael, What about this quote from https://lists.ffmpeg.org/pipermail/ffm

Re: [FFmpeg-devel] FFmpeg governance and accusations

2024-12-30 Thread Kieran Kunhya via ffmpeg-devel
jury and executioner"? If there was a Nobel Prize for Mental Gymnastics, this email would win. Regards, Kieran Kunhya _______ 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] [RFC] github assembly course ?

2024-12-27 Thread Kieran Kunhya via ffmpeg-devel
ay have seen on IRC I am in the process of writing assembly lessons (which I have shared on IRC). Please could I have access to FFmpeg Github so I can publish some assignments. Regards, Kieran Kunhya ___________ ffmpeg-devel mailing list [email protected] htt

Re: [FFmpeg-devel] Worsening messages

2024-12-27 Thread Kieran Kunhya via ffmpeg-devel
r years. We made a > collective effort when big changes had to be merged, especially the > switch to refcounted frames. > Derek did the merges as well for a while. I'm not going to address the rest of your revisionist history. Kieran > _________

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

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