Commit 5a8ca6f9 authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

disable debug options

parent 42eacc6c
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1054,8 +1054,8 @@ void calculate_hodirac_sector_parameters(
                *p_ele_prev = *p_ele;
            }
#ifdef HODIRAC_CHECK_VALUE_RANGE
            assert( *p_azi > -180.f && *p_azi <= 180.f );
            assert( *p_ele > -90.f && *p_ele <= 90.f );
            assert( *p_azi >= -180.f && *p_azi <= 180.f );
            assert( *p_ele >= -90.f && *p_ele <= 90.f );
#endif
        } // i_band
    }     // i_sec
+2 −2
Original line number Diff line number Diff line
@@ -151,10 +151,10 @@
#define HODIRAC                                         /* FhG: Sector-based HO-DirAC method for SBA at high bitrates */
#define HODIRAC_CRASH_FIX

#define HODIRAC_DEBUG
/*#define HODIRAC_DEBUG*/

#ifdef HODIRAC_DEBUG
#define HODIRAC_CHECK_VALUE_RANGE
//#define HODIRAC_CHECK_VALUE_RANGE
//#define HODIRAC_WRITE_PARAMS
///#define HODIRAC_READ_PARAMS
#endif