Re: [FFmpeg-devel] Fw: [PATCH] libavcodec Adding ff_v210_planar_unpack AVX2

2019-03-29 Thread Mike
> On 2019-03-26 21:22, Mike Stoner via ffmpeg-devel wrote: > > > Hello, > > I’ve accounted for all feedback on this so far, I’m wondering if it is > > ready to be pushed upstream? > > > > Here are my results from ‘checkasm’ (lower is better): > > > >

Re: [FFmpeg-devel] [PATCH 3/3] libavcodec Adding ff_v210_planar_unpack AVX2

2019-04-11 Thread Mike
On Wed, Apr 10, 2019 at 5:48 AM James Darnley wrote: > > From: Michael Stoner > > Replaced VSHUFPS with VPBLENDD to relieve port 5 bottleneck > AVX2 is 1.4x faster than AVX > --- > > Mike, is this still the patch you want applied. I had to make a small > amendment

Re: [FFmpeg-devel] [PATCH] Added ff_v210_planar_unpack_aligned_avx2

2019-03-06 Thread Mike Stoner
g on Windows and it looks like 'checkasm' performance benchmarking is only enabled on Linux.  For my tests I put a 100x loop around the 'unpack_frame' call and ran: ffmpeg.exe -s:v 1920x1080 -vcodec v210  -stream_loop 200 -i OddaView_1920x1080.v210  -f null -y NUL If ther

Re: [FFmpeg-devel] [PATCH] Revised ff_v210_planar_unpack AVX2

2019-03-12 Thread Mike Stoner
I am submitting another patch.  Please disregard this one. -Mike ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] libavcodec Adding ff_v210_planar_unpack AVX2

2019-03-16 Thread Mike Stoner
replacing SHUFPS instructions with VPBLENDD, which has more flexible port bindings.  VBLENDPS could also be substituted and is available from SSE4.1 onward, however I found only the AVX2 code received any measureable gain from that change. Any further comments are greatly appreciated.   Th

[FFmpeg-devel] Submitting patches.

2016-07-06 Thread Mike Lieman
Is there a FAQ or other documentation on how to submit patches? There's a compiler warning that's driving me nuts and I'd like to clean it up if I can. Thank you, Mike ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffm

Re: [FFmpeg-devel] [PATCH] PPC64: Add versions of functions in libswscale/input.c optimized for POWER8 VSX SIMD.

2016-07-08 Thread Mike Lieman
A later patch to configure to make sure it was defined, so the breakage stopped. The patch for the configure option and the code should have been atomic, IMNSHO. On Thu, Jul 7, 2016 at 8:42 PM, Michael Niedermayer wrote: > On Thu, Jun 30, 2016 at 03:36:31PM +0200, Michael Niedermayer wrote: > >

[FFmpeg-devel] bug in stream_loop

2017-06-23 Thread Mike Versteeg
and make this option work? I can't do it myself, but am happy to offer my services for (thorough) testing. Thanks! Mike ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] bug in stream_loop

2017-06-24 Thread Mike Versteeg
Thank you Paul, sorry to hear that. As for the issues I am having with the loop filter, please refer to https://video.stackexchange.com/questions/21757/using-ffmpeg-loop-filter-makes-audio-disappear/21758 Mike/mobile On Jun 24, 2017 09:14, "Paul B Mahol" wrote: > On 6/23/17,

Re: [FFmpeg-devel] [PATCH] doc/outdevs: Add declink signal generator example

2018-03-15 Thread Mike Goins
On Fri, Mar 9, 2018 at 3:38 PM, Devin Heitmueller wrote: > >>> +ffmpeg -re -f lavfi -i "testsrc=s=1920x1080:rate=3/1000" -f lavfi -i >>> "sine=frequency=1000:sample_rate=48000" +-ac 2 -acodec pcm_s16le >>> -pix_fmt uyvy422 -format_code Hi30 -f decklink 'DeckLink Studio 2' >> >> You s

[FFmpeg-devel] [PATCH] doc/outdevs: Add declink signal generator example

2018-02-28 Thread Mike Goins
Signed-off-by: Mike Goins --- doc/outdevs.texi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/doc/outdevs.texi b/doc/outdevs.texi index daf7b1ae62..1ca81ba139 100644 --- a/doc/outdevs.texi +++ b/doc/outdevs.texi @@ -180,6 +180,13 @@ Play video clip with non-standard framerate or

