Loading apps/decoder.c +1 −1 Original line number Diff line number Diff line Loading @@ -2037,7 +2037,7 @@ static ivas_error initOnFirstGoodFrame( } #ifdef CODE_IMPROVEMENTS int16_t *zeroBuf = calloc( pcmFrameSize * sizeof( int16_t ) ); int16_t *zeroBuf = calloc( pcmFrameSize, sizeof( int16_t ) ); #else int16_t *zeroBuf = malloc( pcmFrameSize * sizeof( int16_t ) ); memset( zeroBuf, 0, pcmFrameSize * sizeof( int16_t ) ); Loading Loading
apps/decoder.c +1 −1 Original line number Diff line number Diff line Loading @@ -2037,7 +2037,7 @@ static ivas_error initOnFirstGoodFrame( } #ifdef CODE_IMPROVEMENTS int16_t *zeroBuf = calloc( pcmFrameSize * sizeof( int16_t ) ); int16_t *zeroBuf = calloc( pcmFrameSize, sizeof( int16_t ) ); #else int16_t *zeroBuf = malloc( pcmFrameSize * sizeof( int16_t ) ); memset( zeroBuf, 0, pcmFrameSize * sizeof( int16_t ) ); Loading