Skip to content

Commit f915418

Browse files
committed
increase NTSC MTF level
1 parent 3b0269f commit f915418

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lddecode_core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def __init__(self, inputfreq = 40, system = 'NTSC', blocklen_ = 16384, decode_an
167167
if system == 'NTSC':
168168
self.SysParams = SysParams_NTSC
169169
self.DecoderParams = RFParams_NTSC
170-
self.mtf_mult *= .32
170+
self.mtf_mult *= .7
171171
elif system == 'PAL':
172172
self.SysParams = SysParams_PAL
173173
self.DecoderParams = RFParams_PAL
@@ -1339,7 +1339,6 @@ def readframe(self, infile, sample, firstframe = False, CAV = False):
13391339

13401340
if not self.vbi['isclv'] and self.vbi['framenr'] is not None:
13411341
newmtf = 1 - (self.vbi['framenr'] / 10000)
1342-
print(newmtf)
13431342
if newmtf < 0:
13441343
newmtf = 0
13451344

0 commit comments

Comments
 (0)