diff --git a/BitStream.cs b/BitStream.cs
index eb30610..d6fa53c 100644
--- a/BitStream.cs
+++ b/BitStream.cs
@@ -9,6 +9,12 @@ namespace SabreTools.Compression
///
public class BitStream
{
+ ///
+ public long Position => _source.Position;
+
+ ///
+ public long Length => _source.Length;
+
///
/// Original stream source
///