Add 2009 to copyright and fix its format
[skype-call-recorder.git] / utils / syncviewer
blob43a584de318f30627015a32a0b84eb36f82870db
1 #!/bin/sh
3 gnuplot <<EOF
5 set xlabel "Time (mm:ss)"
6 set ylabel "Delay (s)"
7 set title "$1"
8 set xdata time
9 set timefmt "%s"
10 plot "$1" using (\$1/1000):(\$2/16000) with lines notitle, \
11 "$1" using (\$1/1000):(\$3/16000) with lines notitle
12 pause mouse
13 exit
15 EOF