dead code pruning

This commit is contained in:
minjaesong
2025-09-12 19:13:12 +09:00
parent 957522a460
commit 1f5f72733a
2 changed files with 30 additions and 823 deletions

View File

@@ -46,7 +46,7 @@ let subtitlePosition = 0 // 0=bottom center (default)
let interactive = false
let debugMotionVectors = false
let deinterlaceAlgorithm = "yadif"
let enableDeblocking = true // Default: enabled (use -nodeblock to disable)
let enableDeblocking = false // Default: disabled (use -deblock to enable)
let enableBoundaryAwareDecoding = false // Default: disabled (use -boundaryaware to enable) // suitable for still frame and slide shows, absolutely unsuitable for videos
if (exec_args.length > 2) {
@@ -56,8 +56,8 @@ if (exec_args.length > 2) {
interactive = true
} else if (arg === "-debug-mv") {
debugMotionVectors = true
} else if (arg === "-nodeblock") {
enableDeblocking = false
} else if (arg === "-deblock") {
enableDeblocking = true
} else if (arg === "-boundaryaware") {
enableBoundaryAwareDecoding = true
} else if (arg.startsWith("-deinterlace=")) {