[MPlayer-dev-eng] Delay at start of video playback

Nicolas George george at nsup.org
Sat Sep 21 20:56:36 EEST 2024


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


More information about the MPlayer-dev-eng mailing list