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

2025-07-05 Thread Stefan Breunig via ffmpeg-devel
, 307200, 0x9c203210 -- 2.47.2 --- End Message --- ___________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avfilter: add inverse tone mapping

2025-07-05 Thread Sarthak Indurkhya via ffmpeg-devel
OG_DEBUG); +init_bt709_gamma_lut(); av_log(avctx, AV_LOG_INFO, "Initializing filter with 1 input and 1 output\n"); return 0; } -- 2.49.0 Get Outlook for Mac <https://aka.ms/GetOutlookForMac> --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [RFC] Introducing policies regarding "AI" contributions

2025-07-03 Thread Alexander Strasser via ffmpeg-devel
--- Begin Message --- On 2025-07-01 16:50 +0530, Gyan Doshi wrote: > > On 2025-07-01 04:28 pm, Alexander Strasser via ffmpeg-devel wrote: > > > Thus I want this thread to start a discussion, that eventually leads > > to a policy about submitting and integrating "AI&

Re: [FFmpeg-devel] [RFC] Introducing policies regarding "AI" contributions

2025-07-03 Thread Alexander Strasser via ffmpeg-devel
--- Begin Message --- On 2025-07-01 14:44 +0200, Kacper Michajlow wrote: > On Tue, 1 Jul 2025 at 12:58, Alexander Strasser via ffmpeg-devel [...] > > > > I do not like the branding of the LLMs as AI, thus I will for now > > continue to call it "AI" in quotes. I'

Re: [FFmpeg-devel] [RFC] Introducing policies regarding "AI" contributions

2025-07-03 Thread Alexander Strasser via ffmpeg-devel
--- Begin Message --- On 2025-07-03 02:16 +0200, Gerion Entrup wrote: > Am Dienstag, 1. Juli 2025, 12:58:23 Mitteleuropäische Sommerzeit schrieb > Alexander Strasser via ffmpeg-devel: [...] > > Thus I want this thread to start a discussion, that eventually leads > > to a polic

[FFmpeg-devel] [PATCH 3/3] avfilter/scale_cuda: Add support for 4:2:2 chroma subsampling

2025-07-03 Thread Diego Felix de Souza via ffmpeg-devel
Peters, Donald Robertson, Janet Hall, Ludwig von Reiche --- This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is

[FFmpeg-devel] [PATCH 2/3] avfilter/hwupload_cuda: Expands pixel formats support

2025-07-03 Thread Diego Felix de Souza via ffmpeg-devel
 --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH 1/3] avutil/hwcontext_cuda: Expands pixel formats support

2025-07-03 Thread Diego Felix de Souza via ffmpeg-devel
and destroy all copies of the original message. --- --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 3/5] avcodec/get_bits: Use FF_PTR_ADD() in init_get_bits()

2025-07-03 Thread Kieran Kunhya via ffmpeg-devel
= 0; > > return ret; > -- > 2.49.0 > Doesn't match commit message > --- End Message --- _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [RFC] Introducing policies regarding "AI" contributions

2025-07-01 Thread Alexander Strasser via ffmpeg-devel
--- Begin Message --- Hi all, I do not like the branding of the LLMs as AI, thus I will for now continue to call it "AI" in quotes. I'm open for better terms. It was just yesterday brought up on IRC in #ffmpeg-devel that there was at least one, marked attempt to include "

[FFmpeg-devel] [PATCH] avfilter: add inverse tone mapping filter

2025-06-30 Thread Sarthak Indurkhya via ffmpeg-devel
rContext *avctx) +{ + +} + +const FFFilter ff_vf_inversetonemap = { +.p.name = "inversetonemap", +.p.description = "SDR to HDR inverse tone mapping filter", +.p.priv_class= &fil_class, +.p.flags = AVFILTER_FLAG_SLICE_THREADS, +.priv_size = sizeof(FilterContext), +.init= &ff_filter_init, +.uninit = &ff_filter_uninit, +FILTER_INPUTS(fil_inputs), +FILTER_OUTPUTS(fil_outputs), +FILTER_PIXFMTS(AV_PIX_FMT_YUV420P10LE), +}; + + + + + + + + -- 2.49.0 Get Outlook for Mac <https://aka.ms/GetOutlookForMac> --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] X Window Capture using FFmpeg

