summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Elder <aelder@audioscience.com>2013-08-15 17:05:33 -0400
committerAndrew Elder <aelder@audioscience.com>2013-08-19 16:11:51 -0400
commit9351cb0b57585e8f40ca11828f650d12d971630d (patch)
tree219bf9833011865036d3132e96a62126029a6b1c /test
parent04b891e93b6e4417f4fe5b1e8c3a8f55519909c3 (diff)
downloadOpen-AVB-9351cb0b57585e8f40ca11828f650d12d971630d.tar.gz
test: astime_fitline.py, fix number of ns in 1/4 of sample period
Diffstat (limited to 'test')
-rw-r--r--test/astime_fitline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/astime_fitline.py b/test/astime_fitline.py
index 2858f7d7..f42a2312 100644
--- a/test/astime_fitline.py
+++ b/test/astime_fitline.py
@@ -181,5 +181,5 @@ if __name__ == '__main__':
time_astimestamps_diff = np.amax(abs((result1['astimestamps'] - result2['astimestamps']) - adj_time_diff))
print "Maximum instaneous offset per AS timestamp is %f ns (%f of sample period)" % \
(time_astimestamps_diff, time_astimestamps_diff / (1000000000 / 48000))
- print "\tfor reference 0.25 of a sample at 48 kHz is %f ns" % ( 10000000000 / 48000 / 4)
+ print "\tfor reference 0.25 of a sample at 48 kHz is %f ns" % ( 1000000000 / 48000 / 4)