Skip to content

Commit 2904762

Browse files
committed
refactor: make bbl_format module public for crate users
Export bbl_format module publicly so crate users can access: - BBLDataStream for parsing binary data - Encoding/predictor constants (ENCODING_*, PREDICT_*) - parse_frame_data for frame parsing - sign_extend_14bit for 14-bit encoding This enables external crates and the CLI binary to use the same stream and parsing implementation. Addresses Issue #9: Refactor CLI to use crate library functions
1 parent 850fc27 commit 2904762

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! ```
1717
1818
// Module declarations
19-
mod bbl_format;
19+
pub mod bbl_format;
2020
pub mod conversion;
2121
pub mod error;
2222
pub mod export;

0 commit comments

Comments
 (0)