Skip to content

Commit

Permalink
increase NTSC MTF level
Browse files Browse the repository at this point in the history
  • Loading branch information
happycube committed Oct 31, 2018
1 parent 3b0269f commit f915418
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lddecode_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def __init__(self, inputfreq = 40, system = 'NTSC', blocklen_ = 16384, decode_an
if system == 'NTSC':
self.SysParams = SysParams_NTSC
self.DecoderParams = RFParams_NTSC
self.mtf_mult *= .32
self.mtf_mult *= .7
elif system == 'PAL':
self.SysParams = SysParams_PAL
self.DecoderParams = RFParams_PAL
Expand Down Expand Up @@ -1339,7 +1339,6 @@ def readframe(self, infile, sample, firstframe = False, CAV = False):

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

Expand Down

0 comments on commit f915418

Please sign in to comment.