2025-06-30 Thread novaTopFlex via ffmpeg-devel
[Proton Mail](https://proton.me/mail/home) secure email.--- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org

Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_lut3d_opencl Initial support for OpenCL implementation of vf_lut3d.

2025-06-30 Thread Jan Studený via ffmpeg-devel
_pix_fmt_name(output->format), > + output->width, output->height, output->pts); > + > + return ff_filter_frame(outlink, output); > + > +fail: > + clFinish(ctx->command_queue); > + av_frame_free(&input); > + av_frame_free(&output); > + return err; > +} > + > +static av_cold void lut3d_opencl_uninit(AVFilterContext *avctx) > +{ > + LUT3DOpenCLContext *ctx = avctx->priv; > + cl_int cle; > + > + clReleaseMemObject(ctx->lut3d_buf); > + > + if (ctx->kernel) { > + cle = clReleaseKernel(ctx->kernel); > + if (cle != CL_SUCCESS) > + av_log(avctx, AV_LOG_ERROR, "Failed to release " > + "kernel: %d.\n", cle); > + } > + > + if (ctx->command_queue) { > + cle = clReleaseCommandQueue(ctx->command_queue); > + if (cle != CL_SUCCESS) > + av_log(avctx, AV_LOG_ERROR, "Failed to release " > + "command queue: %d.\n", cle); > + } > + > + av_freep(&ctx->lut); > + > + ff_opencl_filter_uninit(avctx); > +} > + > +static const AVFilterPad lut3d_opencl_inputs[] = { > + { > + .name = "default", > + .type = AVMEDIA_TYPE_VIDEO, > + .filter_frame = &lut3d_opencl_filter_frame, > + .config_props = &ff_opencl_filter_config_input, > + }, > +}; > + > +static const AVFilterPad lut3d_opencl_outputs[] = { > + { > + .name = "default", > + .type = AVMEDIA_TYPE_VIDEO, > + .config_props = &ff_opencl_filter_config_output, > + }, > +}; > + > +#define OFFSET(x) offsetof(LUT3DOpenCLContext, x) > +#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) > +#define TFLAGS > AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM > + > + > + > +#if CONFIG_LUT3D_OPENCL_FILTER > + > + > +static const AVOption lut3d_opencl_options[] = { > + { "file", "set 3D LUT file name", OFFSET(file), AV_OPT_TYPE_STRING, > {.str=NULL}, .flags = FLAGS }, > + { "interp", "select interpolation mode", OFFSET(interpolation), > AV_OPT_TYPE_INT, {.i64=INTERPOLATE_TETRAHEDRAL}, 0, NB_INTERP_MODE-1, TFLAGS, > .unit = "interp_mode" }, > + { "nearest", "use values from the nearest defined points", 0, > AV_OPT_TYPE_CONST, {.i64=INTERPOLATE_NEAREST}, 0, 0, TFLAGS, .unit = > "interp_mode" }, > + { "trilinear", "interpolate values using the 8 points defining a cube", 0, > AV_OPT_TYPE_CONST, {.i64=INTERPOLATE_TRILINEAR}, 0, 0, TFLAGS, .unit = > "interp_mode" }, > + { "tetrahedral", "interpolate values using a tetrahedron", 0, > AV_OPT_TYPE_CONST, {.i64=INTERPOLATE_TETRAHEDRAL}, 0, 0, TFLAGS, .unit = > "interp_mode" }, \ > + { NULL } > +}; > + > +AVFILTER_DEFINE_CLASS(lut3d_opencl); > + > +const FFFilter ff_vf_lut3d_opencl = { > + .p.name = "lut3d_opencl", > + .p.description = NULL_IF_CONFIG_SMALL("Adjust colors using a 3D LUT."), > + .p.priv_class = &lut3d_opencl_class, > + .p.flags = AVFILTER_FLAG_HWDEVICE, > + .priv_size = sizeof(LUT3DOpenCLContext), > + .init = &lut3d_opencl_init, > + .uninit = &lut3d_opencl_uninit, > + FILTER_INPUTS(lut3d_opencl_inputs), > + FILTER_OUTPUTS(lut3d_opencl_outputs), > + FILTER_SINGLE_PIXFMT(AV_PIX_FMT_OPENCL), > + .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE, > +}; > + > +#endif /* CONFIG_LUT3D_OPENCL_FILTER */ > -- > 2.39.5 (Apple Git-154) > > --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avfilter: add inverse tone mapping filter

2025-06-30 Thread Sarthak Indurkhya via ffmpeg-devel
avI-n_NXHBVs3ehog> Get Outlook for Mac <https://aka.ms/GetOutlookForMac> --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpe

Re: [FFmpeg-devel] [PATCH] libavutil: fix memory leak of drmVersion

2025-06-28 Thread Tim Blechmann via ffmpeg-devel
--- Begin Message --- attached (don't have a git send-email setup here at the moment) On 6/28/25 05:47, Michael Niedermayer wrote: On Wed, Jun 25, 2025 at 10:26:16AM +0800, Tim Blechmann via ffmpeg-devel wrote: Date: Wed, 25 Jun 2025 10:26:16 +0800 From: Tim Blechmann To: ffmpeg-

Re: [FFmpeg-devel] [PATCH] doc: Remove libav-merge.txt

2025-06-28 Thread Alexander Strasser via ffmpeg-devel
-have the change done in FFmpeg). > - > -Also see tools/murge, you can copy and paste a 3 way conflict into its stdin > -and it will display colored diffs. Any arguments to murge (like ones to > suppress > -whitespace differences) are passed into colordiff. > - > -TODO/FIXME/UNMERGED &

[FFmpeg-devel] [PATCH v5 3/3] avformat/whip: fix typos

