, 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".
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".
--- 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&
--- 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'
--- 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
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 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".
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
= 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".
--- 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 "
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".
[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
_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".
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
--- 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-
-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
&
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
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 &&
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".
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".
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".
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",
$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)>\
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".
--- 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
--- 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
--- 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
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
--- 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:
>
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
}
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
--- 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
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 ---
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 ---
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 ---
_______
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
--- 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
|| { $_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
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_
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".
--- 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
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
--- 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
--- 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
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".
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".
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
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
--- 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
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".
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 =
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".
--- 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
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 },
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".
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".
--- 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
--- 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
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 &
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
--- 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-
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
--- 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 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".
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",
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_
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".
.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
.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
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
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
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 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".
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
______
(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
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...
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
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".
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
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
;);
+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
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-
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
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
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
,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
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".
_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".
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/
@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
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".
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".
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
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
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
_____
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".
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
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
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 +++
/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 - 100 of 1718 matches
Mail list logo