Commit 834f7e76 authored by hsd's avatar hsd
Browse files

missing const

parent 6a823cee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -577,7 +577,7 @@ ivas_error ISAR_LC3PLUS_ENC_Encode(
    float **pcm_in,                 /* i  : pointer input samples       */
#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
    void *bitstream_out,       /* o  : pointer to bitstream frame                       */
    int32_t bitstream_out_size /* i  : size of the bitstream_out buffer in bytes. Must be equal to ISAR_LC3PLUS_ENC_GetOutputBitstreamSize. */
    const int32_t bitstream_out_size /* i  : size of the bitstream_out buffer in bytes. Must be equal to ISAR_LC3PLUS_ENC_GetOutputBitstreamSize. */
#else
    void *bitstream_out /* o  : pointer to bitstream frame                       */
#endif
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ ivas_error ISAR_LC3PLUS_ENC_Encode(
    float **pcm_in,                 /* i  : pointer input samples                            */
#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS
    void *bitstream_out,       /* o  : pointer to bitstream frame                       */
    int32_t bitstream_out_size /* i  : size of the bitstream_out buffer in bytes. Must be equal to ISAR_LC3PLUS_ENC_GetOutputBitstreamSize. */
    const int32_t bitstream_out_size /* i  : size of the bitstream_out buffer in bytes. Must be equal to ISAR_LC3PLUS_ENC_GetOutputBitstreamSize. */
#else
    void *bitstream_out           /* o  : pointer to bitstream frame                       */
#endif