2025-06-28 Thread Jack Lau via ffmpeg-devel
ip_check_bitstream(AVFormatContext *s, AVStream *st, const AVPacket extradata_isom = st->codecpar->extradata_size > 0 && st->codecpar->extradata[0] == 1; if (pkt->size >= 5 && AV_RB32(b) != 0x001 && (AV_RB24(b) != 0x01 || extr

[FFmpeg-devel] [PATCH v4 3/3] avformat/whip: fix typos

2025-06-27 Thread Jack Lau via ffmpeg-devel
ata; @@ -1892,7 +1892,7 @@ static int whip_check_bitstream(AVFormatContext *s, AVStream *st, const AVPacket extradata_isom = st->codecpar->extradata_size > 0 && st->codecpar->extradata[0] == 1; if (pkt->size >= 5 && AV_RB32(b) != 0x001 &&

[FFmpeg-devel] [PATCH v4 2/3] avformat/whip: reindent whip options

2025-06-27 Thread Jack Lau via ffmpeg-devel
UINT_MAX, ENC, .unit = "flags" }, +{ "ignore_ipv6","(Optional) Ignore any IPv6 ICE candidate", 0, +AV_OPT_TYPE_CONST, { .i64 = WHIP_FLAG_IGNORE_IPV6 }, 0, UINT_MAX, ENC, .unit = "flags" }, { NULL }, }; -- 2.49.0 --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v4 1/3] avformat/whip: add whip_flags ignore_ipv6 to skip IPv6 ICE candidates

2025-06-27 Thread Jack Lau via ffmpeg-devel
y IPv6 ICE candidate", 0, AV_OPT_TYPE_CONST, { .i64 = WHIP_FLAG_IGNORE_IPV6 }, 0, UINT_MAX, ENC, .unit = "flags" }, { NULL }, }; -- 2.49.0 --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH 1/3] avformat/whip: add whip_flags ignore_ipv6 to skip IPv6 ICE candidates

2025-06-27 Thread Jack Lau via ffmpeg-devel
y IPv6 ICE candidate", 0, AV_OPT_TYPE_CONST, { .i64 = WHIP_FLAG_IGNORE_IPV6 }, 0, UINT_MAX, ENC, .unit = "flags" }, { NULL }, }; -- 2.49.0 --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v2] ffprobe: add -codec: option

2025-06-27 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
SION, 1, NULL); @@ -3039,6 +3130,8 @@ static const OptionDef real_options[] = { { "print_filename",OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_print_filename}, "override the printed input filename", "print_file"}, { "find_stream_info",

Re: [FFmpeg-devel] [PATCH] tools: Remove libav-merge-next-commit

2025-06-26 Thread Alexander Strasser via ffmpeg-devel
$nextrev > - > -if [ "$1" = "noop" -a -n "$2" ]; then > -printf "\nThis commit is a noop, see $2\n" >> .git/MERGE_MSG > -fi > - > -printf "\nMerged-by: $(git config --get user.name) <$(git config --get > user.email)>\

Re: [FFmpeg-devel] [RFC] webp decoding

2025-06-26 Thread James Zern via ffmpeg-devel
speaking, it seemed like a good place to start. --- End Message --- _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] ffprobe: add -codec: option

2025-06-26 Thread Maryla Ustarroz via ffmpeg-devel
--- Begin Message --- On Wed, Jun 25, 2025 at 9:23 PM James Zern wrote: > > On Tue, Jun 10, 2025 at 8:02 AM Maryla Ustarroz-Calonge via > ffmpeg-devel wrote: > > > > > > > > > > -- Forwarded message -- > > From: Maryla Ustarroz-Ca

Re: [FFmpeg-devel] [PATCH] checkasm/h264dsp: Fix stack-buffer-overflow, effective-type violations

2025-06-25 Thread Tristan Matthews via ffmpeg-devel
--- Begin Message --- On Monday, June 16th, 2025 at 2:22 PM, Andreas Rheinhardt wrote: > Tristan Matthews via ffmpeg-devel: > > > On Monday, June 16th, 2025 at 6:53 AM, Andreas Rheinhardt > > andreas.rheinha...@outlook.com wrote: > > > > > Patch attached. &g

Re: [FFmpeg-devel] [PATCH] ffprobe: add -codec: option

2025-06-25 Thread James Zern via ffmpeg-devel
--- Begin Message --- On Tue, Jun 10, 2025 at 8:02 AM Maryla Ustarroz-Calonge via ffmpeg-devel wrote: > > > > > -- Forwarded message -- > From: Maryla Ustarroz-Calonge > To: ffmpeg-devel@ffmpeg.org > Cc: > Bcc: > Date: Tue, 10 Jun 2025 17:02:05 +0

Re: [FFmpeg-devel] [PATCH] Revert "Add FUNDING.json"

2025-06-25 Thread Kieran Kunhya via ffmpeg-devel
ll reduce trust by donators in FFmpeg. > > thx > > [...] > -- > Translation: Be thankful I am managing FFmpeg donations using my personal wallet without any accountability to the community. (Same level of accountability as avcodec.org Derek, be thankful that Michael is do

Re: [FFmpeg-devel] [PATCH] Revert "Add FUNDING.json"

2025-06-25 Thread Kieran Kunhya via ffmpeg-devel
--- Begin Message --- On Tue, 24 Jun 2025, 09:28 compn, wrote: > On Tue, 24 Jun 2025 07:48:30 +0100, Kieran Kunhya via ffmpeg-devel > wrote: > > > On Tue, 24 Jun 2025, 07:00 compn, wrote: > > > > > On Mon, 23 Jun 2025 21:20:56 +0100, Derek Buitenhuis wrote: >

[FFmpeg-devel] [PATCH v2] avcodec/itut35: always check the provider code and country code together

2025-06-25 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
ovider_oriented_code = bytestream2_get_be16u(&bc); diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 408890fa89..8142d9125e 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -2869,7 +2869,7 @@ static int mkv_write_block(void *logctx, MatroskaMu

[FFmpeg-devel] [PATCH] libavutil: fix memory leak of drmVersion

2025-06-24 Thread Tim Blechmann via ffmpeg-devel
} drmFreeVersion(info); #endif av_log(ctx, AV_LOG_VERBOSE, "Trying to use " "DRM render node for device %d.\n", n); -- 2.48.1 --- End Message --- _______ ffmpeg-devel mailing list ff

Re: [FFmpeg-devel] [PATCH] Revert "Add FUNDING.json"

2025-06-24 Thread Kieran Kunhya via ffmpeg-devel
--- Begin Message --- On Wed, 25 Jun 2025, 02:09 compn, wrote: > On Tue, 24 Jun 2025 10:22:26 +0200, Kieran Kunhya via ffmpeg-devel > wrote: > > > On Tue, 24 Jun 2025, 09:28 compn, wrote: > > > > > On Tue, 24 Jun 2025 07:48:30 +0100, Kieran Kunhya via ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] Revert "Add FUNDING.json"

2025-06-24 Thread Kieran Kunhya via ffmpeg-devel
to USD and sent to SPI > but is being held as bitcoin purely out of ideological beliefs. > > Kieran I would recommend all FFmpeg developers read about why stablecoins are a bad idea from actual economists, not Youtube economists: https://archive.ph/6Ku7u Kieran --- End Message ---

Re: [FFmpeg-devel] [PATCH] Revert "Add FUNDING.json"

2025-06-24 Thread Kieran Kunhya via ffmpeg-devel
These questions arent written for others. So the discussions > are much nicer and shorter if others reply. Hi Michael, Thank you for your kind words. So just to confirm if Derek asked directly who owns avcodec.org, you'd answer? Kieran --- End Message ---

Re: [FFmpeg-devel] [PATCH] Revert "Add FUNDING.json"

2025-06-24 Thread Kieran Kunhya via ffmpeg-devel
in the project, parts of ffmpeg are owned by > individual developers. > > -compn > You know perfectly well this wallet could be converted to USD and sent to SPI but is being held as bitcoin purely out of ideological beliefs. Kieran > --- End Message --- _______

Re: [FFmpeg-devel] [PATCH v5] Mark C globals with small code model

2025-06-23 Thread Pranav Kant via ffmpeg-devel
ctures have all dealt with that issue cleanly already. > _______ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe

Re: [FFmpeg-devel] [PATCH] configure: Make MSVC version grabbing more robust

2025-06-21 Thread Alexander Strasser via ffmpeg-devel
--- Begin Message --- Hi Martin! On 2025-06-21 13:37 +0300, Martin Storsjö wrote: > > On 21. Jun 2025, at 12.20, Alexander Strasser via ffmpeg-devel > > wrote: > > > > > > On 2025-06-21 00:03 +0200, Kacper Michajlow wrote: > >> On Fri, 20 Jun 202

Re: [FFmpeg-devel] [PATCH] configure: Make MSVC version grabbing more robust

2025-06-21 Thread Alexander Strasser via ffmpeg-devel
|| { $_cc -v 2>&1 | grep -q clang && $_cc -? > /dev/null 2>&1; }; then _type=msvc if $_cc -nologo- 2>&1 | grep -q ^Microsoft; then - # The version number is printed on the first line on stderr, stdout - # gets the usage inst

Re: [FFmpeg-devel] [PATCH] h264dsp: h264_luma_dc_dequant_idct: constify input

2025-06-20 Thread Tristan Matthews via ffmpeg-devel
x86/h264dsp_init.c > @@ -76,7 +76,7 @@ IDCT_ADD_REP_FUNC2(, 8_422, 8, mmx) > IDCT_ADD_REP_FUNC2(, 8_422, 10, sse2) > IDCT_ADD_REP_FUNC2(, 8_422, 10, avx) > > -void ff_h264_luma_dc_dequant_idct_sse2(int16_t *output, int16_t *input, int > qmul); > +void ff_h264_luma_dc_dequant_

Re: [FFmpeg-devel] [PATCH] Add FUNDING.json

2025-06-19 Thread Kieran Kunhya via ffmpeg-devel
0d749971265858612AA7139" > +} > + } > +} > -- > 2.49.0 > This surely has tax implications for SPI? Also, is this wallet owned by the owner of avcodec.org? Kieran > --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] ffprobe: add -codec: option

2025-06-19 Thread Maryla Ustarroz via ffmpeg-devel
--- Begin Message --- Friendly ping. This feature came up during the review of "[PATCH 2/2] avcodec/libaom: Add tests for HDR10+ metadata support" https://ffmpeg.org/pipermail/ffmpeg-devel/2025-June/344683.html On Tue, Jun 10, 2025 at 5:02 PM Maryla Ustarroz-Calonge via ffmpeg-de

Re: [FFmpeg-devel] [PATCH] checkasm/h264dsp: Fix stack-buffer-overflow, effective-type violations

2025-06-16 Thread Tristan Matthews via ffmpeg-devel
tried make fate on a few different machines and didn't hit that. Best, Tristan --- End Message --- _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email f

Re: [FFmpeg-devel] [PATCH v6] gcc: Don't disable '-ftree-vectorize' if gcc version is 13 or newer

2025-06-16 Thread Kieran Kunhya via ffmpeg-devel
--- Begin Message --- On Mon, 16 Jun 2025, 10:29 Reto Kromer via ffmpeg-devel, < ffmpeg-devel@ffmpeg.org> wrote: > > > > -- Forwarded message -- > From: Reto Kromer > To: FFmpeg development discussions and patches > Cc: > Bcc: > Date: Mon, 16

Re: [FFmpeg-devel] [PATCH v6] gcc: Don't disable '-ftree-vectorize' if gcc version is 13 or newer

2025-06-16 Thread Reto Kromer via ffmpeg-devel
--- Begin Message --- Oops, sorry for the noise. Reto--- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org

Re: [FFmpeg-devel] [PATCH v6] gcc: Don't disable '-ftree-vectorize' if gcc version is 13 or newer

2025-06-16 Thread Reto Kromer via ffmpeg-devel
happen there anyway. +1 Kind regards from Reto --- End Message --- _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] Fixed null dereference in ffplay

