[Sumover-dev] [svn commit] r4599 - vic/branches/cc/cc

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Fri Feb 5 21:27:38 GMT 2010


Author: soohyunc
Date: Fri Feb  5 21:27:38 2010
New Revision: 4599

Added:
   vic/branches/cc/cc/o.sh   (contents, props changed)

Log:
(temporary)
a simple script to grep necessary information from the trace



Added: vic/branches/cc/cc/o.sh
==============================================================================
--- (empty file)
+++ vic/branches/cc/cc/o.sh	Fri Feb  5 21:27:38 2010
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+# packet seqno trace in time
+grep seqno trace.s | grep -v pid | awk '{print $2" "$4}' > seqno.tr
+cc/tools/asv seqno.tr
+rm seqno.tr
+
+# start encoding
+grep h261_encode_start trace.s | grep -v pid | awk '{print $3" "100}' > encs.xg
+
+# end encoding
+grep h261_encode_end trace.s | grep -v pid | awk '{print $3" "100}' > ence.xg
+
+# encoding time difference
+grep enc_time trace.s | grep -v pid | awk '{print $2"\t"$4}' > enct.xg



More information about the Sumover-dev mailing list