Commit 89bda00a authored by vaclav's avatar vaclav
Browse files

address comments

parent 996c4c09
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ int32_t get_delay(
    const IVAS_FORMAT ivas_format, /* i  : IVAS format                         */
#ifdef SPLIT_REND_WITH_HEAD_ROT
    HANDLE_CLDFB_FILTER_BANK hCldfb,        /* i  : Handle of Cldfb analysis            */
    const int16_t flag_split_rendering /* i  : split rendering on/off flag         */
    const int16_t flag_binaural_split_coded /* i  : split rendering on/off flag         */
#else
    HANDLE_CLDFB_FILTER_BANK hCldfb /* i  : Handle of Cldfb analysis            */
#endif
@@ -103,7 +103,7 @@ int32_t get_delay(
            delay = IVAS_DEC_DELAY_NS;

#ifdef SPLIT_REND_WITH_HEAD_ROT
            if ( !flag_split_rendering )
            if ( !flag_binaural_split_coded )
            {
#endif
                if ( hCldfb != NULL )
+2 −2
Original line number Diff line number Diff line
@@ -729,7 +729,7 @@ int32_t get_delay(
    const IVAS_FORMAT ivas_format, /* i  : IVAS format                           */
#ifdef SPLIT_REND_WITH_HEAD_ROT
    HANDLE_CLDFB_FILTER_BANK hCldfb,        /* i  : Handle of Cldfb analysis              */
    const int16_t flag_split_rendering /* i  : split rendering on/off flag         */
    const int16_t flag_binaural_split_coded /* i  : split rendering on/off flag         */
#else
    HANDLE_CLDFB_FILTER_BANK hCldfb /* i  : Handle of Cldfb analysis              */
#endif
+0 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@
#include "stat_dec.h"
#include "ivas_stat_com.h"
#include "ivas_stat_rend.h"
#include "isar_stat.h"


/*----------------------------------------------------------------------------------*
+1 −1
Original line number Diff line number Diff line
@@ -2111,7 +2111,7 @@ static ivas_error copyRendererConfigStruct(
#ifdef SPLIT_REND_WITH_HEAD_ROT
    /* TODO: This seems wrong. Why set default instead of copying from hRCin?
     * Currently seems to work because we only ever copy from a default-initialized handle anyway */
    hRCout->split_rend_config.splitRendBitRate = SPLIT_REND_768k;
    hRCout->split_rend_config.splitRendBitRate = ISAR_MAX_SPLIT_REND_BITRATE;
    hRCout->split_rend_config.dof = 3;
    hRCout->split_rend_config.hq_mode = 0;
    hRCout->split_rend_config.codec_delay_ms = 0;
+1 −1
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ typedef enum
#define SPLIT_REND_320k      320000
#define SPLIT_REND_384k      384000
#define SPLIT_REND_512k      512000
#define SPLIT_REND_768k      768000
#define SPLIT_REND_768k      768000 /* == ISAR_MAX_SPLIT_REND_BITRATE */

#endif /*SPLIT_REND_WITH_HEAD_ROT */

Loading