2025-06-15 Thread Emma Romano via ffmpeg-devel
nd Message --- _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v3] avformat/tls_openssl: fix warnings when openssl is lower version

2025-06-15 Thread Jack Lau via ffmpeg-devel
IO_new_mem_buf(pem_str, -1); +#endif if (!mem) { av_log(NULL, AV_LOG_ERROR, "BIO_new_mem_buf failed\n"); return NULL; -- 2.49.0 --- End Message --- ___________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.o

Re: [FFmpeg-devel] [RFC] Moving edit list handling out of demuxers

2025-06-13 Thread Kieran Kunhya via ffmpeg-devel
e. And > of course back again to MOV if so desired. > > I haven't sketched out any API yet, but it would probably closely > mirror how elst works in MOV. Care should be taken that MXF operational > pattern 3a can also fit into

Re: [FFmpeg-devel] [PATCH] avcodec/itut35: always check the provider code and country code together

2025-06-13 Thread Maryla Ustarroz via ffmpeg-devel
--- Begin Message --- On Thu, Jun 12, 2025 at 6:48 PM Devin Heitmueller wrote: > > On Thu, Jun 12, 2025 at 12:27 PM Maryla Ustarroz-Calonge via > ffmpeg-devel wrote: > > -- Forwarded message -- > > From: Maryla Ustarroz-Calonge > > To: ffmpeg-devel

