[gstreamer-bugs] [Bug 313223] New: gst-ffmpeg-0.8.6 fails to compile on a PPC

bugzilla-daemon at bugzilla.gnome.org bugzilla-daemon at bugzilla.gnome.org
Thu Aug 11 06:24:33 PDT 2005


Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=313223
 GStreamer | gst-ffmpeg | Ver: 0.8.6

           Summary: gst-ffmpeg-0.8.6 fails to compile on a PPC
           Product: GStreamer
           Version: 0.8.6
          Platform: Other
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: blocker
          Priority: Normal
         Component: gst-ffmpeg
        AssignedTo: gstreamer-bugs at lists.sourceforge.net
        ReportedBy: jsacco at ydl.net
         QAContact: gstreamer-bugs at lists.sourceforge.net
                CC: all-bugs at bugzilla.gnome.org


Distribution/Version: Yellow Dog Linux 4.0.1

There are two issues:
(1) gst-libs/ext/ffmpeg/libavcodec/libpostproc/postprocess_altivec_template.c
is missing

(2) gst-libs/ext/ffmpeg/libavcodec/libpostproc/postprocess.c fails to compile

Solution
---------
(1) fetch postprocess_altivec_template.c 
from :pserver:anonymous at mplayerhq.hu:/cvsroot/ffmpeg

(2) fix gst-libs/ext/ffmpeg/libavcodec/libpostproc/Makefile

--- Makefile-   2005-08-11 09:02:47.000000000 -0400
+++ Makefile    2005-08-10 22:43:35.000000000 -0400
@@ -561,6 +561,7 @@
 target_vendor = unknown
 INCLUDES = \
        -I$(top_srcdir)/libavcodec \
+       $(ALTIVEC_CFLAGS) \
        -fomit-frame-pointer

 pp_sources = \


Since the Makefile is generated from Makefile.in, which is generated from
Makefile.am the patches are similar:

--- Makefile.in-        2005-08-11 09:02:52.000000000 -0400
+++ Makefile.in 2005-08-11 09:03:29.000000000 -0400
@@ -561,6 +561,7 @@
 target_vendor = @target_vendor@
 INCLUDES = \
        -I$(top_srcdir)/libavcodec \
+       $(ALTIVEC_CFLAGS) \
        -fomit-frame-pointer

 pp_sources = \


--- Makefile.am-        2005-08-11 09:03:34.000000000 -0400
+++ Makefile.am 2005-08-11 09:03:59.000000000 -0400
@@ -1,5 +1,6 @@
 INCLUDES = \
        -I$(top_srcdir)/libavcodec \
+       $(ALTIVEC_CFLAGS) \
        -fomit-frame-pointer

 pp_sources = \

------- 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