[FFmpeg-devel] Re: [PATCH] vf_colorspace: Add an option to clamp trc LUT output

2025-09-04 Thread Drew Dunne via ffmpeg-devel
t;> On Tue, Aug 26, 2025 at 2:33 PM Ronald S. Bultje >> wrote: >> >>> Hi Drew, >>> >>> Thanks for the bug report! >>> >>> On Mon, Aug 25, 2025 at 10:50 AM Drew Dunne via ffmpeg-devel < >>> [email protected]> wrote: >>>

[FFmpeg-devel] [PATCH] vf_colorspace: Add an option to clamp trc LUT output (PR #20438)

2025-09-04 Thread Drew Dunne via ffmpeg-devel
er_iall), AV_OPT_TYPE_INT, { .i64 = CS_UNSPECIFIED }, CS_UNSPECIFIED, CS_NB - 1, FLAGS, .unit = "all" }, -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/vaapi_encode: avoid potential overflow (PR #20421)

2025-09-03 Thread Tong Wu via ffmpeg-devel
AGS } + { .i64 = 0 }, 0, INT_MAX / 8, FLAGS } #define VAAPI_ENCODE_RC_MODE(name, desc) \ { #name, desc, 0, AV_OPT_TYPE_CONST, { .i64 = RC_MODE_ ## name }, \ -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe

[FFmpeg-devel] Feedback requested (Re: [PATCH v2] libavfilter/vf_remap_opencl: make kernel handle subsampled chroma)

2025-09-09 Thread Matthias Welwarsky via ffmpeg-devel
first patch for ffmpeg and I have little experience with opencl etc, looking for insights. BR, Matthias _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-09 Thread Kieran Kunhya via ffmpeg-devel
On Tue, 9 Sept 2025, 09:19 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi Everyone > > The subject of funding and sponsors came up a few times recently. > > I think FFmpeg needs a clear guideline on this matter. To avoid > confusion, to av

[FFmpeg-devel] [PATCH 5/7] decklink_dec: store timecode in 64-bit RFC 5484 format

2025-09-09 Thread Jerome Martinez via ffmpeg-devel
e = sizeof(uint64_t) * 4; +uint64_t *sd = (uint64_t *)av_packet_new_side_data(&pkt, AV_PKT_DATA_S12M_TIMECODE, size); if (sd) { *sd = 1; // one TC -- 2.46.0.windows.1 _____

[FFmpeg-devel] Re: SDR debate again Was: Re: [RFC] Sponsors & Funding

2025-09-09 Thread Kieran Kunhya via ffmpeg-devel
; of SDR by many companies. > Not because they care about SDR, but because they care about me working on > the FFmpeg code and SDR has no cost to them. This is completely delusional. Kieran ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] avcodec/decode: fix enum conversion warnings in side_data_map.

2025-09-07 Thread Michael Niedermayer via ffmpeg-devel
On Thu, Sep 04, 2025 at 07:43:36PM +0800, 岑湛权 via ffmpeg-devel wrote: > From: zhanquan cen > > Fix two -Wenum-conversion warnings: > - Implicit conversion from AVPacketSideDataType to AVFrameSideDataType > - Implicit conversion from AVFrameSideDataType to AVPacketSideDataType