[FFmpeg-devel] [PATCH v3 3/3] avformat/whip: reindent whip options

2025-06-13 Thread Jack Lau via ffmpeg-devel
re_ipv6", "The optional Ignore any IPv6 ICE candidate", 0, +AV_OPT_TYPE_CONST, { .i64 = WHIP_FLAG_IGNORE_IPV6 }, 0, UINT_MAX, ENC, .unit = "flags" }, { NULL }, }; -- 2.49.0 --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v3 2/3] avformat/whip: add whip_flags ignore_ipv6 to skip IPv6 candidates

2025-06-13 Thread Jack Lau via ffmpeg-devel
gs affecting WHIP connection behavior", OFFSET(flags), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, 0, UINT_MAX, ENC, .unit = "flags" }, +{ "ignore_ipv6","The optional ignore any IPv6 ICE candidate", 0, AV_OPT_TYPE_CONST, { .i64 =

[FFmpeg-devel] [PATCH v3 1/3] avformat/whip: replace AV_OPT_FLAG_DECODING_PARAM to ENCODING

2025-06-13 Thread Jack Lau via ffmpeg-devel
ot;The optional private key file path for DTLS", OFFSET(key_file), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, ENC }, { NULL }, }; -- 2.49.0 --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

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

2025-06-13 Thread Maryla Ustarroz via ffmpeg-devel
--- Begin Message --- On Thu, Jun 5, 2025 at 9:27 AM Andreas Rheinhardt wrote: > > Maryla Ustarroz via ffmpeg-devel: > > On Fri, May 30, 2025 at 2:52 PM Andreas Rheinhardt > > wrote: > >> > >> Maryla Ustarroz-Calonge via ffmpeg-devel: > >>> The new

[FFmpeg-devel] [PATCH v2 1/2] avformat/whip: add whip_flags ignore_ipv6 to skip IPv6 candidates

2025-06-12 Thread Jack Lau via ffmpeg-devel
key file path for DTLS", OFFSET(key_file), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, ENC }, +{ "whip_flags", "Set flags affecting WHIP connection behavior", OFFSET(flags), AV_OPT_TYPE_FLAGS, { .i64 = 0 },

[FFmpeg-devel] [PATCH v2 2/2] avformat/whip: reindent whip options

2025-06-12 Thread Jack Lau via ffmpeg-devel
T_MAX, ENC, .unit = "flags" }, +{ "ignore_ipv6", "The optional ignore any IPv6 ICE candidate", 0, +AV_OPT_TYPE_CONST, { .i64 = WHIP_FLAG_IGNORE_IPV6 },0, UINT_MAX, ENC, .unit = "flags" }, { NULL }, }; -- 2.49.0 --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avcodec/itut35: always check the provider code and country code together

2025-06-12 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
bytestream_put_be16(&payload, 0x01); // provider_oriented_code bytestream_put_byte(&payload, 0x04); // application_identifier -- 2.50.0.rc2.692.g299adb8693-goog --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] avformat/mpegts: Passthrough SCTE 35 Current behavior breaks SCTE 35 by wrapping it in a PES packet, this adds the logic for the SCTE 35 messages to be passed through cleanl

2025-06-12 Thread Pierre Le Fevre via ffmpeg-devel
--- Begin Message --- Hi Devin, I saw your patch but noticed it was still not merged. Since it’s more comprehensive, I’m all for merging your patch instead of mine if it’s not too stale. Best, Pierre From: ffmpeg-devel on behalf of Devin Heitmueller Date: Wednesday, 11 June 2025 at 16:32 To

Re: [FFmpeg-devel] [PATCH 3/3] tools/ffmpeg-sg: Include show-graph wrapper script in build output

2025-06-11 Thread Kieran Kunhya via ffmpeg-devel
--- Begin Message --- On Wed, Jun 11, 2025 at 9:58 PM softworkz . wrote: > > > > > -Original Message- > > From: ffmpeg-devel On Behalf Of > > Marton Balint > > Sent: Mittwoch, 11. Juni 2025 21:18 > > To: FFmpeg development discussions and patch

