Mercurial > mplayer.hg
view TOOLS/benchmark-gab/plot @ 20804:cfd35d61bed3
r20711: MSGTRs for demux_avi.c
r20712: better wording for "workarounding"
r20739: Remove remnants of long-gone libfame. (previously applied)
r20774: Adding ability to check allowed frequency range.
r20775: Spelling fix: Allowable -> Allowed
r20780: MSGTRs for ao_alsa.c
r20781: MSGTRs for libvo/aspect.c and libvo/vo_xv.c
r20782,r20783: (do not apply)
r20817: add full stop at end of sentence
author | kraymer |
---|---|
date | Thu, 09 Nov 2006 18:05:06 +0000 |
parents | 14c85528d202 |
children |
line wrap: on
line source
#!/bin/sh # # needs ImageMagick and gnuplot installed # ImageMagick not needed if you don't wanna convert to JPG # . ./variables rm -f *.plot rm -f log-*.pbm rm -f log-*.jpg rm -f plot.file for i in log-*; do grep Total: $i | awk '{print $6}' | sed s/s// | nl | head -n 75 > $i.plot done for i in log-*.plot; do echo "set key left box" > plot.file echo "set samples 50" >> plot.file echo "set term pbm" >> plot.file echo "plot [0:75] '$i'" >> plot.file #echo "pause -1 \"Hit return to continue\"" >> plot.file #echo "" >> plot.file gnuplot plot.file > $i.pbm convert $i.pbm $i.jpg rm -f $i.pbm done #gnuplot plot.file > out.pbm rm -f *.plot rm -f plot.file