Re: Delay at start of video playback
Nicolas George <[email protected]> Sat, 21 Sep 2024 19:56:36 +0200
| Newsgroups | gmane.comp.video.mplayer.devel |
|---|---|
| Message-ID | <[email protected]> |
Mike Lieman (12024-09-01): > I have already posted a patch to this list to remove the fast-math library > which is causing the optimization issue in ffmpeg when they use a negative > infinity as a flag. This resolves the issue. > > I'll repost it here. Can someone commit it to svn? Hi. I have just pushed a similar patch, plus others necessary to get building with recent ffmpeg and gcc. > Index: configure > =================================================================== > --- configure (revision 38637) > +++ configure (working copy) > @@ -2969,10 +2969,10 @@ > elif test "$cc_vendor" != "gnu" ; then > CFLAGS="-O2 $_march $_mcpu $_pipe" > else > - CFLAGS="-O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer" > + CFLAGS="-O4 $_march $_mcpu $_pipe -fomit-frame-pointer" > WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith > -Wredundant-decls -Werror=format-security" > WARN_CFLAGS="-Werror-implicit-function-declaration" > - extra_ldflags="$extra_ldflags -ffast-math" > + extra_ldflags="$extra_ldflags" This line should have been removed, as it no longer does anything. > fi Regards, -- Nicolas George