[FFmpeg-devel] [PATCH] [release/8.0] avformat/mov: fix missing video size and relax check on proj box size (PR #20977)

2025-11-19 Thread Zhao Zhili via ffmpeg-devel
PR #20977 opened by Zhao Zhili (quink) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20977 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20977.patch >From 70e3fbb6484c171d0fa3b6d466865adc2c7332e6 Mon Sep 17 00:00:00 2001 From: Zhao Zhili Date: Tue, 28 Oct 2025 15:43:46 +0800 Subject:

[FFmpeg-devel] fate clients

2025-11-19 Thread Michael Niedermayer via ffmpeg-devel
Hi everyone If you run a fate client, please consider also testing releases https://fatebeta.ffmpeg.org/v8.0 is empty its empty because my fate clients got stuck in august and i didnt notice or in other words, it seems iam the only one testing releases with my fate clients thx -- Michael

[FFmpeg-devel] [PATCH] [release/8.0] avcodec/hevc: fix decoding mv-hevc sample with long_term_rps (PR #20976)

2025-11-19 Thread Zhao Zhili via ffmpeg-devel
PR #20976 opened by Zhao Zhili (quink) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20976 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20976.patch >From f846397a9265ecec4101fd2bfa234ca6936840b9 Mon Sep 17 00:00:00 2001 From: Zhao Zhili Date: Tue, 28 Oct 2025 20:25:12 +0800 Subject:

[FFmpeg-devel] [PATCH] [release/8.0]: videotoolbox: fix crash with negative linesize and move videotoolbox filter to the right place (PR #20975)

2025-11-19 Thread Zhao Zhili via ffmpeg-devel
PR #20975 opened by Zhao Zhili (quink) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20975 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20975.patch >From e74cabe39e131684a1139cbc128bbfec2241c738 Mon Sep 17 00:00:00 2001 From: Zhao Zhili Date: Sat, 15 Nov 2025 23:58:14 +0800 Subject:

[FFmpeg-devel] [PATCH] avcodec/libaomenc: fix MSan warning (PR #20974)

2025-11-19 Thread jzern via ffmpeg-devel
PR #20974 opened by jzern URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20974 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20974.patch codecctl_intp() is used to populate values via aom_codec_control(), not set them. This change moves the output of the return pointer's value after the

[FFmpeg-devel] [PATCH] avcodec/d3d12va_encode: support motion estimation precision mode (PR #20973)

2025-11-19 Thread Steven Xiao via ffmpeg-devel
PR #20973 opened by Steven Xiao (younengxiao) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20973 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20973.patch This code submission is purposed to support the **motion estimation precision mode** for the D3D12 video encoder. By default, t

[FFmpeg-devel] [PATCH] Makefile: remove config_components.asm on distclean (PR #20972)

2025-11-19 Thread Kacper Michajłow via ffmpeg-devel
PR #20972 opened by Kacper Michajłow (kasper93) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20972 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20972.patch Forgotten in c607aae2b95b05bdc7066e3572737cb00a596e9f. Signed-off-by: Kacper Michajłow From c34528ac43db0bf772cb1c836b7aba87

[FFmpeg-devel] Re: [RFC] Funded Task Ideas

2025-11-19 Thread ff--- via ffmpeg-devel
On 2025-10-13 19:40, Michael Niedermayer via ffmpeg-devel wrote: Hi Everyone As we are now looking for sponsors, we also should look for tasks to fund. as i suggested on irc, a j2k vulkan decoder. since a lot of archivists are still stuck with j2k. also would be good to decode (maybe in rea

[FFmpeg-devel] [PATCH] Fix WAV bitrate calculation when bits_per_coded_sample != 8

2025-11-19 Thread Erdinc Kaya via ffmpeg-devel
- Correctly scale bitrate by bits_per_coded_sample instead of assuming 8 bits per byte. - Prevents wrong bitrate reports for 16-bit PCM WAV files. Signed-off-by: Erdinc Kaya --- libavformat/riffdec.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/riffdec.c b/libavformat/ri

[FFmpeg-devel] [PATCH 3/3] avformat/matroskadec: Update EBML syntax to parse EditionEntry

2025-11-19 Thread Alexander Westberg-Bladh via ffmpeg-devel
Update matroska_chapters[] syntax to parse EditionEntry elements into matroska->editions instead of the flat matroska->chapters list. update chapter finding code to look through all editions. Signed-off-by: Alexander Westberg-Bladh --- libavformat/matroskadec.c | 85 ++---

[FFmpeg-devel] [PATCH 2/3] avformat/matroskadec: Add data structures for ordered chapters

2025-11-19 Thread Alexander Westberg-Bladh via ffmpeg-devel
Add MatroskaEdition structure and extend MatroskaChapter and MatroskaDemuxContext with fields needed for ordered chapters support. Signed-off-by: Alexander Westberg-Bladh --- libavformat/matroskadec.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/libavformat/matroskadec.c

[FFmpeg-devel] [PATCH 1/3] avformat/matroska: Add element IDs for ordered chapters

2025-11-19 Thread Alexander Westberg-Bladh via ffmpeg-devel
Add MATROSKA_ID_CHAPTERSEGMENTUID and MATROSKA_ID_CHAPTERSEGMENTEDITIONUID element IDs to support parsing of ordered chapters segment linking. Signed-off-by: Alexander Westberg-Bladh --- libavformat/matroska.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/matroska.h b/libavfo

[FFmpeg-devel] [PATCH 0/3] avformat/matroska: add ordered-chapter parsing

2025-11-19 Thread Alexander Westberg-Bladh via ffmpeg-devel
Hi, This short series lays the groundwork for ordered-chapter playback in Matroska, fixing trac ticket #3123. To start with I added type defs and parsing for editions. I stay compatible with the existing logic by fetching the chapters from all editions thereby flattening the structure. I think

[FFmpeg-devel] Appreciation + Sharing a Project Built on FFmpeg

2025-11-19 Thread Shashwat Verma via ffmpeg-devel
Hi FFmpeg team, My name is Shashwat, and I wanted to reach out to express my appreciation for the work you’ve built over the years. I’m currently building an AI-driven video editing system where a large part of the architecture relies on FFmpeg for composing timelines, applying transformations, an

[FFmpeg-devel] [PATCH] avformat/matroska: add ordered-chapter parsing (PR #20971)

2025-11-19 Thread xobust via ffmpeg-devel
PR #20971 opened by xobust URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20971 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20971.patch This lays the groundwork for ordered-chapter playback in Matroska, fixing ticket [#3123](https://trac.ffmpeg.org/ticket/3123). To stay compatible w

[FFmpeg-devel] Re: FFmpeg 8.0.1 release

2025-11-19 Thread Michael Niedermayer via ffmpeg-devel
On Wed, Nov 19, 2025 at 05:21:13AM +0100, Michael Niedermayer via ffmpeg-devel wrote: > On Sat, Nov 15, 2025 at 04:15:14PM +0100, Michael Niedermayer via > ffmpeg-devel wrote: > > Hi all > > > > due to accumulated bug fixes, i think we should make a new release from > > release/8.0 soon > > wi

[FFmpeg-devel] Re: FFmpeg 8.0.1 release

2025-11-19 Thread Michael Niedermayer via ffmpeg-devel
Hi Zhao On Wed, Nov 19, 2025 at 01:25:30PM +0800, Zhao Zhili via ffmpeg-devel wrote: > > > 在 2025年11月19日,下午12:29,Michael Niedermayer via ffmpeg-devel > > 写道: > > > > On Sat, Nov 15, 2025 at 11:29:26PM +0800, Zhao Zhili via ffmpeg-devel > > wrote: > >> > >> > On Nov 15, 2025, at 23:15,

[FFmpeg-devel] [PATCH] fftools/ffmpeg: fix memleak when sdp create failed (PR #20969)

2025-11-19 Thread Jack Lau via ffmpeg-devel
PR #20969 opened by Jack Lau (JackLau) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20969 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20969.patch Fix #20712 When print_sdp() fails during rtp streaming, sch_start() returns error code without calling wirte_trailer, causing a memory l

[FFmpeg-devel] [PATCH] swscale: Fix ff_sws_pixel_type_to_uint (PR #20968)

2025-11-19 Thread Martin Storsjö via ffmpeg-devel
PR #20968 opened by Martin Storsjö (mstorsjo) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20968 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20968.patch This function uses ff_sws_pixel_type_size to switch on the size of the provided type. However, ff_sws_pixel_type_size returns a si