Finally managed to compile FFMPEG with AAC support on ubuntu/PS3 Intrepid Ibex Edition [
Ref]. The "fix" was just to wait until the source code was repaired.
That doesn't stop the programs from breaking again. Therefore, my pre-compiled packages are available here:
ffmpeg-ps3.deb
x264-ps3.deb
The compilation procedure was as follows:
su
cd /usr/src
aptitude install build-essential subversion git-core checkinstall yasm texi2html libfaac-dev libfaad-dev libmp3lame-dev libtheora-dev libxvidcore4-dev
git clone git://git.videolan.org/x264.git
cd x264
nice ./configure --enable-pic --enable-shared --disable-asm
nice make
aptitude purge x264 libx264-dev
checkinstall --fstrans=no --install=yes --pkgname=x264 --pkgversion "1:0.svn`date +%Y%m%d`-0.0ubuntu1" --default
cd /usr/src
nice svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg
cd ffmpeg
nice ./configure --enable-nonfree --enable-gpl --enable-postproc --enable-pthreads --enable-libfaac --enable-libfaad --enable-libmp3lame --enable-libtheora --enable-libx264 --enable-libxvid
nice make
aptitude purge ffmpeg
checkinstall --fstrans=no --install=yes --pkgname=ffmpeg --pkgversion "3:0.svn`date +%Y%m%d`-12ubuntu3" --default
Install the resulting .deb's with dpkg -i
.