Commit 1537ee94 authored by Ripinder Singh's avatar Ripinder Singh
Browse files

Code review comments, reorganize file api

parent e8f7aeb9
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -165,7 +165,7 @@ file(GLOB libDecSrcs "lib_dec/*.c")
file(GLOB libDecHeaders "lib_dec/*.h")
add_library(lib_dec ${libDecSrcs} ${libDecHeaders})
target_link_libraries(lib_dec lib_com lib_rend lib_debug lib_isar)
target_include_directories(lib_dec PUBLIC lib_dec lib_rend PRIVATE lib_enc lib_isar)
target_include_directories(lib_dec PUBLIC lib_dec lib_rend PRIVATE lib_enc lib_isar lib_util)

file(GLOB libUtilSrcs "lib_util/*.c")
file(GLOB libUtilHeaders "lib_util/*.h")
+22 −437

File changed.

Preview size limit exceeded, changes collapsed.

+31 −124

File changed.

Preview size limit exceeded, changes collapsed.

+0 −20
Original line number Diff line number Diff line
@@ -212,26 +212,6 @@ typedef struct _IVAS_JBM_TRACE_DATA

} IVAS_JBM_TRACE_DATA;

#ifdef IVAS_RTPDUMP
typedef struct
{
    int16_t PIdataPresent;
    char *sceneOrientation;
    char *deviceOrientationCompensated;
    char *deviceOrientationUncompensated;
    char *acousticEnvironmentId;
    char *acousticEnvironmentOnlyLateReverb;
    char *acousticEnvironmentLateReverbAndEarlyReflections;
} PI_DATA_CURRENT_FRAME;

typedef struct
{
    int16_t sceneOrientationSaved;
    IVAS_QUATERNION sceneOrientationQuat;
    int16_t deviceOrientationSaved;
    IVAS_QUATERNION deviceOrientationQuat;
} PI_DATA_DEPACKER_STATE;
#endif
typedef enum _ivas_binaural_renderer_type
{
    IVAS_BIN_RENDERER_TYPE_NONE,
+0 −5
Original line number Diff line number Diff line
@@ -63,13 +63,8 @@ struct JB4_DATAUNIT
    uint32_t rcvTime;
    /** true, if the data unit contains only silence */
    bool silenceIndicator;
#ifdef IVAS_RTPDUMP
    /** good frame indicator (Q bit for AMR-WB IO, otherwise set to true) */
    Word16 isGoodFrame;
#else
    /** Q bit for AMR-WB IO */
    Word16 qBit;
#endif

    /** the binary encoded access unit */
    uint8_t *data;
Loading