diff options
author | Stefan Kost <ensonic@users.sf.net> | 2008-03-17 12:50:30 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sf.net> | 2008-03-17 12:50:30 +0000 |
commit | d6cde3051703b4d55b2ca92d4476b49c53ac3b90 (patch) | |
tree | 3283489b59703b468b2ab03de911d77505e2f394 /src/plot.sh | |
parent | a7abf56adb1165aabe75cbd094349f9b445f76e4 (diff) |
* AUTHORS:
* Makefile.am:
* NEWS:
* README:
* configure.ac:
* src/Makefile.am:
* src/gstpreload.c:
* src/plot.sh:
* src/splitlog.py:
Initial commit of gstreamer meassurment preload library.
Diffstat (limited to 'src/plot.sh')
-rw-r--r-- | src/plot.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/plot.sh b/src/plot.sh new file mode 100644 index 0000000..60accd9 --- /dev/null +++ b/src/plot.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +echo "set term png size 1600, 1200" +echo "set output 'gstpl.png'" +echo "plot \\" +for file in /tmp/gstpl_pad_*.log ; do echo " '$file' using 2:3 with points, \\"; done +echo " '/tmp/gstpl_rusage.log' using 2:3 with lines" +echo "pause -1" + |