Resampler implemented

This commit is contained in:
Aditya Ujeniya
2024-08-21 09:47:16 +02:00
parent 362adab938
commit b186dca79d
7 changed files with 351 additions and 56 deletions

View File

@@ -107,6 +107,10 @@ func (l *Level) sizeInBytes() int64 {
}
}
for _, child := range l.children {
size += child.sizeInBytes()
}
return size
}