Skip to content

Commit

Permalink
Remove --show-ffts opt
Browse files Browse the repository at this point in the history
Fixes #15
  • Loading branch information
JuniorIsAJitterbug committed Jan 16, 2024
1 parent 70ccdb2 commit 60d3141
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/tbc_video_export/opts/opts.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ class Opts(argparse.Namespace):
luma_nr: float | None
transform_threshold: float | None
transform_thresholds: str | None
show_ffts: bool

# decoder (ntsc)
ntsc_phase_comp: bool | None
Expand Down
7 changes: 0 additions & 7 deletions src/tbc_video_export/opts/opts_ldtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,6 @@ def add_ldtool_opts(parent: argparse.ArgumentParser) -> None:
"'threshold' mode.",
)

decoder_opts.add_argument(
"--show-ffts",
action="store_true",
default=False,
help="Transform: Overlay the input and output FFTs.",
)

# decoder (ntsc)
ntsc_decoder_opts = parent.add_argument_group("decoder (ntsc)")
ntsc_decoder_opts.add_argument(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ def _get_misc_opts(self) -> FlatList:
self._state.opts.convert_opt("output_padding", "--pad"),
self._state.opts.convert_opt("oftest", "-o"),
self._state.opts.convert_opt("simple_pal", "--simple-pal"),
self._state.opts.convert_opt("show_ffts", "--show-ffts"),
self._state.opts.convert_opt(
"transform_threshold", "--transform-threshold"
),
Expand Down

0 comments on commit 60d3141

Please sign in to comment.