Commit dc7e1a3a authored by vaclav's avatar vaclav
Browse files

remove comments that are outdated or handled in tickets

parent f642891d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@
#ifndef _STL_H
#define _STL_H

#include "options.h" /* TODO: TEMPORARY during BASOP development - to be removed */
#include "options.h" /* note: needed until BASOP_NOGLOB is accepted */
#include "typedef.h"
#include "basop32.h"
#include "move.h"
+2 −2
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ ivas_error ivas_dec(
{
    int16_t n, output_frame, nchan_out;
    Decoder_State *st;                             /* used for bitstream handling */
    float output[MAX_OUTPUT_CHANNELS][L_FRAME48k]; /* 'float' buffer for output synthesis, MAX_OUTPUT_CHANNELS channels */ /* IVAS_fmToDo: buffer can be allocated dynamically based on the actual number of output channels */
    float output[MAX_OUTPUT_CHANNELS][L_FRAME48k]; /* 'float' buffer for output synthesis, MAX_OUTPUT_CHANNELS channels */
    int16_t nchan_remapped;
    float output_lfe_ch[L_FRAME48k];
    int16_t nb_bits_metadata[MAX_SCE];
+0 −1
Original line number Diff line number Diff line
@@ -80,7 +80,6 @@ ivas_error ivas_ism_dtx_dec(

        if ( nchan_ism != nchan_ism_prev )
        {
            /* IVAS_fmToDo: more work needed when the number of transported objects is not constant */
            return IVAS_ERROR( IVAS_ERR_INTERNAL_FATAL, "wrong number of objects signalled!" );
        }

+0 −1
Original line number Diff line number Diff line
@@ -219,7 +219,6 @@ ivas_error ivas_ism_metadata_dec(

        if ( *nchan_transport != nchan_transport_prev )
        {
            /* IVAS_fmToDo: more work needed when the number of transported objects is not constant */
            return IVAS_ERROR( IVAS_ERR_INTERNAL_FATAL, "wrong number of objects signalled!" );
        }

+3 −3
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ ivas_error ivas_jbm_dec_tc(
{
    int16_t n, output_frame, nchan_out;
    Decoder_State *st;                                /* used for bitstream handling */
    float output[MAX_TRANSPORT_CHANNELS][L_FRAME48k]; /* 'float' buffer for transport channels, MAX_TRANSPORT_CHANNELS channels */ /* IVAS_fmToDo: buffer can be allocated dynamically based on the actual number of output channels */
    float output[MAX_TRANSPORT_CHANNELS][L_FRAME48k]; /* 'float' buffer for transport channels, MAX_TRANSPORT_CHANNELS channels */
    int16_t nchan_remapped, hodirac_flag;
    float output_lfe_ch[L_FRAME48k];
    int16_t nb_bits_metadata[MAX_SCE];
@@ -641,7 +641,7 @@ ivas_error ivas_jbm_dec_render(
{
    int16_t n, nchan_out;
    int16_t nchan_transport;
    float output[MAX_OUTPUT_CHANNELS][L_FRAME48k]; /* 'float' buffer for output synthesis, MAX_OUTPUT_CHANNELS channels */ /* IVAS_fmToDo: buffer can be allocated dynamically based on the actual number of output channels */
    float output[MAX_OUTPUT_CHANNELS][L_FRAME48k]; /* 'float' buffer for output synthesis, MAX_OUTPUT_CHANNELS channels */
    int16_t nchan_remapped;
    int32_t output_Fs;
    AUDIO_CONFIG output_config;
Loading