Commit 10a91031 authored by multrus's avatar multrus
Browse files

comments

parent b5b9ef94
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -266,7 +266,7 @@ class EVS(Processing):
        # in case of LFE 9.6 kbps NB processing strip any "-max_band XX" from cmd.extend and amend by "-max_band NB"
        if proc_chan_lfe_9k6bps_nb is True:
            cod_opts = []
            # search for 
            # search for -max_band XXX
            regex = re.compile(r'-max_band.*', re.I)
            last_was_max_band = False
            for i in self.cod_opts:
@@ -280,6 +280,7 @@ class EVS(Processing):
                else:
                    cod_opts.append(i)
                    last_was_max_band = False
            # add -max_band NB
            cod_opts.append('-max_band')
            cod_opts.append('NB')
        else: