mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-14 13:35:43 +00:00
ignoreptsjumps and fixptsjumps are the same thing #641
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?
Originally created by @techno-disaster on GitHub (Jun 12, 2021).
ignoreptsjumps and fixptsjumps are the same thing, remove one?
@cfsmp3 commented on GitHub (Mar 22, 2023):
@Techno-Disaster See above
@cfsmp3 commented on GitHub (Dec 28, 2025):
After investigating the code, these flags are not duplicates - they are opposites:
Current behavior:
--ignoreptsjumpssetsignore_pts_jumps = true(ignore PTS jumps - default)--fixptsjumpssetsignore_pts_jumps = false(fix PTS jumps)From the original C code (when this issue was filed in 2021):
The comment
// -ignoreptsjumps counterpartshows these were always intended as opposite options.When to use each:
--ignoreptsjumps--fixptsjumpsThe flags correctly conflict with each other in the argument parser. Both flags serve valid, distinct purposes.
Closing as not a bug.