Re: [FFmpeg-devel] [PATCH] avformat/opensrt: add Haivision Open SRT protocol

2018-03-08 Thread Mike Goins
On Thu, Mar 8, 2018 at 7:55 PM, Michael Niedermayer wrote: > > On Mon, Mar 05, 2018 at 05:09:04PM +0100, Sven Dueking wrote: > > > > > > > -Ursprüngliche Nachricht- > > > Von: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] Im Auftrag > > > von Sven Dueking > > > Gesendet: Dienstag,

[FFmpeg-devel] [PATCH] use proper macro to avoid issue with prior avutil/timestamp.c

2024-08-16 Thread Mike Lieman
>From b2ddfdd9ed695a1f47ed6251369abca08864e3ab Mon Sep 17 00:00:00 2001 From: Mike Lieman Date: Fri, 16 Aug 2024 23:05:51 -0400 Subject: [PATCH] use proper macro to avoid issue with prior avutil/timestamp.c patch causing long startup times with some files under mplayer (ht

Re: [FFmpeg-devel] [PATCH] use proper macro to avoid issue with prior avutil/timestamp.c

2024-08-17 Thread Mike Lieman
> > FP_INFINITE is a return value from fpclassify(), not a double. > > Does maybe using av_int2double(UINT64_C(0xFFF) << 52) help your slow > startup? > Sadly, no. double log = (fpclassify(val) == FP_ZERO ? av_int2double(UINT64_C(0xFFF) << 52) : floor(log10(fabs(val; gives the same long-star

Re: [FFmpeg-devel] [PATCH] use proper macro to avoid issue with prior avutil/timestamp.c

2024-08-17 Thread Mike Lieman
what's going on in the for loops, but it seems something's going on in the for loops, since it's not happening when I'm using the incorrect constant. On Sat, Aug 17, 2024 at 10:07 AM Rémi Denis-Courmont wrote: > > > Le 17 août 2024 06:09:16

Re: [FFmpeg-devel] [PATCH] use proper macro to avoid issue with prior avutil/timestamp.c

2024-08-17 Thread Mike Lieman
> > On Sat, Aug 17, 2024 at 11:29 AM Hendrik Leppkes > wrote: > Or you could check if your build uses ffast-math, not sure we support that > Hot Dog! We have a weiner! Removing -ffast-math from my mplayer build appears to have resolved the issue. Thank you for your time and guidance.

[FFmpeg-devel] APNG blending with pixel format rgb24 not implemented

2015-05-23 Thread Mike Swanson
Per the message I get from ffmpeg/ffplay (likewise video players like mpv that depend on ffmpeg), I get the following message on every frame of an APNG file that I constructed: [apng @ 0x7f85c800a460] Blending with pixel format rgb24 is not implemented. Update your FFmpeg version to the newest one

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-28 Thread mike . gorchak . qnx
Sent from my BlackBerry 10 smartphone on the Rogers network.   Original Message   From: Michael Niedermayer Sent: Tuesday, October 28, 2014 17:51 To: FFmpeg development discussions and patches Reply To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] lavfi: add xbr

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-28 Thread mike . gorchak . qnx
Sent from my BlackBerry 10 smartphone on the Rogers network.   Original Message   From: Michael Niedermayer Sent: Tuesday, October 28, 2014 17:51 To: FFmpeg development discussions and patches Reply To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] lavfi: add xbr

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-28 Thread mike . gorchak . qnx
Sent from my BlackBerry 10 smartphone on the Rogers network.   Original Message   From: Michael Niedermayer Sent: Tuesday, October 28, 2014 17:51 To: FFmpeg development discussions and patches Reply To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] lavfi: add xbr

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-28 Thread mike . gorchak . qnx
‎Ыы Sent from my BlackBerry 10 smartphone on the Rogers network.   Original Message   From: Michael Niedermayer Sent: Tuesday, October 28, 2014 17:51 To: FFmpeg development discussions and patches Reply To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] lavfi: add x

Re: [FFmpeg-devel] [PATCH] libavcodec Adding ff_v210_planar_unpack AVX2

2019-03-26 Thread Mike Stoner via ffmpeg-devel
results for each CPU target (ignoring the highest and lowest time). https://patchwork.ffmpeg.org/patch/12325/ Thanks… -Mike ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link