[FFmpeg-devel] [PATCH] avformat/mpegts: Passthrough SCTE 35 Current behavior breaks SCTE 35 by wrapping it in a PES packet, this adds the logic for the SCTE 35 messages to be passed through cleanly.

2025-06-11 Thread Pierre Le Fevre via ffmpeg-devel
ype != AVMEDIA_TYPE_ATTACHMENT && par->codec_id != AV_CODEC_ID_VP8 && par->codec_id != AV_CODEC_ID_VP9 && - par->codec_id != AV_CODEC_ID_SMPTE_2038) { + par->codec_id != AV_CODEC_ID_SMPTE_2038 &

[FFmpeg-devel] [PATCH] ffprobe: add -codec: option

2025-06-10 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
tic const OptionDef real_options[] = { { "print_filename",OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_print_filename}, "override the printed input filename", "print_file"}, { "find_stream_info", OPT_TYPE_BOOL, OPT_INPUT | OPT_EXPERT, { &find

[FFmpeg-devel] [PATCH] avformat/whip: mark as experimental

2025-06-10 Thread Jack Lau via ffmpeg-devel
--- Begin Message --- This muxer has been marked AVFMT_EXPERIMENTAL. Add a note in muxers.texi that WHIP is an experimental feature This patch doesn't effect WHIP usage command, as WHIP always needs to be explicitly specified The details as follows: https://ffmpeg.org/pipermail/ffmpeg-

Re: [FFmpeg-devel] [PATCH 0/3] tools/ffmpeg-sg: Add show-graph wrapper scripts (aka killer feature)

2025-06-09 Thread Kieran Kunhya via ffmpeg-devel
xxx > Why does this need to be part of FFmpeg if it's a wrapper script to spawn a web browser (nothing to do with FFmpeg's actual purpose of processing multimedia). Kieran > --- End Message --- _______ ffmpeg-devel mailing list ffmpeg-deve

Re: [FFmpeg-devel] [PATCH] swscale/options: use accurate rounding and full chroma by default

2025-06-09 Thread Ridley Combs via ffmpeg-devel
--- Begin Message --- > On Jun 9, 2025, at 05:17, Michael Niedermayer wrote: > > Hi > > On Sun, Jun 08, 2025 at 04:52:35PM -0700, rcombs via ffmpeg-devel wrote: >> Date: Sun, 8 Jun 2025 16:52:35 -0700 >> From: rcombs >> To: ffmpeg-devel@ffmpeg.org >>

[FFmpeg-devel] [PATCH] doc/muxers: add a note that WHIP is an experimental feaeture

2025-06-09 Thread Jack Lau via ffmpeg-devel
 --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH 3/3] avformat/whip: align whip options

2025-06-09 Thread Jack Lau via ffmpeg-devel
0,0, ENC }, +{ "whip_flags", "set flags affecting WHIP connection behavior", OFFSET(flags), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, 0, UINT_MAX, ENC, .unit = "flags" }, +{ "ignore_ipv6",

[FFmpeg-devel] [PATCH 2/3] avformat/whip: add whip_flags ignore_ipv6 to skip IPv6 candidates

2025-06-09 Thread Jack Lau via ffmpeg-devel
gs affecting WHIP connection behavior", OFFSET(flags), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, 0, UINT_MAX, ENC, .unit = "flags" }, +{ "ignore_ipv6","ignore any IPv6 ICE candidate", 0, AV_OPT_TYPE_CONST, { .i64 = WHIP_

[FFmpeg-devel] [PATCH 1/3] avformat/whip: replace AV_OPT_FLAG_DECODING_PARAM to ENCODING

2025-06-09 Thread Jack Lau via ffmpeg-devel
ot;The optional private key file path for DTLS", OFFSET(key_file), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, ENC }, { NULL }, }; -- 2.49.0 --- End Message --- ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v3] avformat/whip: mark as experimental

2025-06-09 Thread Jack Lau via ffmpeg-devel
.p.flags= AVFMT_GLOBALHEADER | AVFMT_NOFILE | AVFMT_EXPERIMENTAL, .p.priv_class = &whip_muxer_class, .priv_data_size = sizeof(WHIPContext), .init = whip_init, -- 2.49.0 --- End Message --- _______ ffmpeg-deve

[FFmpeg-devel] [PATCH v2] avformat/whip: set this muxer as experimental

2025-06-09 Thread Jack Lau via ffmpeg-devel
.p.flags= AVFMT_GLOBALHEADER | AVFMT_NOFILE | AVFMT_EXPERIMENTAL, .p.priv_class = &whip_muxer_class, .priv_data_size = sizeof(WHIPContext), .init = whip_init, -- 2.49.0 --- End Message --- _______ ffmpeg-deve

[FFmpeg-devel] [PATCH] swscale/options: use accurate rounding and full chroma by default

2025-06-08 Thread rcombs via ffmpeg-devel
clude "version_major.h" #define LIBSWSCALE_VERSION_MINOR 0 -#define LIBSWSCALE_VERSION_MICRO 100 +#define LIBSWSCALE_VERSION_MICRO 101 #define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \ LIBSWSCALE_VERSION_MINOR, \ -- 2.45.1

Re: [FFmpeg-devel] [PATCH v2] rtpdec: Fix RTP timestamp wraparound in Producer Reference Time

2025-06-08 Thread Kieran Kunhya via ffmpeg-devel
rse_ntp_time(s->last_rtcp_ntp_time) - NTP_OFFSET_US; > -delta_timestamp = (int64_t)timestamp - (int64_t)s->last_rtcp_timestamp; > +delta_timestamp = (int32_t)(timestamp - s->last_rtcp_timestamp); > delta_time = av_rescale_q(delta_timestamp, s->st->time_base, > AV_TIME_BASE_Q

[FFmpeg-devel] [PATCH] avformat/format: fix muxer experimental check is always false

2025-06-07 Thread Jack Lau via ffmpeg-devel
if (fmt->flags & AVFMT_EXPERIMENTAL && short_name) continue; score = 0; if (fmt->name && short_name && av_match_name(short_name, fmt->name)) -- 2.49.0 _______ ffmpeg-devel mailing list ffm

[FFmpeg-devel] [PATCH v2] avformat/tls_openssl: fix warnings when openssl is lower version

2025-06-07 Thread Jack Lau via ffmpeg-devel
_________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [RFC] Subtitle Filtering Ramp-Up

2025-06-07 Thread Kieran Kunhya via ffmpeg-devel
On Sat, Jun 7, 2025 at 5:20 PM softworkz . wrote: > > > It's MythBusters Day! > = > > > Today: Busting the Lies of Nicolas George Can you stop spamming this list with your rants and get a blog or something? Kieran ______

[FFmpeg-devel] [PATCH] avformat/tls_openssl: fix warnings when openssl is lower version

2025-06-06 Thread Jack Lau via ffmpeg-devel
(const char *pem_str) { -BIO *mem = BIO_new_mem_buf(pem_str, -1); +BIO *mem = BIO_new_mem_buf((void *)pem_str, -1); if (!mem) { av_log(NULL, AV_LOG_ERROR, "BIO_new_mem_buf failed\n"); return NULL; -- 2.49.0 ___________ ffmpeg-d

Re: [FFmpeg-devel] [PATCH v11 0/3] avutil/log: Add log flag to control printing of memory addresses

2025-06-06 Thread Kieran Kunhya via ffmpeg-devel
you seriously expecting people to be able to review diffs of diffs like this? Kieran _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...

Re: [FFmpeg-devel] [PATCH] avformat/dhav: Do not evaluate avio_size() multiple times

2025-06-06 Thread Kieran Kunhya via ffmpeg-devel
gt; -end_buffer_pos = avio_size(s->pb) - end_buffer_size; > +end_buffer_pos = size - end_buffer_size; > avio_seek(s->pb, end_buffer_pos, SEEK_SET); > avio_read(s->pb, end_buffer, end_buffer_size); > > -- > 2.49.0 > Can you explain what "not safe" m

Re: [FFmpeg-devel] [PATCH] avformat/format: make experimental flag works for muxer

2025-06-06 Thread Kieran Kunhya via ffmpeg-devel
recover from any packet loss. Without the experimental flag FFmpeg will get support tickets raised and claims it is inferior to other implementations. Users will not be aware of the lack of missing feature otherwise. So it may be compliant on paper but it's not usable in the real world. Kieran ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v2] avformat/tls_openssl: fix build error when openssl version < 3

2025-06-06 Thread Jack Lau via ffmpeg-devel
red.cert_buf); av_freep(&ctx->tls_shared.key_buf); -#if OPENSSL_VERSION_NUMBER < 0x3000L /* OpenSSL 3.0 */ - EC_KEY_free(ctx->dtls_eckey); -#endif +EVP_PKEY_free(ctx->pkey); return 0; } -- 2.49.0 _______ ffmpeg-dev

Re: [FFmpeg-devel] [PATCH] avformat/whip: set this muxer as experimental

2025-06-05 Thread Kieran Kunhya via ffmpeg-devel
On Thu, Jun 5, 2025 at 3:55 PM Jack Lau via ffmpeg-devel wrote: > > Signed-off-by: Jack Lau > --- > libavformat/whip.c | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/libavformat/whip.c b/libavformat/whip.c > index 0671e23635..e7cd57400d 100644 > --- a

[FFmpeg-devel] [PATCH] avformat/whip: set this muxer as experimental

2025-06-05 Thread Jack Lau via ffmpeg-devel
;); +return AVERROR_EXPERIMENTAL; +} + if ((ret = initialize(s)) < 0) goto end; -- 2.49.0 _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or e

Re: [FFmpeg-devel] [PATCH v3] avformat/whip: Add WHIP muxer support for subsecond latency streaming

2025-06-05 Thread Kieran Kunhya via ffmpeg-devel
On Thu, 5 Jun 2025, 00:03 Jack Lau, wrote: > > > > On Jun 5, 2025, at 06:20, Kieran Kunhya via ffmpeg-devel < > ffmpeg-devel@ffmpeg.org> wrote: > > > > On Wed, 4 Jun 2025, 12:46 Steven Liu, wrote: > > > >> Kieran Kunhya via ffmpeg-

Re: [FFmpeg-devel] [PATCH v3] avformat/whip: Add WHIP muxer support for subsecond latency streaming

2025-06-04 Thread Kieran Kunhya via ffmpeg-devel
On Wed, 4 Jun 2025, 12:46 Steven Liu, wrote: > Kieran Kunhya via ffmpeg-devel 于2025年6月4日周三 > 19:35写道: > Hi Kieran, > > > > > @Andreas Rheinhardt > > Should we revert this? > > I believe it would be better to leave comments if there are any > concerns abo

Re: [FFmpeg-devel] [PATCH v2 1/2] avcodec/libaom: Add HDR10+ metadata support

2025-06-04 Thread James Zern via ffmpeg-devel
On Wed, Jun 4, 2025 at 5:15 AM Maryla Ustarroz-Calonge via ffmpeg-devel wrote: > > Signed-off-by: Maryla Ustarroz-Calonge > --- > Changelog | 1 + > libavcodec/libaomdec.c | 62 ++ > libavcode

[FFmpeg-devel] [PATCH] libavutil/display: improve av_display_rotation_get for reflections

2025-06-04 Thread Syed AbuTalib via ffmpeg-devel
ay-improve-av_display_rotation_get-fo.patch Description: Binary data _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org wi

[FFmpeg-devel] [PATCH] avformat/tls_openssl: fix build error when openssl version < 3

2025-06-04 Thread Jack Lau via ffmpeg-devel
,9 +1021,7 @@ static av_cold int dtls_close(URLContext *h) av_freep(&ctx->tls_shared.fingerprint); av_freep(&ctx->tls_shared.cert_buf); av_freep(&ctx->tls_shared.key_buf); -#if OPENSSL_VERSION_NUMBER < 0x3000L /* OpenSSL 3.0 */ -EC_KEY_free(ctx->dtls_eckey); -#endif

Re: [FFmpeg-devel] [RFC] Cherry picks vs merges

2025-06-04 Thread Kieran Kunhya via ffmpeg-devel
FFmpeg. Kieran _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v2 2/2] avcodec/libaom: Add tests for HDR10+ metadata support

