Quote:
I checked a page full of flash files, and cpu usage stays below 50% on my 1Ghz Pegasos. Most, but not all flash animations play correctly. Short intorss are practically skipped over, before gnash could initialize...
it sounds me really strange but cool!
Maybe my aggressive cpu optimizations or the media handler (ffmpeg vs. gst)...
btw, can you paste here the
configure used to build it?
Here you're able to read my one:
Code:
# Description: GNU Flash movie player with Firefox plugins
# URL:
http://www.gnu.org/software/gnash
# Maintainer: CRUX PPC Team -
http://cruxppc.sunsite.dk
# Depends on: zlib, boost, gtk, gtkglext, libjpeg, sdl, sdl_mixer, libxml2, libmad, firefox
name=gnash
version=0.8.0
release=1
source=(
http://ftp.gnu.org/gnu/$name/$version/$ ... on.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr --with-gnu-ld \
--with-plugindir=/usr/lib/firefox/plugins \
--enable-write --enable-jpeg --disable-klash \
--disable-docbook --disable-static --disable-nls
make
mkdir -p $PKG/usr/lib/firefox/plugins
make DESTDIR=$PKG install
rm -Rf $PKG/usr/share/locale
}
thanks!