[FFmpeg-devel] [PATCH] WIP: Several improvements around early decoding latency and memory usage of unused inputs (PR #20457)

2025-09-07 Thread Niklas Haas via ffmpeg-devel
!avctx->internal->draining && !fctx->nb_early_frames) continue; p = &fctx->threads[fctx->next_finished]; @@ -612,6 +613,8 @@ int ff_thread_receive_frame(AVCodecContext *avctx, AVFrame *frame) * we first return all the frames, then the error */ if (fctx->df.nb_f) { decoded_frames_pop(&fctx->df, frame); +if (fctx->nb_early_frames) +fctx->nb_early_frames--; ret = 0; } else { ret = fctx->result; @@ -973,6 +976,7 @@ av_cold int ff_frame_thread_init(AVCodecContext *avctx) goto error; } +fctx->nb_early_frames = 1; return 0; error: -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/whip: enable RTCP NACK for whip (PR #20460)

2025-09-07 Thread Jack Lau via ffmpeg-devel
FMT=1 + */ +if (pt != RTCP_RTPFB) +goto write_packet; +if (fmt == 1) +handle_nack_rtx(s, ret); +} write_packet: if (whip->h264_annexb_insert_sps_pps && st->codecpar->codec_id == AV_CODEC_ID_H264) { if ((ret = h264_annexb_insert_sps_pps(s, pkt)) < 0) { -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avutil/samplefmt: add a sample format descriptor API (PR #20461)

2025-09-07 Thread James Almer via ffmpeg-devel
mple/swresample.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 0a4e216f9b..ff9093670b 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -143,11 +143,11 @@ av_cold int swr_init(struct SwrCont

[FFmpeg-devel] [PATCH] libavcodec/qsvenc.c: update has_b_frames value after initialization of encoder (PR #20463)

2025-09-08 Thread Damiano Galassi via ffmpeg-devel
st - 1; +} + q->avctx = avctx; return 0; -- 2.49.1 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/tls_gnutls: add initial dtls support (PR #20464)

2025-09-08 Thread Jack Lau via ffmpeg-devel
*h, const char *uri, int flags, AVDictionary **op TLSShared *s = &c->tls_shared; uint16_t gnutls_flags = 0; int ret; +av_assert0(s); ff_gnutls_init(); @@ -260,6 +262,7 @@ static int dtls_open(URLContext *h, const char *uri, int flags, AVDictionary **o { TLSContext *c = h->priv_data; TLSShared *s = &c->tls_shared; +av_assert0(s); s->is_dtls = 1; return tls_open(h, uri, flags, options); } -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avutil/hwcontext_d3d11va: remove D3D11_BIND_RENDER_TARGET restriction for array textures (PR #20480)

2025-09-09 Thread Timo Rothenpieler via ffmpeg-devel
ze > 0) { hr = ID3D11Device_CreateTexture2D(device_hwctx->device, &texDesc, NULL, &hwctx->texture); if (FAILED(hr)) { av_log(ctx, AV_LOG_ERROR, "Could not create the texture (%lx)\n", (long)hr); -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH 3/7] matroskaenc: increase default for reserved bytes in video

2025-09-09 Thread Jerome Martinez via ffmpeg-devel
48 pos: 146946 size: 27925 ret: 0 st:-1 flags:1 ts:-0.645825 -ret: 0 st: 0 flags:1 dts: 0.00 pts: 0.00 pos:901 size: 27837 +ret: 0 st: 0 flags:1 dts: 0.00 pts: 0.00 pos: 978 size: 27837 -- 2.46.0.windows.1 _________

[FFmpeg-devel] [PATCH] avfilter/buffersink: add missing checks for alphamodes (PR #20469)

2025-09-08 Thread James Almer via ffmpeg-devel
av_opt_set_array(filt_out, "alphamodes", AV_OPT_SEARCH_CHILDREN, 0, FF_ARRAY_ELEMS(sdl_supported_alpha_modes), AV_OPT_TYPE_INT, sdl_supported_alpha_modes)) < 0) +goto fail; ret = avfilter_init_dict(filt_ou

[FFmpeg-devel] [PATCH] avfilter/vf_libplacebo: ensure linear tex is blittable (PR #20466)

2025-09-08 Thread Niklas Haas via ffmpeg-devel
true, .renderable = true, .sampleable = true, .storable = fmt->caps & PL_FMT_CAP_STORABLE, -- 2.49.1 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avfilter/vf_libplacebo: introduce fit_mode option (PR #20467)

2025-09-08 Thread Niklas Haas via ffmpeg-devel
= FIT_SCALE_DOWN }, 0, 0, STATIC, .unit = "fit_mode" }, { "fillcolor", "Background fill color", OFFSET(fillcolor), AV_OPT_TYPE_COLOR, {.str = "black@0"}, .flags = DYNAMIC }, { "corner_rounding", "Corner rounding radius", OFFSET(corner_rounding), AV_OPT_TYPE_FLOAT, {.dbl = 0.0}, 0.0, 1.0, .flags = DYNAMIC }, { "lut", "Path to custom LUT file to apply", OFFSET(lut_filename), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = STATIC }, -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] fftools: use fopen_utf8 to open FFREPORT (PR #20472)

2025-09-08 Thread Marvin Scholz via ffmpeg-devel
AV_LOG_ERROR, "Failed to open report \"%s\": %s\n", -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-09 Thread Michael Niedermayer via ffmpeg-devel
Hi Remi On Tue, Sep 09, 2025 at 02:49:39PM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: > Hi, > > Le 9 septembre 2025 11:19:26 GMT+03:00, Michael Niedermayer via ffmpeg-devel > a écrit : > >Hi Everyone > > > >The subject of funding and sponsors came up

[FFmpeg-devel] [PATCH 6/7] matroskadec: read timecode in BlockAddition

2025-09-09 Thread Jerome Martinez via ffmpeg-devel
ount; +AV_WB64(sd_64 + count, tc); + } + +return 0; + } default: break; } -- 2.46.0.windows.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH 4/7] 32-bit timecode to 64-bit RFC 5484 timecode functions

2025-09-09 Thread Jerome Martinez via ffmpeg-devel
tc32 The 32-bit SMPTE timecode (from DeckLink or av_timecode_get_smpte) + * @return The 64-bit SMPTE 12M timecode format (without sync word) + */ +uint64_t av_timecode_expand_to_64bit(uint32_t tc32); + +/** + * Convert a 64-bit SMPTE 12M/RFC 5484 timecode to 32-bit SMPTE format. + * + * This recons

[FFmpeg-devel] [PATCH 7/7] matroskaenc: write timecode in BlockAddition

2025-09-09 Thread Jerome Martinez via ffmpeg-devel
+mkv_write_blockadditional_header(s, MATROSKA_BLOCK_ADD_ID_TYPE_SMPTE_12M, MATROSKA_BLOCK_ADD_ID_SMPTE_12M + i); +} if (remaining_video_track_space > 1) { put_ebml_void(track_bc, remaining_video_track_space); } -- 2.46.0.windows.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] SDR debate again Was: Re: [RFC] Sponsors & Funding

2025-09-09 Thread Michael Niedermayer via ffmpeg-devel
Hi Kieran On Tue, Sep 09, 2025 at 10:02:22AM +0100, Kieran Kunhya via ffmpeg-devel wrote: > On Tue, 9 Sept 2025, 09:19 Michael Niedermayer via ffmpeg-devel, < [...] > My suggestion would be: > > - The FFmpeg project should actively seek sponsors and funding. > > - The mo

[FFmpeg-devel] [PATCH] avutil/aes_ctr: reintroduce the block offset state (PR #20479)

2025-09-09 Thread James Almer via ffmpeg-devel
if (memcmp(tmp, plain, SIZE) != 0) { +av_log(NULL, AV_LOG_ERROR, "test failed\n"); +goto ERROR; +} +av_aes_ctr_crypt(ad, tmp + SIZE, tmp + SIZE, sizeof(tmp) - SIZE); +if (memcmp(tmp + SIZE, plain + SIZE, sizeof(tmp) - SIZE) != 0) {

[FFmpeg-devel] [PATCH] forgejo/CODEOWNERS: add myself to d3d12va related files (PR #20481)

2025-09-09 Thread Tong Wu via ffmpeg-devel
ain.* @haasn @@ -202,7 +202,7 @@ doc/.* @GyanD # Frameworks # == -.*d3d12va.* @jianhuaw +.*d3d12va.* @jianhuaw @tong1wu .*vulkan.* @lynne @haasn # tests -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send

[FFmpeg-devel] [PATCH] avformat/whip: add ICE consent freshness support (PR #20482)

2025-09-10 Thread Jack Lau via ffmpeg-devel
ED_TIMER); +ret = AVERROR(ETIMEDOUT); +goto end; +} if (whip->h264_annexb_insert_sps_pps && st->codecpar->codec_id == AV_CODEC_ID_H264) { if ((ret = h264_annexb_insert_sps_pps(s, pkt)) < 0) { av_log(whip, AV_LOG_ERROR, "Failed to insert SPS/PPS before IDR\n"); -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH 0/7] matroska: support of timecode

2025-09-11 Thread Dave Rice via ffmpeg-devel
> On Sep 9, 2025, at 8:37 AM, Jerome Martinez via ffmpeg-devel > wrote: > > This patch series adds support of timecode in Matroska files, specs are at: > https://github.com/ietf-wg-cellar/matroska-specification/blob/master/cellar-codec/block_additional_mappings/smpte-st12-1-time

[FFmpeg-devel] Suspected memory leak with CUDA detected by valgrind

2025-09-11 Thread Marco Oman via ffmpeg-devel
ite, Privacy section. _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-11 Thread Gyan Doshi via ffmpeg-devel
On 2025-09-11 02:22 am, Michael Niedermayer via ffmpeg-devel wrote: Hi Kieran On Wed, Sep 10, 2025 at 06:21:56PM +0200, Kieran Kunhya via ffmpeg-devel wrote: On Wed, 10 Sept 2025, 17:49 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: Hi remi On Tue, Sep 09, 2

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-10 Thread Kieran Kunhya via ffmpeg-devel
On Wed, 10 Sept 2025, 17:49 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi remi > > On Tue, Sep 09, 2025 at 07:29:02PM +0300, Rémi Denis-Courmont via > ffmpeg-devel wrote: > > Le tiistaina 9. syyskuuta 2025, 15.10.37 Itä-Euroopan kesäaika Mic

[FFmpeg-devel] [PATCH] avformat: add hxvs demuxer for IP camera (PR #20516)

2025-09-14 Thread Zhao Zhili via ffmpeg-devel
PR #20516 opened by Zhao Zhili (quink) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20516 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20516.patch The fate sample is from: https://github.com/francescovannini/ipcam26Xconvert/blob/main/test_videos/A231130_171422_171436.265 and put at

[FFmpeg-devel] [PATCH] avfilter/vsrc_gfxcapture: switch to std::thread (PR #20520)

2025-09-14 Thread Timo Rothenpieler via ffmpeg-devel
le, "d3dcompiler_47.dll"); LOAD_FUNC(ctx->fn.combase_handle, RoInitialize); @@ -1012,6 +1015,8 @@ static av_cold int load_functions(AVFilterContext *avctx) LOAD_FUNC(ctx->fn.user32_handle, SetThreadDpiAwarenessContext); +LOAD_FUNC(ctx->fn.kernel32_handle, SetThreadDescription); + LOAD_FUNC(ctx->fn.d3dcompiler_handle, D3DCompile); #undef LOAD_FUNC -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [RFC] Issue tracker

2025-09-14 Thread Michael Niedermayer via ffmpeg-devel
some blue and some pink. People argued and fought, when they finally agreed, only rust was left. signature.asc Description: PGP signature _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] swresample/swresample: Delete unused code (PR #20501)

2025-09-12 Thread Renjianguang-mi via ffmpeg-devel
goto fail; -av_opt_set_int(s, "uch", 0, 0); - return 0; fail: av_log(s, AV_LOG_ERROR, "Failed to set option\n"); -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] avutil/bprint: fix av_bprint_strftime with %p format string reporting truncated output (PR #20330)

2025-09-12 Thread Nicolas George via ffmpeg-devel
Sorry, lots of things to do these last weeks. Marton Balint via ffmpeg-devel (HE12025-08-26): > I just thought that for the typical case we can spare an strlen() call this > way. Except if the format is pathologically long, which is not a case we want to optimize for, I suspect the branch

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-12 Thread Michael Niedermayer via ffmpeg-devel
Hi Gyan On Fri, Sep 12, 2025 at 12:11:56PM +0530, Gyan Doshi via ffmpeg-devel wrote: > Let's put aside the extreme cases for now. What is the concrete definition > of the community in normal cases? In the normal case, we would reach a consensus or we would agree that the general ass

[FFmpeg-devel] [PATCH] avfilter/vf_colordetect: only report detected properties on EOF (PR #20503)

2025-09-12 Thread Niklas Haas via ffmpeg-devel
_inputs), FILTER_OUTPUTS(ff_video_default_filterpad), FILTER_QUERY_FUNC2(query_format), -.uninit= uninit, +.activate = activate, }; -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH 1/7] matroskaenc: remove unused MaxBlockAdditionID

2025-09-12 Thread Michael Niedermayer via ffmpeg-devel
On Tue, Sep 09, 2025 at 02:38:53PM +0200, Jerome Martinez via ffmpeg-devel wrote: > libavformat/matroskaenc.c |8 +++ > tests/ref/lavf/mka|4 +-- > tests/ref/lavf/mkv|4 +-- > tests/ref/lavf/mkv_attachment |4 +-- > tests/re

[FFmpeg-devel] [PATCH] swresample: Delete matrix_flt to optimize memory (PR #20502)

2025-09-12 Thread Renjianguang-mi via ffmpeg-devel
ion table double matrix[SWR_CH_MAX][SWR_CH_MAX]; ///< floating point rematrixing coefficients -float matrix_flt[SWR_CH_MAX][SWR_CH_MAX]; ///< single precision floating point rematrixing coefficients uint8_t *native_matrix; uint8_t *native_one; uint8

[FFmpeg-devel] [PATCH] avcodec/rkmppdec: fix input queue overflow (PR #20511)

2025-09-13 Thread Zhao Zhili via ffmpeg-devel
_frame(avctx, frame); +do { +ret = rkmpp_retrieve_frame(avctx, frame); +} while (decoder->eos_reached && ret == AVERROR(EAGAIN)); + +return ret; } static av_cold void rkmpp_flush(AVCodecContext *avctx) -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH 6/7] matroskadec: read timecode in BlockAddition

2025-09-13 Thread Michael Niedermayer via ffmpeg-devel
Hi Jerome On Tue, Sep 09, 2025 at 02:41:39PM +0200, Jerome Martinez via ffmpeg-devel wrote: > matroska.h|1 + > matroskadec.c | 34 ++ > 2 files changed, 35 insertions(+) > 83b42253e7a0ca4f220f658b0671e4056e719592 > 0006-matroskadec-r

[FFmpeg-devel] Re: [PATCH 4/7] 32-bit timecode to 64-bit RFC 5484 timecode functions

2025-09-13 Thread Michael Niedermayer via ffmpeg-devel
On Tue, Sep 09, 2025 at 02:40:50PM +0200, Jerome Martinez via ffmpeg-devel wrote: > timecode.c | 104 > + > timecode.h | 22 > 2 files changed, 126 insertions(+) > 8969dd4cc3cc1d77acde18a6eae065e941375

[FFmpeg-devel] [PATCH] swscale/ops_tmpl_int: remove unused arguments from wrap read decl (PR #20514)

2025-09-13 Thread Kacper Michajłow via ffmpeg-devel
ACKED ? 1 : ELEMS); i++) \ -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] [8.0] Backport Videotoolbox improvements (PR #20496)

2025-09-11 Thread Marvin Scholz via ffmpeg-devel
"Doesn't support automatic bitrate in low_delay mode, " +"please specify bitrate explicitly\n"); +status = AVERROR(EINVAL); +goto init_cleanup; +} CFDictionarySetValue(enc_info,

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-11 Thread Michael Niedermayer via ffmpeg-devel
Hi Kieran On Wed, Sep 10, 2025 at 06:21:56PM +0200, Kieran Kunhya via ffmpeg-devel wrote: > On Wed, 10 Sept 2025, 17:49 Michael Niedermayer via ffmpeg-devel, < > [email protected]> wrote: > > > Hi remi > > > > On Tue, Sep 09, 2025 at 07:29:02PM +0300, R

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-11 Thread Michael Niedermayer via ffmpeg-devel
Hi Gyan On Thu, Sep 11, 2025 at 01:41:24PM +0530, Gyan Doshi via ffmpeg-devel wrote: > > > On 2025-09-11 02:22 am, Michael Niedermayer via ffmpeg-devel wrote: > > Hi Kieran > > > > On Wed, Sep 10, 2025 at 06:21:56PM +0200, Kieran Kunhya via ffmpeg-devel > >

[FFmpeg-devel] buffersrc: How do you set up a hwctx before init_video is called?

2025-09-01 Thread John Cox via ffmpeg-devel
___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Generalize acrossfade filter to support multiple inputs (PR #20388)

2025-09-01 Thread Niklas Haas via ffmpeg-devel
6, 549136, 4096,16384, 0x12a32ed0 -0, 553232, 553232, 4096,16384, 0x722bfc87 -0, 557328, 557328, 4096, 16384, 0x65e0fab9 -0, 561424, 561424, 4096,16384, 0x55cca852 -0, 565520, 565520, 4096,16384, 0x19a10ac6 -0, 569616, 569616, 4096,16384, 0x078180b2 -0, 573712, 573712, 4096,16384, 0xf6f8fc53 -0, 577808, 577808, 4096,16384, 0xc72ffe63 -0, 581904, 581904, 4096,16384, 0xf9f837fd -0, 586000, 586000, 4096,16384, 0x78d70334 -0, 590096, 590096, 4096,16384, 0x061d910c -0, 594192, 594192, 1158, 4632, 0xdc098a7f +0, 504080, 504080, 3070,12280, 0x1368a641 +0, 507150, 507150,88200, 352800, 0xfdb19b5d +0, 595350, 595350, 1912, 7648, 0x5d71938c +0, 597262, 597262, 3097,12388, 0xd852f4c5 -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Fix missing IID instantiation in vf_scale_d3d11.c

2025-09-01 Thread Adam Zofware via ffmpeg-devel
at/w32dlfcn.h" -- 2.51.0.windows.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Various small things in regarding URL options (PR #20390)

2025-09-01 Thread Marton Balint via ffmpeg-devel
ecode.c @@ -50,7 +50,7 @@ char *ff_urldecode(const char *url, int decode_plus_sign) while (s < url_len) { c = url[s++]; - if (c == '%' && s + 2 < url_len) { +if (c == '%' && s + 1 < url_len) { char c2 = url[s++]; char c3 = url[s++]; if (av_isxdigit(c2) && av_isxdigit(c3)) { -- 2.49.1 >From 85bc1ea39e2cf9fd126d5d06a079df95483283c1 Mon Sep 17 00:00:00 2001 From: Marton Balint Date: Tue, 26 Aug 2025 09:22:57 +0200 Subject: [PATCH 9/9] avformat/urldecode: factorize core url decoding from ff_urldecode Signed-off-by: Marton Balint --- libavformat/urldecode.c | 33 + 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/libavformat/urldecode.c b/libavformat/urldecode.c index 150c64c15c..e7fa27b3fa 100644 --- a/libavformat/urldecode.c +++ b/libavformat/urldecode.c @@ -32,20 +32,10 @@ #include "libavutil/avstring.h" #include "urldecode.h" -char *ff_urldecode(const char *url, int decode_plus_sign) +static size_t urldecode(char *dest, const char *url, size_t url_len, int decode_plus_sign) { -int s = 0, d = 0, url_len = 0; +size_t s = 0, d = 0; char c; -char *dest = NULL; - -if (!url) -return NULL; - -url_len = strlen(url) + 1; -dest = av_malloc(url_len); - -if (!dest) -return NULL; while (s < url_len) { c = url[s++]; @@ -82,5 +72,24 @@ char *ff_urldecode(const char *url, int decode_plus_sign) } +return d; +} + +char *ff_urldecode(const char *url, int decode_plus_sign) +{ +char *dest = NULL; +size_t url_len; + +if (!url) +return NULL; + +url_len = strlen(url) + 1; +dest = av_malloc(url_len); + +if (!dest) +return NULL; + +urldecode(dest, url, url_len, decode_plus_sign); + return dest; } -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH v3 2/2] avcodec/libaom: Add test for HDR10+ metadata support

2025-09-02 Thread James Almer via ffmpeg-devel
On 9/2/2025 10:30 AM, Michael Niedermayer via ffmpeg-devel wrote: On Wed, Aug 27, 2025 at 01:06:42PM +0200, Maryla Ustarroz via ffmpeg-devel wrote: On Mon, Aug 11, 2025 at 2:01 PM Maryla Ustarroz wrote: On Mon, Aug 11, 2025 at 1:57 PM Maryla Ustarroz-Calonge wrote: Signed-off-by: Maryla

[FFmpeg-devel] [PATCH] doc/examples/vaapi_encode: fix invalid check on fwrite (PR #20396)

2025-09-02 Thread Zhao Zhili via ffmpeg-devel
->data, 1, size, fout); av_packet_unref(enc_pkt); -if (ret != enc_pkt->size) { +if (ret != size) { ret = AVERROR(errno); break; } -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To u

[FFmpeg-devel] Re: [PATCH] lavfi: protection against premultiplied alpha (was: The patch series about premultiplied alpha)

2025-09-02 Thread Nicolas George via ffmpeg-devel
Sorry, it has been very busy weeks at work. I will have to be terse. Niklas Haas via ffmpeg-devel (HE12025-08-22): > Filters which do not touch the alpha channel, overwhelmingly either do not > even care about the pixel contents, or produce their desired effect > *regardless* of the c

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-09-02 Thread Michael Niedermayer via ffmpeg-devel
Hi Remi On Sun, Aug 31, 2025 at 11:53:01AM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: [...] > > And the General Assembly can change the person(s) who control the wallet > > For example the GA could simply choose any people it wants > > these people then could make

[FFmpeg-devel] Re: Can a GetByteContext have a "sub" context?

2025-09-02 Thread Peter Ross via ffmpeg-devel
On Tue, Sep 02, 2025 at 08:03:14AM +0200, Manuel Lauss via ffmpeg-devel wrote: > Hello, > > Is it possible to have a "sub" context with a limited byte range for a > super-context? > i.e. I read 4 bytes from context c1, these are a length, c2 = > GetByteCo

[FFmpeg-devel] Re: [PATCH] avformat/demux: avoid unconditional ID3v2 tag consumption

2025-09-02 Thread Kyle Swanson via ffmpeg-devel
On Wed, Aug 20, 2025 at 2:09 PM Kyle Swanson wrote: > > Hi, > > On Wed, Jul 23, 2025 at 10:51 AM Nil Fons Miret via ffmpeg-devel > wrote: > > Pinging this patch from a couple weeks ago. To be clear, I am not sure > > how people typically use ffmpeg's ID3v2 suppo

[FFmpeg-devel] Re: [PATCH 0/2] libavfilter/vf_minterpolate: Minor speedup

2025-09-02 Thread Michael Niedermayer via ffmpeg-devel
On Fri, Aug 29, 2025 at 08:19:39PM +, Zsolt Vadász via ffmpeg-devel wrote: > > This patch series makes vf_minterpolate approximately 5% faster, > according to my tests, which I performed on a Ryzen 7 PRO 4750U, > compiling with GCC 15.2.1, using -O2. > > Zsolt Vadasz (2

[FFmpeg-devel] [PATCH] configure: provide vulkan cflags (PR #20399)

2025-09-02 Thread Stephane Cerveau via ffmpeg-devel
ig_header_only vulkan_1_4 "vulkan >= 1.4.317" "vulkan/vulkan.h" "defined VK_VERSION_1_4" || -check_cpp_condition vulkan_1_4 "vulkan/vulkan.h" "defined(VK_VERSION_1_5) || (defined(VK_VERSION_1_4) && VK_HEADER_VERSION >= 317)"

[FFmpeg-devel] Can a GetByteContext have a "sub" context?

2025-09-01 Thread Manuel Lauss via ffmpeg-devel
h? Thanks! Manuel _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] .forgejo/CODEOWNERS: add myself for various files (PR #20400)

2025-09-02 Thread Niklas Haas via ffmpeg-devel
rks # == .*d3d12va.* @jianhuaw -.*vulkan.* @lynne +.*vulkan.* @lynne @haasn # tests # = -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/whip: add PRIORITY and ICE_CONTROLLING for STUN binding request (PR #20405)

2025-09-02 Thread Jack Lau via ffmpeg-devel
avio_wb16(pb, STUN_ATTR_MESSAGE_INTEGRITY); /* attribute type message integrity */ avio_wb16(pb, 20); /* size of message integrity */ -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-09-03 Thread Michael Niedermayer via ffmpeg-devel
Hi Derek On Wed, Sep 03, 2025 at 02:19:28PM +0100, Derek Buitenhuis via ffmpeg-devel wrote: > On 9/3/2025 2:06 PM, Michael Niedermayer via ffmpeg-devel wrote: > > Applied after discussion in the General Assembly. > > There where no objections. > > There were multiple ob

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-09-03 Thread Derek Buitenhuis via ffmpeg-devel
On 9/3/2025 3:47 PM, Michael Niedermayer via ffmpeg-devel wrote: > Hi Derek > > On Wed, Sep 03, 2025 at 02:19:28PM +0100, Derek Buitenhuis via ffmpeg-devel > wrote: >> On 9/3/2025 2:06 PM, Michael Niedermayer via ffmpeg-devel wrote: >>> Applied after discussion in the

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-09-03 Thread Derek Buitenhuis via ffmpeg-devel
t BTW.) - Derek _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-09-03 Thread Michael Niedermayer via ffmpeg-devel
Hi Derek On Wed, Sep 03, 2025 at 02:19:28PM +0100, Derek Buitenhuis via ffmpeg-devel wrote: > On 9/3/2025 2:06 PM, Michael Niedermayer via ffmpeg-devel wrote: > > Applied after discussion in the General Assembly. > > There where no objections. [...] > Moving it to a priva

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-09-03 Thread Derek Buitenhuis via ffmpeg-devel
On 9/3/2025 3:29 PM, Michael Niedermayer via ffmpeg-devel wrote: > Hi Derek > > On Wed, Sep 03, 2025 at 02:19:28PM +0100, Derek Buitenhuis via ffmpeg-devel > wrote: >> On 9/3/2025 2:06 PM, Michael Niedermayer via ffmpeg-devel wrote: >>> Applied after discussion in the

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-09-03 Thread Michael Niedermayer via ffmpeg-devel
On Fri, Aug 29, 2025 at 05:21:00PM +0200, Michael Niedermayer via ffmpeg-devel wrote: > See: https://fundingjson.org/ > See: https://floss.fund/ > > Based on: https://www.python.org/funding.json and the example from > fundingjson.org > > It is put in the web repository so

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-09-03 Thread Michael Niedermayer via ffmpeg-devel
Hi everyone On Fri, Aug 29, 2025 at 05:21:00PM +0200, Michael Niedermayer via ffmpeg-devel wrote: > See: https://fundingjson.org/ > See: https://floss.fund/ > > Based on: https://www.python.org/funding.json and the example from > fundingjson.org > > It is put in the web

[FFmpeg-devel] Re: [PATCH v2] web: Add funding.json

2025-09-03 Thread Derek Buitenhuis via ffmpeg-devel
On 9/3/2025 2:06 PM, Michael Niedermayer via ffmpeg-devel wrote: > Applied after discussion in the General Assembly. > There where no objections. There were multiple objections on this list. Moving it to a private list because it better suits your goal is, to use a word you like

[FFmpeg-devel] [PATCH] swresample: SWR_CH_MAX as config, default 64 (PR #20412)

2025-09-03 Thread Renjianguang-mi via ffmpeg-devel
PR #20412 opened by Renjianguang-mi URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20412 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20412.patch For memory-constrained products, reduce the memory overhead of swresample. Optimizing swresample SwrContext memory: double matrix[SWR_CH

[FFmpeg-devel] [PATCH] avutil/internal: remove some compats for msvc (PR #20411)

2025-09-03 Thread Zhao Zhili via ffmpeg-devel
E_SPECIFIER "Iu" -#else #define PTRDIFF_SPECIFIER "td" #define SIZE_SPECIFIER "zu" -#endif #ifdef DEBUG # define ff_dlog(ctx, ...) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__) -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] swscale: Don't pass a concrete SwsOpPriv as parameter (PR #20413)

2025-09-03 Thread Martin Storsjö via ffmpeg-devel
(SwsOpPriv) {0});\ + NULL, &(SwsOpPriv) {0}); \ out->func = NAME; \ } while (0) -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/codec_par: remove alpha_mode (PR #20414)

2025-09-03 Thread James Almer via ffmpeg-devel
LIBAVCODEC_VERSION_MINOR 15 +#define LIBAVCODEC_VERSION_MINOR 16 #define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-11 Thread Kieran Kunhya via ffmpeg-devel
On Fri, 12 Sept 2025, 00:26 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi Gyan > > On Thu, Sep 11, 2025 at 01:41:24PM +0530, Gyan Doshi via ffmpeg-devel > wrote: > > > > > > On 2025-09-11 02:22 am, Michael Niedermayer via

[FFmpeg-devel] [PATCH] libavfilter/vf_remap_opencl: make kernel handle subsampled chroma (PR #20490)

2025-09-11 Thread Matthias Welwarsky via ffmpeg-devel
lane[plane].swizzle)); +kernel_arg++; + err = ff_opencl_filter_work_size_from_image(avctx, global_work, output, plane, 0); if (err < 0) -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/videotoolboxenc: ensure bitrate is set in low_delay mode (PR #20488)

2025-09-10 Thread Zhao Zhili via ffmpeg-devel
BooleanTrue); -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avfilter/vf_libplacebo: two blending-related fixes (PR #20491)

2025-09-10 Thread Niklas Haas via ffmpeg-devel
pl_render_image(s->linear_rr, &target, &orig_target, &opts->params); target = orig_target; } else if (!ref) { -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-11 Thread Gyan Doshi via ffmpeg-devel
On 2025-09-12 03:56 am, Michael Niedermayer via ffmpeg-devel wrote: Hi Gyan On Thu, Sep 11, 2025 at 01:41:24PM +0530, Gyan Doshi via ffmpeg-devel wrote: On 2025-09-11 02:22 am, Michael Niedermayer via ffmpeg-devel wrote: For this subject to make any sense, we need to have the entities (GA

[FFmpeg-devel] Re: [PATCH] rvv: add optimized h264 intra prediction functions (PR #20494)

2025-09-11 Thread Tristan Matthews via ffmpeg-devel
On Thu, Sep 11, 2025 at 1:29 PM tmatth via ffmpeg-devel wrote: > > PR #20494 opened by tmatth > > +endfunc > diff --git a/tests/checkasm/h264pred.c b/tests/checkasm/h264pred.c > index 53e1cdb219..7254854534 100644 > --- a/tests/checkasm/h264pred.c > +++ b/tests/checkas

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-11 Thread Michael Niedermayer via ffmpeg-devel
Hi remi On Tue, Sep 09, 2025 at 07:29:02PM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: > Le tiistaina 9. syyskuuta 2025, 15.10.37 Itä-Euroopan kesäaika Michael > Niedermayer via ffmpeg-devel a écrit : > > > 2) A legal entity with clear oversight rules that sponsor

[FFmpeg-devel] [PATCH] avformat/tls_openssl: do not cleanup tls after a successful dtls_start() (PR #20639)

2025-10-01 Thread Marton Balint via ffmpeg-devel
int flags, AVDictionary ** av_log(c, AV_LOG_VERBOSE, "Setup ok, MTU=%d\n", c->tls_shared.mtu); -ret = 0; +return 0; fail: tls_close(h); return ret; -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected]

[FFmpeg-devel] [POLL][VOTE] Sponsors & Funding

2025-10-02 Thread Michael Niedermayer via ffmpeg-devel
787040B0FAB Give a rich man 100$ and he will turn it into 1000$. Give a poor man 1000$ and he will spend it. signature.asc Description: PGP signature _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-03 Thread Martin Storsjö via ffmpeg-devel
On Sat, 27 Sep 2025, Rémi Denis-Courmont via ffmpeg-devel wrote: But this will constrain the assembler is aggravating. It probably requires major changes already, but even if it doesn't, I don't think we should constrain future assembler code nor expect developers to support the JIT

[FFmpeg-devel] [GASPP PATCH 2/2] Filter out the cl.exe option -arm64EC from armasm

2025-10-03 Thread Martin Storsjö via ffmpeg-devel
-- 2.43.0 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [GASPP PATCH 1/2] Pass "-machine" options through to armasm

2025-10-03 Thread Martin Storsjö via ffmpeg-devel
cc_cmd; @gcc_cmd = grep ! /^-c$/, @gcc_cmd; @gcc_cmd = grep ! /^-I/, @gcc_cmd; -- 2.43.0 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-03 Thread Martin Storsjö via ffmpeg-devel
work for me in my tests. I have an alternative suggestion on how to do the gas-preprocessor patch - I'll send those patches and CC you on them. Another alternative for gas-preprocessor would be to just look for the -arm64EC option, and inject the "-machine arm64ec" options implicitly in that case (it turns out I actually had such a patch lying around since experiments in 2021), but it's perhaps more transparent to force the caller of gas-preprocessor to provide the option. // Martin ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Sponsors & Funding

2025-10-03 Thread Michael Niedermayer via ffmpeg-devel
Hi Remi On Thu, Oct 02, 2025 at 07:28:48PM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: > Le torstaina 2. lokakuuta 2025, 15.55.16 Itä-Euroopan kesäaika Michael > Niedermayer via ffmpeg-devel a écrit : > > "Yes" > > - The FFmpeg project should active

[FFmpeg-devel] [PATCH] libavcodec/g723_1enc: Fix crash

2025-10-03 Thread Kovacs, Zsolt via ffmpeg-devel
have received this electronic message in error, please notify us by replying to this e-mail. 0001-libavcodec-g723_1enc-fix-crash.patch Description: 0001-libavcodec-g723_1enc-fix-crash.patch _______ ffmpeg-devel mailing list -- [email protected] To unsu

[FFmpeg-devel] Re: [POLL][VOTE] Sponsors & Funding

2025-10-03 Thread Kieran Kunhya via ffmpeg-devel
roject remain an conspiracy theory / paranoia discussion site that happens to develop multimedia? Kieran _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avutil/attributes: don't force format checking to __gnu_printf__ on mingw build (PR #20643)

2025-10-04 Thread Kacper Michajłow via ffmpeg-devel
+#ifdef AV_SCANF_FMT +#define av_scanf_format(fmtpos, attrpos) __attribute__((format(AV_SCANF_FMT, fmtpos, attrpos))) +#else # define av_scanf_format(fmtpos, attrpos) #endif -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH 3/3] avformat/whip whep: add whep support

2025-10-13 Thread Michael Niedermayer via ffmpeg-devel
Hi On Mon, Oct 13, 2025 at 12:39:44PM +0800, baigao via ffmpeg-devel wrote: > --- > configure| 1 + > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/rtc.c| 895 +-- > libavformat/

[FFmpeg-devel] [PATCH] avformat/whip: add rtp history store and find method (PR #20703)

2025-10-14 Thread Jack Lau via ffmpeg-devel
AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, ENC }, -{ "key_file", "The optional private key file path for DTLS", OFFSET(key_file), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, ENC }, +{ "key_file", "The optional private key file path for DTLS", OFFSET(key_file), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, ENC }, { NULL }, }; -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Updates to RBSP Depayloading

2025-10-16 Thread Carson Riker via ffmpeg-devel
prioritize performance, providing two mostly-identical implementations, one for each endianess. Thanks for the time, Carson Riker signature.asc Description: OpenPGP digital signature _______ ffmpeg-devel mailing list -- [email protected] To unsubs

[FFmpeg-devel] Re: Soliciting sponsorship (was: WIP: avfilter: add Bungee audio stretch filter (PR #20697))

2025-10-17 Thread Nicolas George via ffmpeg-devel
Kieran Kunhya via ffmpeg-devel (HE12025-10-14): > We should just let people have their libXXX fork of FFmpeg on Forgejo > in my opinion if we don't want to upstream the code. This is precisely why Michael added the source plugin mechanism that you criticized so much. Regards, --

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

2025-10-17 Thread Michael Niedermayer via ffmpeg-devel
Hi Timo On Wed, Oct 15, 2025 at 12:28:20AM +0200, Timo Rothenpieler via ffmpeg-devel wrote: > On 14.10.2025 04:40, Michael Niedermayer via ffmpeg-devel wrote: > > Hi Everyone > > > > As we are now looking for sponsors, we also should look for tasks to fund. > >

[FFmpeg-devel] Re: [PATCH] avfilter: add raw PCM dump between AVFilter links (PR #20715)

2025-10-17 Thread Nicolas George via ffmpeg-devel
yibofang via ffmpeg-devel (HE12025-10-17): > PR #20715 opened by yibofang > URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20715 > Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20715.patch > > This patch adds the ability to dump raw PCM audio data between AVFil

[FFmpeg-devel] [PATCH] Fix jpeg2k and dnxhr 444 MXF and MOV muxing (PR #20711)

2025-10-17 Thread Baptiste Coudurier via ffmpeg-devel
PR #20711 opened by Baptiste Coudurier (bcoudurier) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20711 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20711.patch From 8bc654b2c0f79213195140f372c83095b0e2b123 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 3 Jun 2025 17:5

[FFmpeg-devel] Re: [PATCH] avformat/whip: Drop invalid group:BUNDLE from SDP in single-stream cases

2025-10-17 Thread Jack Lau via ffmpeg-devel
> On Oct 6, 2025, at 16:06, baigao via ffmpeg-devel > wrote: > > --- > libavformat/whip.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavformat/whip.c b/libavformat/whip.c > index 472c6dbf16..6ace9240f9 100644 > --- a/libavfor

[FFmpeg-devel] Re: [PATCH] avformat/mpegtsenc: Limit TS invalid messages

2025-10-17 Thread Kieran Kunhya via ffmpeg-devel
On Mon, 6 Oct 2025, 04:46 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi > > On Thu, Oct 02, 2025 at 11:36:33PM +0200, David Dominguez via ffmpeg-devel > wrote: > > mpegts_write_pes() warns when DTS - PCR is negative. This is > > done

<    23   24   25   26   27   28   29   30   31   32   >