Remove unneeded assert

This commit is contained in:
kris 2019-03-21 15:36:29 +00:00
parent c4ed5f3d0a
commit 0732e2c067
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,8 @@ class Audio:
self.cycles_per_tick = 73 # type: int
# TODO: round to divisor of video frame rate
self.sample_rate = 14340 # int(1024. * 1024 / self.cycles_per_tick)
self.sample_rate = 14340 # int(1024. * 1024 /
# self.cycles_per_tick)
self.normalization = (
normalization or self._normalization()) # type: float
@ -45,7 +46,6 @@ class Audio:
break
a = self._decode(f, raw)
norm = np.max(np.abs(np.percentile(a, [2.5, 97.5])))
assert norm
return 16384. / norm