Commit c3fef1cf authored by vaclav's avatar vaclav
Browse files

replace isar -> ISAR

parent 89bda00a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3817,7 +3817,7 @@ ivas_error IVAS_DEC_GetSplitRendBitstreamHeader(
    ISAR_SPLIT_REND_CODEC *pCodec,                        /* o  : pointer to codec setting              */
    ISAR_SPLIT_REND_POSE_CORRECTION_MODE *poseCorrection, /* o  : pointer to pose correction mode       */
#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
    int16_t *pIsar_frame_size_ms,  /* o  : pointer to isar frame size setting    */
    int16_t *pIsar_frame_size_ms,  /* o  : pointer to ISAR frame size setting    */
    int16_t *pCodec_frame_size_ms, /* o  : pointer to codec frame size setting   */
    int16_t *pLc3plusHighRes       /* o  : pointer to LC3plus High-Res setting   */
#else
+1 −1
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ ivas_error IVAS_DEC_GetSplitRendBitstreamHeader(
    ISAR_SPLIT_REND_CODEC *pCodec,              /* o  : pointer to codec setting                                                */
    ISAR_SPLIT_REND_POSE_CORRECTION_MODE *poseCorrection,  /* o  : pointer to pose correction mode                              */
#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS                             
    int16_t *pIsar_frame_size_ms,               /* o  : pointer to isar frame size setting                                      */
    int16_t *pIsar_frame_size_ms,               /* o  : pointer to ISAR frame size setting                                      */
    int16_t *pCodec_frame_size_ms,              /* o  : pointer to codec frame size setting                                     */
    int16_t *pLc3plusHighRes                    /* o  : pointer to LC3plus High-Res setting                                     */
#else
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ typedef struct LC3PLUS_CONFIG
{
    /*! frame duration in microseconds [10000, 5000, 2500] */
    int16_t lc3plus_frame_duration_us;
    /*! isar frame duration in microseconds [20000, 10000, 5000] */
    /*! ISAR frame duration in microseconds [20000, 10000, 5000] */
    int16_t isar_frame_duration_us;
    /*! sampling rate*/
    int32_t samplerate;
+1 −1
Original line number Diff line number Diff line
@@ -390,7 +390,7 @@ ivas_error isar_framesize_to_ms(
ivas_error isar_split_rend_choose_default_codec(
    ISAR_SPLIT_REND_CODEC *pCodec,                              /* i/o: pointer to codec setting                */
#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
    int16_t *pIsar_frame_size_ms,                               /* i/o: pointer to isar frame size setting      */
    int16_t *pIsar_frame_size_ms,                               /* i/o: pointer to ISAR frame size setting      */
#endif
    int16_t *pCodec_frame_size_ms,                              /* i/o: pointer to codec frame size setting     */
    const int16_t cldfb_in_flag,                                /* i  : flag indicating rendering in TD         */
+2 −2
Original line number Diff line number Diff line
@@ -1231,7 +1231,7 @@ ivas_error isar_framesize_to_ms(
ivas_error isar_split_rend_choose_default_codec(
    ISAR_SPLIT_REND_CODEC *pCodec, /* i/o: pointer to codec setting                */
#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
    int16_t *pIsar_frame_size_ms, /* i/o: pointer to isar frame size setting      */
    int16_t *pIsar_frame_size_ms, /* i/o: pointer to ISAR frame size setting      */
#endif
    int16_t *pCodec_frame_size_ms, /* i/o: pointer to codec frame size setting     */
    const int16_t cldfb_in_flag,   /* i  : flag indicating rendering in TD         */
@@ -1268,7 +1268,7 @@ ivas_error isar_split_rend_choose_default_codec(
    }

#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
    if ( *pIsar_frame_size_ms == 0 ) /* isar frame size hasn't been set yet - use default for current configuration */
    if ( *pIsar_frame_size_ms == 0 ) /* ISAR frame size hasn't been set yet - use default for current configuration */
    {
        *pIsar_frame_size_ms = 20;
    }
Loading