Commit 8051c716 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[cleanup] rename BINAURAL_SPLIT_CLDFB to BINAURAL_SPLIT_CODED globally

parent 46751a68
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ def generate_split_rend_lis_items(file_dir, exe_dir, out_dir):
					dec_exe,
					'-RENDER_CONFIG', renderers[rend][1],
					'-t', hr_pre_file, 
					'BINAURAL_SPLIT_CLDFB',
					'BINAURAL_SPLIT_CODED',
					'48',
					file_pkt,
					bs_file_out
@@ -104,7 +104,7 @@ def generate_split_rend_lis_items(file_dir, exe_dir, out_dir):
				post_rend_cmd = [
					rend_exe,
					'-i', bs_file_out,
					'-if', 'BINAURAL_SPLIT_CLDFB',
					'-if', 'BINAURAL_SPLIT_CODED',
					'-o', file_out,
					'-of', 'BINAURAL',
					'-fs', '48',
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ def generate_split_rend_lis_items(file_dir, exe_dir, out_dir):
				if renderers[rend][2] == '0':
					bs_file_out_name = '_'.join([file_tags[idx], 'out.pkt']);
					bs_file_out = os.path.join(out_dir, bs_file_out_name);	
					out_fmt = 'BINAURAL_SPLIT_CLDFB';
					out_fmt = 'BINAURAL_SPLIT_CODED';
				else:
					bs_file_out_name = '_'.join([file_tags[idx], 'out.wav']);
					bs_file_out = os.path.join(out_dir, bs_file_out_name);	
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ def generate_split_rend_lis_items(file_dir, exe_dir, out_dir):
				if renderers[rend][2] == '0':
					bs_file_out_name = '_'.join([file_tags[idx], 'out.pkt']);
					bs_file_out = os.path.join(out_dir, bs_file_out_name);	
					out_fmt = 'BINAURAL_SPLIT_CLDFB';
					out_fmt = 'BINAURAL_SPLIT_CODED';
				else:
					bs_file_out_name = '_'.join([file_tags[idx], 'out.wav']);
					bs_file_out = os.path.join(out_dir, bs_file_out_name);	
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ def generate_split_rend_lis_items(file_dir, exe_dir, out_dir):
				if renderers[rend][2] == '0':
					bs_file_out_name = '_'.join([file_tags[idx], 'out.pkt']);
					bs_file_out = os.path.join(out_dir, bs_file_out_name);	
					out_fmt = 'BINAURAL_SPLIT_CLDFB';
					out_fmt = 'BINAURAL_SPLIT_CODED';
				else:
					bs_file_out_name = '_'.join([file_tags[idx], 'out.wav']);
					bs_file_out = os.path.join(out_dir, bs_file_out_name);	
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ def generate_split_rend_lis_items(file_dir, exe_dir, out_dir):
				if renderers[rend][2] == '0':
					bs_file_out_name = '_'.join([file_tags[idx], 'out.pkt']);
					bs_file_out = os.path.join(out_dir, bs_file_out_name);	
					out_fmt = 'BINAURAL_SPLIT_CLDFB';
					out_fmt = 'BINAURAL_SPLIT_CODED';
				else:
					bs_file_out_name = '_'.join([file_tags[idx], 'out.wav']);
					bs_file_out = os.path.join(out_dir, bs_file_out_name);	
Loading