mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-04-17 11:33:12 +00:00
[PR #2006] fix: Remove debug println that printed spurious numbers during processing #2810
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/CCExtractor/ccextractor/pull/2006
State: closed
Merged: Yes
Summary
println!statement in the Rust timestamp conversion code (src/rust/lib_ccxr/src/time/units.rs)Problem
When processing files with PTS timestamps exceeding 24 hours (e.g., DVB teletext streams where the PCR/PTS base is set to 25+ hours), the debug statement would print just the hours value on its own line, polluting the output:
Fix
Remove the leftover debug code:
Test plan
dvbt.ts) - no more spurious numbers in output🤖 Generated with Claude Code