Commit 6b6d1c45 authored by BOHMRR's avatar BOHMRR
Browse files

renamed spar_debug.[ch] to sba_debug.[ch]

parent ca31cb52
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@
    <ClCompile Include="..\lib_debug\mem_count.c" />
    <ClCompile Include="..\lib_debug\segsnr.c" />
    <ClCompile Include="..\lib_debug\snr.c" />
    <ClCompile Include="..\lib_debug\spar_debug.c" />
    <ClCompile Include="..\lib_debug\sba_debug.c" />
    <ClCompile Include="..\lib_debug\wmops.c" />
  </ItemGroup>
  <ItemGroup>
@@ -155,7 +155,7 @@
    <ClInclude Include="..\lib_debug\deb_out.h" />
    <ClInclude Include="..\lib_debug\errorhnd.h" />
    <ClInclude Include="..\lib_debug\mem_count.h" />
    <ClInclude Include="..\lib_debug\spar_debug.h" />
    <ClInclude Include="..\lib_debug\sba_debug.h" />
    <ClInclude Include="..\lib_debug\wmops.h" />
  </ItemGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@
#include "render_config_reader.h"
#ifdef DEBUG_SBA
#include "ivas_cnst.h"
#include "spar_debug.h"
#include "sba_debug.h"
int16_t numTransportChannels = 1;
int16_t numOutChannels = 1;
int16_t pca_ingest_channels = 1;
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@
#include "debug.h"
#ifdef DEBUG_SBA
#include "ivas_cnst.h"
#include "spar_debug.h"
#include "sba_debug.h"
#endif
#endif

+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@
#include "options.h"
#include "ivas_cnst.h"
#include "prot.h"
#include "spar_debug.h"
#include "sba_debug.h"
#include <assert.h>
#include "wmops.h"
#ifdef DEBUG_SBA
+3 −3
Original line number Diff line number Diff line
@@ -30,8 +30,8 @@

*******************************************************************************************************/

#ifndef SPAR_DEBUG_H
#define SPAR_DEBUG_H
#ifndef SBA_DEBUG_H
#define SBA_DEBUG_H

#include "options.h"
#include <stdio.h>
@@ -67,4 +67,4 @@ void ivas_open_decoder_debug_files( spar_debug_t *dbg_params );
void UpdateWave( const uint32_t sampleRate, const uint32_t numChannels, const uint32_t bps, WAVEFILEOUT *spar_wav );
#endif

#endif /* SPAR_DEBUG_H */
#endif /* SBA_DEBUG_H */
Loading