Commit e7a94f0a authored by vaclav's avatar vaclav
Browse files

fix build warnings

parent fe648e8c
Loading
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -313,6 +313,11 @@ void stereo_dmx_evs_close_encoder(
    STEREO_DMX_EVS_ENC_HANDLE *hStereoDmxEVS                    /* i/o: Stereo downmix for EVS encoder handle   */
);

ivas_error ivas_dec_tmp(
    Decoder_Struct *st_ivas,                                    /* i/o: IVAS decoder structure                  */
    int16_t *data                                               /* o  : output synthesis signal                 */
);

ivas_error ivas_dec(
#ifdef UNIFIED_DECODING_PATHS_LEFTOVERS
    Decoder_Struct *st_ivas                                     /* i/o: IVAS decoder structure                                      */
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@
 * Principal IVAS decoder routine
 *--------------------------------------------------------------------------*/

static ivas_error ivas_dec_tmp(
ivas_error ivas_dec_tmp(
    Decoder_Struct *st_ivas, /* i/o: IVAS decoder structure      */
    int16_t *data            /* o  : output synthesis signal     */
)
+3 −0
Original line number Diff line number Diff line
@@ -4853,6 +4853,9 @@ static ivas_error set_pcm_buffer_to_zero(
        case IVAS_DEC_PCM_FLOAT:
            set_s( (int16_t *) buffer, 0, nZeroSamples );
            break;
        case IVAS_DEC_PCM_INT16:
            set_s( (int16_t *) buffer, 0, nZeroSamples );
            break;
        default:
            error = IVAS_ERR_INTERNAL;
    }