2025-06-04 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
_DATA] +[/FRAME] \ No newline at end of file -- 2.49.0.1204.g71687c7c1d-goog _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v2 1/2] avcodec/libaom: Add HDR10+ metadata support

2025-06-04 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
type == AV_PICTURE_TYPE_I) flags |= AOM_EFLAG_FORCE_KF; + +res = add_hdr_plus(avctx, rawimg, frame); +if (res < 0) +return res; } res = aom_codec_encode(&ctx->encoder, rawimg, timestamp, duration, flags); diff --git a/libavcodec/version.h b/

Re: [FFmpeg-devel] [PATCH v3] avformat/whip: Add WHIP muxer support for subsecond latency streaming

2025-06-04 Thread Kieran Kunhya via ffmpeg-devel
@Andreas Rheinhardt Should we revert this? Kieran ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject

Re: [FFmpeg-devel] [RFC] Cherry picks vs merges

2025-06-03 Thread Kieran Kunhya via ffmpeg-devel
rests of FFmpeg? Kieran > _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [RFC] Cherry picks vs merges

2025-06-02 Thread Kieran Kunhya via ffmpeg-devel
ot;. Not to mention emailed with text clearly from ChatGPT. Kieran _______ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

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

2025-06-02 Thread Maryla Ustarroz via ffmpeg-devel
On Fri, May 30, 2025 at 2:52 PM Andreas Rheinhardt wrote: > > Maryla Ustarroz-Calonge via ffmpeg-devel: > > The new fate sample av1/metadata_hdr10_plus.ivf used in the second > > test is the output of the first test. > > > > Signed-off-by: Maryla Ustarroz-Calong

