[FFmpeg-devel] [PATCH] avcodec/x86/me_cmp: Avoid MMX in (n)sse (PR #20822)

2025-11-02 Thread mkver via ffmpeg-devel
MXEXT(cpu_flags)) { #if !HAVE_ALIGNED_STACK c->hadamard8_diff[0] = ff_hadamard8_diff16_mmxext; -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/dashdec: Fix urls with special characters in manifest (PR #20823)

2025-11-02 Thread Hendi48 via ffmpeg-devel
cialChars(NULL, tmp_str); +xmlNodeSetContent(baseurl_nodes[i], escaped); updated = 1; +xmlFree(escaped); xmlFree(text); } } -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send a

[FFmpeg-devel] [PATCH] avcodec/x86/mpegvideoencdsp_init: Fix left shift of negative number (PR #20733)

2025-10-21 Thread mkver via ffmpeg-devel
<= 16 + SCALE_OFFSET - BASIS_SHIFT + RECON_SHIFT; +scale *= 1 << (16 + SCALE_OFFSET - BASIS_SHIFT + RECON_SHIFT); __asm__ volatile( "movd%3, %%xmm2 \n\t" "punpcklwd %%xmm2, %%xmm2 \n\t" -- 2.49.1 _

[FFmpeg-devel] [PATCH] avfilter: enhance command processing with chain propagation and direction control. (PR #20731)

2025-10-21 Thread cenzhanquan1 via ffmpeg-devel
d recursively +/// forward the command to subsequent filters, covering the full filter topology. +#define AVFILTER_CMD_FLAG_REVERSE 8 ///< Only effective when paired with AVFILTER_CMD_FLAG_CHAIN. Changes the command's traversal +

[FFmpeg-devel] [PATCH] avcodec/liblc3enc: support packed float (AV_SAMPLE_FMT_FLT) input. (PR #20721)

2025-10-19 Thread cenzhanquan1 via ffmpeg-devel
code_init, .close = liblc3_encode_close, -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Remove some 3dnow remnants (PR #20748)

2025-10-24 Thread mkver via ffmpeg-devel
DNOW) -#define INLINE_AMD3DNOWEXT(flags) CPUEXT_SUFFIX(flags, _INLINE, AMD3DNOWEXT) #define INLINE_MMX(flags) CPUEXT_SUFFIX(flags, _INLINE, MMX) #define INLINE_MMXEXT(flags)CPUEXT_SUFFIX(flags, _INLINE, MMXEXT) #define INLINE_SSE(flags) CPUEXT_SUFFIX(flags, _INLINE, SSE) -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] libavformat/movenc: Output ftyp atom with hybrid_fragmented+delay_moov (PR #20749)

2025-10-25 Thread anthonybajoua via ffmpeg-devel
gs |= FF_MOV_FLAG_FRAG_KEYFRAME; if (mov->flags & FF_MOV_FLAG_HYBRID_FRAGMENTED) { +if (mov->flags & FF_MOV_FLAG_DELAY_MOOV) { +mov_write_identification(pb, s); +} avio_wb32(pb, 8); // placeholder for extended size field

[FFmpeg-devel] [PATCH] Revert addition of 420/422 10/12bit MSB-padded pixel formats (PR #20852)

2025-11-06 Thread Lynne via ffmpeg-devel
PR #20852 opened by Lynne URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20852 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20852.patch The confusion arose through a single issue - mpv not correctly playing back 10bit content. We incorrectly assumed that the fault was with us -- we're

[FFmpeg-devel] [PATCH] avcodec/x86/hevc/idct: Port ff_hevc_idct_4x4_dc_{8,10,12}_mmxext to SSE2 (PR #20788)

2025-10-29 Thread mkver via ffmpeg-devel
; memcpy(coeffs1, coeffs0, sizeof(*coeffs0) * size); -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-29 Thread wsbalgotrader--- via ffmpeg-devel
nsion. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-29 Thread isellthegood--- via ffmpeg-devel
I vote R - Revoke his access, he clearly is not mature enough to handle the internet. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-29 Thread isellthegood--- via ffmpeg-devel
That's unfortunate, but here we can call you a "motherfer" as much as we want. _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-29 Thread isellthegood--- via ffmpeg-devel
R ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/rtmpproto: consider command line argument lengths (PR #20796)

2025-10-30 Thread michaelni via ffmpeg-devel
OR, "Unable to create response packet\n"); return ret; } -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] libavformat/udp: Fix call to recvfrom(2) (PR #20797)

2025-10-30 Thread desmondliu via ffmpeg-devel
ile(1) { UDPQueuedPacketHeader pkt_header; +pkt_header.addr_len = sizeof(pkt_header.addr); pthread_mutex_unlock(&s->mutex); /* Blocking operations are always cancellation points; -- 2.49.1 _______ ffmpeg-devel ma

[FFmpeg-devel] [PATCH] WIP, RFC: Avoid reliance on DCE (PR #20793)

2025-10-30 Thread mkver via ffmpeg-devel
PR #20793 opened by mkver URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20793 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20793.patch This patchset is a proposal to get rid of our spec-incompliant reliance on dead code elimination. The key to it is a macro IF(CONFIG, cond, code) (co

[FFmpeg-devel] [PATCH] All: Removed reliance on compiler performing dead code elimination, changed various macro constant checks from if() to #if (PR #20794)

2025-10-30 Thread death via ffmpeg-devel
avfilter/x86/vf_ssim_init.c +++ b/libavfilter/x86/vf_ssim_init.c @@ -34,8 +34,10 @@ void ff_ssim_init_x86(SSIMDSPContext *dsp) { int cpu_flags = av_get_cpu_flags(); -if (ARCH_X86_64 && EXTERNAL_SSSE3(cpu_flags)) +#if ARCH_X86_64 +if (EXTERNAL_SSSE3(cpu_flags)) dsp->ssim_4x4_line = ff_ssim_4x4_line_ssse3; +#endif if (EXTERNAL_SSE4(cpu_flags)) dsp->ssim_end_line = ff_ssim_end_line_sse4; if (EXTERNAL_XOP(cpu_flags)) diff --git a/libavfilter/x86/vf_w3fdif_init.c b/libavfilter/x86/vf_w3fdif_init.c index 16202fba76..6d677d651d 100644 --- a/libavfilter/x86/vf_w3fdif_init.c +++ b/libavfilter/x86/vf_w3fdif_init.c @@ -56,7 +56,9 @@ av_cold void ff_w3fdif_init_x86(W3FDIFDSPContext *dsp, int depth) dsp->filter_scale= ff_w3fdif_scale_sse2; } -if (ARCH_X86_64 && EXTERNAL_SSE2(cpu_flags) && depth <= 8) { +#if ARCH_X86_64 +if (EXTERNAL_SSE2(cpu_flags) && depth <= 8) { dsp->filter_complex_high = ff_w3fdif_complex_high_sse2; } +#endif } -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] 1-833-341-5261 – Qatar Airways Name Change Support

2025-10-31 Thread nathanael--- via ffmpeg-devel
ight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Frontier Airlines Customer Contact Numbers in the USA — Complete Step-by-Step Guide

2025-10-31 Thread yanine24--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Common Mistakes to Avoid When Calling Condor Airlines

2025-10-31 Thread yanine24--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] vAvelo Airlines Customer Service: Phone Number to Speak with a Real Person

2025-10-31 Thread yanine24--- via ffmpeg-devel
mpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Get in Touch with a Real Person at Contour Airlines: Customer Service Number

2025-10-31 Thread yanine24--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Need to Talk to a Live Agent? Aeromexico Airlines Customer Service Phone Number

2025-10-31 Thread yanine24--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] How to Reach a Real Person at Spirit Airlines Customer Service

2025-10-31 Thread yanine24--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Contacting Alaska Airlines for Accessibility or Special Assistance

2025-10-31 Thread ufogreen3--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Allegiant Airlines Customer Service: Phone Number to Speak with a Real Person

2025-10-31 Thread ufogreen3--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] How to Contact a Real Person at Volaris Airlines Customer Support

2025-10-31 Thread ufogreen3--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] How to Speak with a Live Person at Sun Country Airlines Customer Service

2025-10-31 Thread ufogreen3--- via ffmpeg-devel
avel experience. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Common Mistakes to Avoid When Calling Southwest Airlines

2025-10-31 Thread ufogreen3--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Latam Airlines Customer Service: How to Talk to a Real Person Quickly

2025-10-31 Thread ufogreen3--- via ffmpeg-devel
mpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] How to Correct a Passenger Name on Delta Airlines – Call 1-833-341-5261

2025-10-31 Thread denim32--- via ffmpeg-devel
ight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Quick American Airlines Ticket Cancellation – Dial 1-833-341-5261

2025-10-31 Thread kamren--- via ffmpeg-devel
and understand any fees or refund options. • Phone Support to Cancel American Airlines Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- ffmpeg

[FFmpeg-devel] 1-833-341-5261 Cancel Delta Airlines Flight – Fast Phone Assistance

2025-10-31 Thread kamren--- via ffmpeg-devel
. • Phone Support to Cancel Delta Airlines Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email

[FFmpeg-devel] How to Cancel United Airlines Ticket – Call 1-833-341-5261 Today

2025-10-31 Thread kamren--- via ffmpeg-devel
Airlines Ticket Cancellation – Dial Save time and cancel quickly! Contact 📞 1-833-341-5261 for fast phone support and full guidance on your booking. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to ffmpeg-devel-le

[FFmpeg-devel] Cancel Brussels Airlines Flight Fast – Just Call 1-833-341-5261

2025-10-31 Thread kamren--- via ffmpeg-devel
and understand any fees or refund options. • Phone Support to Cancel Brussels Airlines Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- ffmpeg

[FFmpeg-devel] Quick Ethiopian Airlines Ticket Cancellation – Dial 1-833-341-5261

2025-10-31 Thread kamren--- via ffmpeg-devel
trip smoothly and understand any fees or refund options. • Phone Support to Cancel Ethiopian Airlines Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing

[FFmpeg-devel] Quick Cathay Pacific Airlines Ticket Cancellation – Dial 1-833-341-5261

2025-10-31 Thread stevi61--- via ffmpeg-devel
ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Need to Cancel Swiss Airlines Ticket? Dial 1-833-341-5261 Now

2025-10-31 Thread stevi61--- via ffmpeg-devel
. • Phone Support to Cancel Swiss Airlines Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email

[FFmpeg-devel] Quick Japan Airlines Ticket Cancellation – Dial 1-833-341-5261

2025-10-31 Thread stevi61--- via ffmpeg-devel
. • Phone Support to Cancel Japan Airlines Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email

[FFmpeg-devel] Cancel Your Singapore Airlines Booking by Calling 1-833-341-5261

2025-10-31 Thread stevi61--- via ffmpeg-devel
trip smoothly and understand any fees or refund options. • Phone Support to Cancel Singapore Airlines Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing

[FFmpeg-devel] How to Cancel Lot Polish Airlines Ticket – Call 1-833-341-5261 Today

2025-10-31 Thread stevi61--- via ffmpeg-devel
-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Cancel KLM Royal Dutch Airlines Flight Fast – Just Call 1-833-341-5261

2025-10-31 Thread stevi61--- via ffmpeg-devel
a refund with ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Air New Zealand Name Correction Policy – Dial 1-833-341-5261 for Help

2025-10-31 Thread harsimran01--- via ffmpeg-devel
ions, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] 1-833-341-5261 – Easy Steps to Fix a Name on EVA Air Booking

2025-10-31 Thread harsimran01--- via ffmpeg-devel
more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] 1-833-341-5261 – EVA Air Name Change Support

2025-10-31 Thread harsimran01--- via ffmpeg-devel
more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] What to Do If Your Name Is Wrong on a Virgin Atlantic Airways Ticket – Call 1-833-341-5261

2025-10-31 Thread harsimran01--- via ffmpeg-devel
ways support line for booking changes, including name corrections, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] How to Correct a Passenger Name on Cathay Pacific – Call 1-833-341-5261

2025-10-31 Thread harsimran01--- via ffmpeg-devel
ails of the flight and travel date 💰 Is there a fee for name correction? ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Air New Zealand Name Correction Policy – Dial 1-833-341-5261 for Help

2025-10-31 Thread harsimran01--- via ffmpeg-devel
ions, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Can I Fix a Misspelled Name on My Air France Ticket? Call 1-833-341-5261

2025-10-31 Thread harsimran01--- via ffmpeg-devel
more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Can I Fix a Misspelled Name on My All Nippon Airways Ticket? Call 1-833-341-5261

2025-10-31 Thread harsimran01--- via ffmpeg-devel
nges, including name corrections, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] How to Correct a Passenger Name on Qantas Airways – Call 1-833-341-5261

2025-10-31 Thread nathanael--- via ffmpeg-devel
ight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] British Airways Name Correction Policy – Dial 1-833-341-5261 for Help

2025-10-31 Thread nathanael--- via ffmpeg-devel
ions, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Can I Fix a Misspelled Name on My Kenya Airways Ticket? Call 1-833-341-5261

2025-10-31 Thread nathanael--- via ffmpeg-devel
ight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] What to Do If Your Name Is Wrong on a Swiss International Airlines Ticket – Call 1-833-341-5261

2025-10-31 Thread nathanael--- via ffmpeg-devel
the dedicated Swiss International Airlines support line for booking changes, including name corrections, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Need to Change Name on Fiji Airways Ticket? Phone 1-833-341-5261

2025-10-31 Thread nathanael--- via ffmpeg-devel
and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Hawaiian Airlines Spelling Mistake on Ticket? Correct It at 1-833-341-5261

2025-10-31 Thread denim32--- via ffmpeg-devel
ding name corrections, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Name Correction on Iberia Airlines Ticket? Get Help at 1-833-341-5261

2025-10-31 Thread denim32--- via ffmpeg-devel
ions, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Can I Update My Name After Booking on Brussels Airlines ? Call 1-833-341-5261

2025-10-31 Thread denim32--- via ffmpeg-devel
ding name corrections, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] 1-833-341-5261 – Easy Steps to Fix a Name on Ethiopian Airlines Booking

2025-10-31 Thread denim32--- via ffmpeg-devel
nges, including name corrections, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] What to Do If Your Name Is Wrong on a Emirates Airlines Ticket – Call 1-833-341-5261

2025-10-31 Thread denim32--- via ffmpeg-devel
ding name corrections, flight reschedules, and more. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Cancel Your Fiji Airways Booking by Calling 1-833-341-5261

2025-10-31 Thread kamren--- via ffmpeg-devel
Fiji Airways Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to ffmpeg-devel-le

[FFmpeg-devel] Cancel Your All Nippon Airways Booking by Calling 1-833-341-5261

2025-10-31 Thread rojelioe5--- via ffmpeg-devel
trip smoothly and understand any fees or refund options. • Phone Support to Cancel All Nippon Airways Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing

[FFmpeg-devel] How to Cancel British Airways Ticket – Call 1-833-341-5261 Today

2025-10-31 Thread rojelioe5--- via ffmpeg-devel
. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Cancel Your Virgin Atlantic Airways Booking by Calling 1-833-341-5261

2025-10-31 Thread rojelioe5--- via ffmpeg-devel
___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Phone Support to Cancel Kenya Airways Flight – 1-833-341-5261

2025-10-31 Thread rojelioe5--- via ffmpeg-devel
Support to Cancel Kenya Airways Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to ffmpeg-devel

[FFmpeg-devel] Need to Cancel Qatar Airways Ticket? Dial 1-833-341-5261 Now

2025-10-31 Thread rojelioe5--- via ffmpeg-devel
Support to Cancel Qatar Airways Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to ffmpeg-devel

[FFmpeg-devel] Cancel Your Qantas Airways Booking by Calling 1-833-341-5261

2025-10-31 Thread rojelioe5--- via ffmpeg-devel
. • Phone Support to Cancel Qantas Airways Flight Get expert help by phone. Dial 📞 1-833-341-5261 to cancel your flight, ask about fees, or request a refund with ease. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email

[FFmpeg-devel] Ryanair Airlines Phone Number for Live Customer Support Assistance

2025-10-31 Thread pompandpower1--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Common Mistakes to Avoid When Calling Caribbean Airlines

2025-10-31 Thread pompandpower1--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] How to Contact a Real Person at Porter Airlines Customer Support

2025-10-31 Thread pompandpower1--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Finnair Customer Contact Numbers in the USA — Complete Step-by-Step Guide

2025-10-31 Thread veta454--- via ffmpeg-devel
help with bookings, flight changes, cancellations, refunds, seat upgrades, and adding children to your reservations — ensuring a smooth and stress-free travel experience. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an emai

[FFmpeg-devel] Pegasus Airlines Customer Service: How to Talk to a Real Person Quickly

2025-10-31 Thread efelbhcfgz--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Icelandair Customer Contact Numbers in the USA — Complete Step-by-Step Guide

2025-10-31 Thread efelbhcfgz--- via ffmpeg-devel
pert agents are available 24/7 to help with bookings, flight changes, cancellations, refunds, seat upgrades, and adding children to your reservations — ensuring a smooth and stress-free travel experience. ___ ffmpeg-devel mailing list -- ffmpeg-devel@ffmpeg

[FFmpeg-devel] Contacting South African Airlines for Accessibility or Special Assistance

2025-10-31 Thread efelbhcfgz--- via ffmpeg-devel
ooth and stress-free travel experience. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Virgin Australia Airlines Customer Contact Numbers in the USA — Complete Step-by-Step Guide

2025-10-31 Thread efelbhcfgz--- via ffmpeg-devel
your reservations — ensuring a smooth and stress-free travel experience. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Royal Brunei Airlines Customer Service: How to Talk to a Real Person Quickly

2025-10-31 Thread xbnmd0eh3k--- via ffmpeg-devel
ress-free travel experience. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Malaysia Airlines Customer Contact Numbers in the USA — Complete Step-by-Step Guide

2025-10-31 Thread xbnmd0eh3k--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] How to Reach a Real Person at Mesa Airlines Customer Service

2025-10-31 Thread xbnmd0eh3k--- via ffmpeg-devel
port at 1-866-284-3022. Our expert agents are available 24/7 to help with bookings, flight changes, cancellations, refunds, seat upgrades, and adding children to your reservations — ensuring a smooth and stress-free travel experience. ___ ffmpeg-d

[FFmpeg-devel] Contacting Tunisair for Accessibility or Special Assistance

2025-10-31 Thread 2mgsw0e853--- via ffmpeg-devel
e 24/7 to help with bookings, flight changes, cancellations, refunds, seat upgrades, and adding children to your reservations — ensuring a smooth and stress-free travel experience. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe

[FFmpeg-devel] How to Contact a Real Person at Austrian Airlines Customer Support

2025-10-31 Thread 2mgsw0e853--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Asiana Airlines Phone Number for Live Customer Support Assistance

2025-10-31 Thread 2mgsw0e853--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Need to Talk to a Live Agent? Royal Air Maroc Customer Service Phone Number

2025-10-31 Thread 2mgsw0e853--- via ffmpeg-devel
ence. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Etihad Airways Customer Contact Numbers in the USA — Complete Step-by-Step Guide

2025-10-31 Thread elizah15--- via ffmpeg-devel
mpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Copa Airlines Customer Service: Phone Number to Speak with a Real Person

2025-10-31 Thread elizah15--- via ffmpeg-devel
port at 1-866-284-3022. Our expert agents are available 24/7 to help with bookings, flight changes, cancellations, refunds, seat upgrades, and adding children to your reservations — ensuring a smooth and stress-free travel experience. ___ ffmpeg-d

[FFmpeg-devel] Contacting Thai Airways for Accessibility or Special Assistance

2025-10-31 Thread elizah15--- via ffmpeg-devel
-866-284-3022. Our expert agents are available 24/7 to help with bookings, flight changes, cancellations, refunds, seat upgrades, and adding children to your reservations — ensuring a smooth and stress-free travel experience. ___ ffmpeg-devel mailing

[FFmpeg-devel] Envoy Air Phone Number for Live Customer Support Assistance

2025-10-31 Thread veta454--- via ffmpeg-devel
are available 24/7 to help with bookings, flight changes, cancellations, refunds, seat upgrades, and adding children to your reservations — ensuring a smooth and stress-free travel experience. ___ ffmpeg-devel mailing list -- [email protected]

[FFmpeg-devel] How to Reach a Real Person at Cayman Airways Customer Service

2025-10-31 Thread veta454--- via ffmpeg-devel
mpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/libopenmpt: implement file reading callbacks (PR #20801)

2025-10-30 Thread paper via ffmpeg-devel
openmpt_cbs, s->pb, openmpt_logfunc, s, NULL); if (!openmpt->module) return AVERROR_INVALIDDATA; #endif -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/v4l2_buffers: map additional V4L2 TRCs (PR #20880)

2025-11-09 Thread cgutman via ffmpeg-devel
2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/rv60dec: add upper bound check for qp

2025-11-10 Thread Reaxx via ffmpeg-devel
-qp.patch Description: Binary data ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] fftools: Fix MediaCodec on Android15+

2025-11-10 Thread xaionaro--- via ffmpeg-devel
tils.h" #include "ffplay_renderer.h" #include "opt_common.h" @@ -3892,6 +3893,10 @@ int main(int argc, char **argv) } } +#if defined(__ANDROID__) +android_binder_threadpool_init(); +#endif + is = stream_open(input_filename, file_iformat); if (!is) { av_log(NULL, AV_LOG_FATAL, "Failed to initialize VideoState!\n"); -- 2.48.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Handle errors in ogg reinit, make sure we free private data before new (PR #20877)

2025-11-09 Thread toots via ffmpeg-devel
t; 0) +return ret; } oggstream->packet_written = 1; -- 2.49.1 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] swscale/yuv2rgb: fix out-of-bounds access with odd srcSliceH in YUV422 (PR #20883)

2025-11-10 Thread thomasdullien via ffmpeg-devel
\ +PUTFUNC(2, 0, 0 + 8); \ +} \ ENDYUV2RGBFUNC() #define LOADDITHER16\ -- 2.49.1 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Re-initialize stream on new metadata. (PR #20876)

2025-11-09 Thread toots via ffmpeg-devel
copy-chained-meta: CMD = run $(FFMPEG) -nostdin -hide_banner -loglevel quiet -i ../fate-suite/ogg-vorbis/chained-meta.ogg -c copy -f ogg - | $(APITESTSDIR)/api-dump-stream-meta-test$(EXESUF) /dev/stdin + FATE_OGG_VORBIS-$(call DEMDEC, OGG, VORBIS) += $(FATE_OGG_VORBIS) FATE_SAMPLES_DUMP_STREAM_MET

[FFmpeg-devel] [PATCH] avcodec/rv60dec: Clear blk_info (PR #20878)

2025-11-09 Thread michaelni via ffmpeg-devel
+) for (int i = 0; i < s->cu_width << 4; i++) -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/exr: Handle axmax like bxmin in 04d7a6d3db56ea1a93908ff2d3d312e3fc40a58c (PR #20879)

2025-11-09 Thread michaelni via ffmpeg-devel
ffer[c] += td->channel_line_size; } } -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/h264idct_template: Deduplicate h264_{luma,chroma}_dc_dequant_idct (PR #20874)

2025-11-09 Thread mkver via ffmpeg-devel
t)((a-c)*qmul) >> 7; block[stride*1 + xStride*1]= (int)((e-b)*qmul) >> 7; } +#endif -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Ignore unknown blocks in WebVTT decoding (PR #20875)

2025-11-09 Thread socram via ffmpeg-devel
PR #20875 opened by socram URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20875 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20875.patch [As previously discussed in the mailing list](https://ffmpeg.org/pipermail/ffmpeg-devel/2025-July/346806.html) this change makes the decoder

[FFmpeg-devel] [PATCH] Re-initialize stream on new metadata. (PR #20890)

2025-11-10 Thread toots via ffmpeg-devel
g -c copy -f ogg -y" "$(APITESTSDIR)/api-dump-stream-meta-test$(EXESUF)" + FATE_OGG_VORBIS-$(call DEMDEC, OGG, VORBIS) += $(FATE_OGG_VORBIS) FATE_SAMPLES_DUMP_STREAM_META += $(FATE_OGG_VORBIS-yes) -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/d3d12va_encode: support pre-codec get codec data (PR #20740)

2025-10-23 Thread ArazIusubov via ffmpeg-devel
tx, AVPacket *pkt); -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

<    4   5   6   7   8   9   10   11   12   13   >