Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/rust/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub struct Args {
pub pesheader: bool,
/// Write the DVB subtitle debug traces to console.
#[arg(long, help_heading=FILE_NAME_RELATED_OPTIONS)]
pub debugdvdsub: bool,
pub debugdvbsub: bool,
/// Ignore PTS jumps (default).
#[arg(long, help_heading=FILE_NAME_RELATED_OPTIONS)]
pub ignoreptsjumps: bool,
Expand Down
2 changes: 1 addition & 1 deletion src/rust/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1024,7 +1024,7 @@ impl OptionsExt for Options {
self.pes_header_to_stdout = true;
}

if args.debugdvdsub {
if args.debugdvbsub {
self.debug_mask =
DebugMessageMask::new(DebugMessageFlag::DVB, DebugMessageFlag::VERBOSE);
}
Expand Down
Loading