Commit aee15bfc authored by malenov's avatar malenov
Browse files

deactive DEBUG_IND_LIST by default

parent 2bf7fd04
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
@@ -72,3 +72,25 @@ Externals/

# coan output files that are created when cleaning out switches
coan_out_*
/ci/complexity_measurements/__zaloha
/COMPLEXITY
/scripts/ivas_pytests/tests/unit_tests/crend/tv
/scripts/wmops
/scripts/__zaloha
/tv
/scripts/td_object_renderer/object_renderer_standalone
/scripts/ivas_pytests/tests/unit_tests/crend
/scripts/config/short_test.prm
/NTT_critical_data.pwv
/IvasBuilder.txt
/ind_list.pwv
/I18-comments.c
/build.txt
/__zaloha
/Workspace_msvc/decoder.args.json
/Workspace_msvc/encoder.args.json
/Workspace_msvc/lib_dec.args.json
/scripts/Vlad_mergeNewsletters.py
/scripts/Vlad_extract_max_num_ind.py
/scripts/max_num_indices.xlsx
/res
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@

/*#define BITSTREAM_INDICES_MEMORY*/            /* Don't count memory for bitstream Indice at the encoder - it is a temporary solution for development only */
#define IND_LIST_DYN                            /* dynamic allocation of ind_list based on transport channels */
#define DEBUG_IND_LIST
/*#define DEBUG_IND_LIST*/

#ifdef DEBUGGING

+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@

import os.path
import sys
import pdb

from pyivastest.IvasSvnBuilder import *
from pyivastest import IvasScriptsCommon
+4 −1
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ import operator
from copy import deepcopy
import logging
import functools
import pdb

from pyivastest.IvasModeCollector import IvasModeCollector
from pyivastest.constants import LOG_FILE_EXT
@@ -938,6 +939,8 @@ class IvasModeAnalyzer(IvasModeCollector):

        """
        
        # pdb.set_trace()
        
        if not os.path.exists(os.path.dirname(csv_file_name)):
            os.makedirs(os.path.dirname(csv_file_name))
        
+3 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@ from pyivastest.IvasBaseClass import *
import pyivastest.constants as constants
import logging
import platform
import pdb

# make sure we have colored output using shell escapes correctly on windows
if platform.system() == "Windows":  # Only if we are running on Windows
@@ -303,6 +304,8 @@ class IvasScriptArgParser(argparse.ArgumentParser):
        args["loglevel"] = args["loglevel"].upper()
        # do some sanity checks here

        # pdb.set_trace()
        
        # check if config file exists
        if (
            "config" in args.keys()
Loading