<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Compiling MPlayer on Mac OS X Tiger</title>
	<atom:link href="http://www.jonsimpson.co.uk/weblog/2005-11-14/compiling-mplayer-on-mac-os-x-tiger.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jonsimpson.co.uk/weblog/2005-11-14/compiling-mplayer-on-mac-os-x-tiger.html</link>
	<description>My personal space for ideas &#38; information.</description>
	<pubDate>Fri, 21 Nov 2008 18:21:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Nagilum</title>
		<link>http://www.jonsimpson.co.uk/weblog/2005-11-14/compiling-mplayer-on-mac-os-x-tiger.html#comment-530</link>
		<dc:creator>Nagilum</dc:creator>
		<pubDate>Wed, 01 Feb 2006 21:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonsimpson.co.uk/?p=32#comment-530</guid>
		<description>Hi,
I just played around with the mplayer source a bit trying to get it to compile with x264 support and like to share my findings.
First off, mplayer desires to use gcc-3.3, so if you intend to  use any extension such as x264, I suggest you use "gcc_select 3.3" upfront to builing any of these.
"configure" will fail to build the x264 test unless you add -lSystemStubs to the compile flags. I did this by searching for "-lx264" in the configure script and adding it there.
After the first run I got linker errors:
multiple definitions of symbol _glPointParameteri
and such.. which I tried to silence using "-Xlinker -multiply_defined -assert -Xlinker suppress" and also its -Wl, counterpart, but that didnt work. So I resolved that matter with --disable-gl . After that I still had some unresolved symbols all starting with _pp_. These I found in a library (libpostproc) in one of the ffmpeg subdirs. I compiled the lib and linked against it.
Now I had two rather huge binaries (about 14MB) which I could strip down to about 5MB.
Unfortunately it isnt a happy ending yet, I only own a G3 and I keep getting:
dyld: incompatible cpu-subtype
Trace/BPT trap
despite I used --disable-altivec for ffmpeg :-/.
I hope I find it before my motivation runs out ;)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I just played around with the mplayer source a bit trying to get it to compile with x264 support and like to share my findings.<br />
First off, mplayer desires to use gcc-3.3, so if you intend to  use any extension such as x264, I suggest you use &#8220;gcc_select 3.3&#8243; upfront to builing any of these.<br />
&#8220;configure&#8221; will fail to build the x264 test unless you add -lSystemStubs to the compile flags. I did this by searching for &#8220;-lx264&#8243; in the configure script and adding it there.<br />
After the first run I got linker errors:<br />
multiple definitions of symbol _glPointParameteri<br />
and such.. which I tried to silence using &#8220;-Xlinker -multiply_defined -assert -Xlinker suppress&#8221; and also its -Wl, counterpart, but that didnt work. So I resolved that matter with &#8211;disable-gl . After that I still had some unresolved symbols all starting with _pp_. These I found in a library (libpostproc) in one of the ffmpeg subdirs. I compiled the lib and linked against it.<br />
Now I had two rather huge binaries (about 14MB) which I could strip down to about 5MB.<br />
Unfortunately it isnt a happy ending yet, I only own a G3 and I keep getting:<br />
dyld: incompatible cpu-subtype<br />
Trace/BPT trap<br />
despite I used &#8211;disable-altivec for ffmpeg :-/.<br />
I hope I find it before my motivation runs out <img src='http://www.jonsimpson.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.jonsimpson.co.uk/weblog/2005-11-14/compiling-mplayer-on-mac-os-x-tiger.html#comment-497</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Mon, 05 Dec 2005 02:18:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonsimpson.co.uk/?p=32#comment-497</guid>
		<description>You can find the step-by-step process I used &lt;a href="http://www.jonsimpson.co.uk/weblog/2005-12-05/compiling-mplayer-cvs-on-mac-os-x-104-tiger.html" rel="nofollow"&gt;here&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>You can find the step-by-step process I used <a href="http://www.jonsimpson.co.uk/weblog/2005-12-05/compiling-mplayer-cvs-on-mac-os-x-104-tiger.html" rel="nofollow">here</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.jonsimpson.co.uk/weblog/2005-11-14/compiling-mplayer-on-mac-os-x-tiger.html#comment-496</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Mon, 05 Dec 2005 01:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonsimpson.co.uk/?p=32#comment-496</guid>
		<description>Hey, after getting you guys' comments I decided to build mplayer from a clean base, with the latest Apple toolchain, to see if I could replicate your issues.

I built MPlayer dev-CVS-051205-00:59-4.0.1 successfully from a clean checkout of mplayer, ffmpeg (libavcodec, libavformat, libavutil) and even managed to include VC-1 support just fine. 

I'll post up a full and complete process on how to build from scratch successfully, and hopefully that should help you out.</description>
		<content:encoded><![CDATA[<p>Hey, after getting you guys&#8217; comments I decided to build mplayer from a clean base, with the latest Apple toolchain, to see if I could replicate your issues.</p>
<p>I built MPlayer dev-CVS-051205-00:59-4.0.1 successfully from a clean checkout of mplayer, ffmpeg (libavcodec, libavformat, libavutil) and even managed to include VC-1 support just fine. </p>
<p>I&#8217;ll post up a full and complete process on how to build from scratch successfully, and hopefully that should help you out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Wehr</title>
		<link>http://www.jonsimpson.co.uk/weblog/2005-11-14/compiling-mplayer-on-mac-os-x-tiger.html#comment-495</link>
		<dc:creator>Alexander Wehr</dc:creator>
		<pubDate>Sun, 04 Dec 2005 16:11:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonsimpson.co.uk/?p=32#comment-495</guid>
		<description>Whatever bug it was with the ld: error, it seems to have returned.

attempts with the recent cvs raise the same error from your previous entry on this subject.  Alas, i don't have the funds at present to install X.3 on an external disk like Firas here ; ).</description>
		<content:encoded><![CDATA[<p>Whatever bug it was with the ld: error, it seems to have returned.</p>
<p>attempts with the recent cvs raise the same error from your previous entry on this subject.  Alas, i don&#8217;t have the funds at present to install X.3 on an external disk like Firas here ; ).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Firas</title>
		<link>http://www.jonsimpson.co.uk/weblog/2005-11-14/compiling-mplayer-on-mac-os-x-tiger.html#comment-494</link>
		<dc:creator>Firas</dc:creator>
		<pubDate>Sun, 04 Dec 2005 14:54:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonsimpson.co.uk/?p=32#comment-494</guid>
		<description>Hi,

I found your blog about using compiling MPlayer/MEncoder, and would like to shed my stresses on the matter. I have tried to get MPlayer compiled on Tiger too, without avail - I too had to remove the dust off my 10.3 DVD and re-install on an sexternal disk to get MPlaeyer to compile.

I have a feeling it could be something to do with gcc </description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I found your blog about using compiling MPlayer/MEncoder, and would like to shed my stresses on the matter. I have tried to get MPlayer compiled on Tiger too, without avail - I too had to remove the dust off my 10.3 DVD and re-install on an sexternal disk to get MPlaeyer to compile.</p>
<p>I have a feeling it could be something to do with gcc</p>
]]></content:encoded>
	</item>
</channel>
</rss>
