[gstreamer-bugs] [Bug 319482] altivec detections is broken.

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Sat Oct 22 08:30:12 PDT 2005


Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=319482
 GStreamer | gst-ffmpeg | Ver: 0.8.6





------- Additional Comments From Ronald Bultje  2005-10-22 15:30 -------
Can you change:

(line279)
  AC_MSG_CHECKING(for MMI instruction set)
  AC_TRY_RUN([
    int main () {
      __asm__ ("lq \$2, 0(\$2)");
      return 0;
    }
  ],[ HAVE_MMI=yes && AC_MSG_RESULT(yes) ],[
    HAVE_MMI=no && AC_MSG_RESULT(no) ])

(line307)
    # See does our compiler support Motorola AltiVec C API
    AC_MSG_CHECKING(for support of Motorola Altivec API)
    AC_TRY_RUN([
        $ALT_H
        int main () {
          vector signed int v1, v2, v3;
          v1 = vec_add(v2,v3);
          return 0;
        }
      ],[ HAVE_ALTIVEC=yes && AC_MSG_RESULT(yes) ],[
        HAVE_ALTIVEC=no && AC_MSG_RESULT(no) ])

(line334)
    AC_MSG_CHECKING(for support of IWMMXT optimizations)
    AC_TRY_RUN([
        int main () {
          __asm__ __volatile__ ("wunpckelub wr6, wr4");
          return 0;
        }
      ],[ HAVE_IWMMXT=yes && AC_MSG_RESULT(yes) ],[
        HAVE_IWMMXT=no && AC_MSG_RESULT(no) ])

and see if that fixes it? Thanks. I don't have a G3 myself so I can only suggest
patches, not run them.

------- You are receiving this mail because: -------
You are the assignee for the bug.
You are the QA contact for the bug.




More information about the Gstreamer-bugs mailing list