[gstreamer-bugs] [Bug 597537] New: [streamvolume.c]The cube root function is not defined in Microsoft's CRT

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Tue Oct 6 04:45:48 PDT 2009


https://bugzilla.gnome.org/show_bug.cgi?id=597537
  GStreamer | gst-plugins-base | 0.10.25

           Summary: [streamvolume.c]The cube root function is not defined
                    in Microsoft's CRT
    Classification: Desktop
           Product: GStreamer
           Version: 0.10.25
        OS/Version: Windows
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gst-plugins-base
        AssignedTo: gstreamer-bugs at lists.sourceforge.net
        ReportedBy: ylatuya at gmail.com
         QAContact: gstreamer-bugs at lists.sourceforge.net
      GNOME target: ---
     GNOME version: ---


Fixed definin cbrt(double x) in the dollowing way:

#include <math.h>
#ifdef _MSC_VER
    #define cbrt(x) pow(abs(x),1.0/3.0)
#endif

-- 
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.




More information about the Gstreamer-bugs mailing list