Re: [FFmpeg-devel] [RFC] Cherry picks vs merges

2025-06-01 Thread Kieran Kunhya via ffmpeg-devel
ities, > > This is a serious accusation. > Changing the licence based on a technicality (that would not stand up in court) is also a serious step. FFmpeg should get legal advice before doing this and there should be a vote. I am astonished how flippantly this is being treated

Re: [FFmpeg-devel] [RFC] Cherry picks vs merges

2025-06-01 Thread Kieran Kunhya via ffmpeg-devel
question about will and time than vote. > Librempeg has this licence statement: All Librempeg modifications, and any new files not available in FFmpeg, are licensed under GPL v2, unless stated otherwise. So how do you plan to merge? Kieran > ___ ffm

Re: [FFmpeg-devel] The "bad" Patch

2025-05-31 Thread Kieran Kunhya via ffmpeg-devel
_____ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH 2/2] swscale: Neon rgb_to_yuv_half process 32 pixels at a time

2025-05-31 Thread Kieran Kunhya via ffmpeg-devel
On Sat, 31 May 2025, 10:17 Dmitriy Kovalenko, wrote: > This patch integrates so called double bufferring when we are loading > Nit: I am not sure this is what most people refer to as "double buffering" Kieran > _______ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 2/2] fftools/resman: use inflate loop with increasing buffer size

2025-05-30 Thread Kieran Kunhya via ffmpeg-devel
t; +return AVERROR(ENOMEM); > +} > + > +buf = tmp_buf; > +} > +} while (ret != Z_STREAM_END); > > *out_len = chunk - strm.avail_out; > buf[*out_len] = 0; // Ensure null termination > -- > ffmpeg-codebot

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

2025-05-30 Thread James Zern via ffmpeg-devel
On Fri, May 30, 2025 at 3:52 AM Maryla Ustarroz-Calonge via ffmpeg-devel wrote: > > Signed-off-by: Maryla Ustarroz-Calonge > --- > libavcodec/libaomdec.c | 62 ++ > libavcodec/libaomenc.c | 60 +++

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

2025-05-30 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
/1023 +[/SIDE_DATA] +[/FRAME] \ No newline at end of file -- 2.49.0.1204.g71687c7c1d-goog ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

  1   2   3   4   5   6   7   8   9   10   >