Mercurial > mplayer.hg
view TOOLS/benchmark-gab/compile @ 14879:3b89d966f17e
Sync with 1.893:
1.881: added new mpeg muxer options
1.882: done in a previous commit
1.883: fixes for previous commits
1.884: Mention that vstrict is necessary for some codecs, add ffvhuff.
1.885: Finish incomplete -af-adv documentation.
1.886: Sync -channels and -srate options with the XML docs.
1.887: spelling, wording and consistency fixes
1.888: renamed init_adelay to vdelay with opposite range
1.889: List the 'context' option for the ffvhuff codec.
1.890: indentation fix
1.891: vstrict vs mjpeg update, typo
1.892: done in a previous commit
1.893: done in a previous commit
author | gpoirier |
---|---|
date | Tue, 01 Mar 2005 20:33:50 +0000 |
parents | cba37985dec5 |
children |
line wrap: on
line source
#!/bin/sh . ./variables wrtlog Starting compilation wrtlog Options: $COMPILEOPTIONS if [ ! -e main.tar.gz ]; then wrtlog MPlayer source main.tar.gz not present, exiting... exit 1 fi if [ ! -e main.tar.gz ]; then wrtlog libavcodec source ffmpeg.tar.gz not present, exiting... exit 1 fi if [ ! -d main ]; then wrtlog Unpacking source... tar xfzv main.tar.gz > /dev/null || (wrtlog Error; exit 1) wrtlog Unpacking done wrtlog Source total size: `du -hs main | awk '{print $1}'` else wrtlog MPlayer source already there, not unpacking fi wrtlog Creating and entering separate build dir... rm -rf $BUILD mkdir $BUILD || (wrtlog Error; exit 1) cd $BUILD lndir ../main > /dev/null || (wrtlog Error; exit 1) wrtlog Separate build dir created wrtlog Unpacking libavcodec rm -rf libavcodec ln -s . ffmpeg || (wrtlog Error; exit 1) tar xfzv ../ffmpeg.tar.gz ffmpeg/libavcodec > /dev/null || (wrtlog Error; exit 1) rm -f ffmpeg wrtlog Unpacking libavcodec done wrtlog libavcodec total size: `du -hs libavcodec | awk '{print $1}'` wrtlog Executing configure... ./configure $COMPILEOPTIONS > /dev/null || (wrtlog Error; exit 1) wrtlog Configure done wrtlog Executing main compile process... unset CFLAGS CPPFLAGS CXXFLAGS make > /dev/null 2> /dev/null || (wrtlog Error; exit 1) wrtlog Compile ready wrtlog Build dir size: `du -hs . | awk '{print $1}'` wrtlog Unstripped mplayer binary size: `ls -l mplayer | awk '{print $5}'` wrtlog Unstripped mencoder binary size: `ls -l mencoder | awk '{print $5}'` cd .. rm -rf main