LCOV - code coverage report
Current view: top level - lib_rend - ivas_output_init.c (source / functions) Hit Total Coverage
Test: Coverage on main -- long test vectors @ a21f94bc6bac334fe001a5bad2f7b32b79038097 Lines: 242 255 94.9 %
Date: 2025-11-01 09:50:07 Functions: 6 6 100.0 %

          Line data    Source code
       1             : /******************************************************************************************************
       2             : 
       3             :    (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
       4             :    Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
       5             :    Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
       6             :    Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
       7             :    contributors to this repository. All Rights Reserved.
       8             : 
       9             :    This software is protected by copyright law and by international treaties.
      10             :    The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB,
      11             :    Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
      12             :    Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
      13             :    Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
      14             :    contributors to this repository retain full ownership rights in their respective contributions in
      15             :    the software. This notice grants no license of any kind, including but not limited to patent
      16             :    license, nor is any license granted by implication, estoppel or otherwise.
      17             : 
      18             :    Contributors are required to enter into the IVAS codec Public Collaboration agreement before making
      19             :    contributions.
      20             : 
      21             :    This software is provided "AS IS", without any express or implied warranties. The software is in the
      22             :    development stage. It is intended exclusively for experts who have experience with such software and
      23             :    solely for the purpose of inspection. All implied warranties of non-infringement, merchantability
      24             :    and fitness for a particular purpose are hereby disclaimed and excluded.
      25             : 
      26             :    Any dispute, controversy or claim arising under or in relation to providing this software shall be
      27             :    submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in
      28             :    accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and
      29             :    the United Nations Convention on Contracts on the International Sales of Goods.
      30             : 
      31             : *******************************************************************************************************/
      32             : 
      33             : #include <stdint.h>
      34             : #include "options.h"
      35             : #include "ivas_cnst.h"
      36             : #include "prot.h"
      37             : #include "ivas_prot_rend.h"
      38             : #include "ivas_rom_com.h"
      39             : #include "ivas_prot.h"
      40             : #include <string.h>
      41             : #ifdef DEBUGGING
      42             : #include "debug.h"
      43             : #include <assert.h>
      44             : #endif
      45             : #include "wmc_auto.h"
      46             : 
      47             : /*-------------------------------------------------------------------------*
      48             :  * audioCfg2channels()
      49             :  *
      50             :  * Map Audio configuration to number of channels
      51             :  *-------------------------------------------------------------------------*/
      52             : 
      53             : /*! r: number of audio channels */
      54    53311983 : int16_t audioCfg2channels(
      55             :     AUDIO_CONFIG output_config /* i  : output audio configuration  */
      56             : )
      57             : {
      58             :     int16_t nchan_out;
      59             : 
      60    53311983 :     switch ( output_config )
      61             :     {
      62         804 :         case IVAS_AUDIO_CONFIG_MONO:
      63         804 :             nchan_out = 1;
      64         804 :             break;
      65        6186 :         case IVAS_AUDIO_CONFIG_STEREO:
      66        6186 :             nchan_out = 2;
      67        6186 :             break;
      68     1042998 :         case IVAS_AUDIO_CONFIG_5_1:
      69     1042998 :             nchan_out = 6;
      70     1042998 :             break;
      71      637350 :         case IVAS_AUDIO_CONFIG_7_1:
      72      637350 :             nchan_out = 8;
      73      637350 :             break;
      74      462292 :         case IVAS_AUDIO_CONFIG_5_1_2:
      75      462292 :             nchan_out = 8;
      76      462292 :             break;
      77      657305 :         case IVAS_AUDIO_CONFIG_5_1_4:
      78      657305 :             nchan_out = 10;
      79      657305 :             break;
      80    14190397 :         case IVAS_AUDIO_CONFIG_7_1_4:
      81    14190397 :             nchan_out = 12;
      82    14190397 :             break;
      83       32769 :         case IVAS_AUDIO_CONFIG_FOA:
      84       32769 :             nchan_out = 4;
      85       32769 :             break;
      86        1944 :         case IVAS_AUDIO_CONFIG_HOA2:
      87        1944 :             nchan_out = 9;
      88        1944 :             break;
      89    14173722 :         case IVAS_AUDIO_CONFIG_HOA3:
      90    14173722 :             nchan_out = 16;
      91    14173722 :             break;
      92           0 :         case IVAS_AUDIO_CONFIG_OBA:
      93           0 :             nchan_out = 8;
      94           0 :             break;
      95       31203 :         case IVAS_AUDIO_CONFIG_BINAURAL:
      96             :         case IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED:
      97             :         case IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM:
      98             :         case IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR:
      99             :         case IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB:
     100       31203 :             nchan_out = 2;
     101       31203 :             break;
     102    21866684 :         case IVAS_AUDIO_CONFIG_ISM1:
     103    21866684 :             nchan_out = 1;
     104    21866684 :             break;
     105          36 :         case IVAS_AUDIO_CONFIG_ISM2:
     106          36 :             nchan_out = 2;
     107          36 :             break;
     108          39 :         case IVAS_AUDIO_CONFIG_ISM3:
     109          39 :             nchan_out = 3;
     110          39 :             break;
     111      207345 :         case IVAS_AUDIO_CONFIG_ISM4:
     112      207345 :             nchan_out = 4;
     113      207345 :             break;
     114         909 :         default:
     115         909 :             IVAS_ERROR( IVAS_ERR_INTERNAL, "Error: illegal output configuration\n" );
     116         909 :             nchan_out = -1;
     117         909 :             break;
     118             :     }
     119             : 
     120    53311983 :     return ( nchan_out );
     121             : }
     122             : 
     123             : 
     124             : /*-------------------------------------------------------------------------*
     125             :  * ivas_output_init()
     126             :  *
     127             :  * Initialize and configure IVAS output parameters
     128             :  *-------------------------------------------------------------------------*/
     129             : 
     130      147878 : void ivas_output_init(
     131             :     IVAS_OUTPUT_SETUP *hOutSetup,    /* o  : IVAS output setup structure */
     132             :     const AUDIO_CONFIG output_config /* i  : output audio configuration  */
     133             : )
     134             : {
     135             :     int16_t nchan_out;
     136             : 
     137             :     /* set general default values */
     138      147878 :     hOutSetup->output_config = output_config;
     139      147878 :     hOutSetup->is_loudspeaker_setup = 0;
     140      147878 :     hOutSetup->is_binaural_setup = 0;
     141      147878 :     hOutSetup->ambisonics_order = -1;
     142      147878 :     hOutSetup->separateChannelEnabled = 0;
     143      147878 :     hOutSetup->separateChannelIndex = 0;
     144             : 
     145      147878 :     if ( output_config == IVAS_AUDIO_CONFIG_LS_CUSTOM )
     146             :     {
     147         105 :         hOutSetup->is_loudspeaker_setup = 1;
     148             :         /* set in ivas_init_decoder: */
     149             :         /* hOutSetup->ls_azimuth */
     150             :         /* hOutSetup->ls_elevation    */
     151             :         /* hOutSetup->num_lfe         */
     152             :         /* hOutSetup->index_lfe[0]    */
     153             :         /* hOutSetup->is_planar_setup */
     154             :     }
     155             :     else
     156             :     {
     157             :         /* Set default values for all other than custom LS setup */
     158      147773 :         hOutSetup->ls_azimuth = NULL;
     159      147773 :         hOutSetup->ls_elevation = NULL;
     160      147773 :         hOutSetup->num_lfe = 0;
     161      147773 :         hOutSetup->index_lfe[0] = -1;
     162      147773 :         hOutSetup->is_planar_setup = 0;
     163             : 
     164             :         /* set output setup specific values */
     165      147773 :         switch ( output_config )
     166             :         {
     167         584 :             case IVAS_AUDIO_CONFIG_MONO:
     168         584 :                 hOutSetup->is_loudspeaker_setup = 1;
     169         584 :                 break;
     170        3141 :             case IVAS_AUDIO_CONFIG_STEREO:
     171        3141 :                 hOutSetup->is_loudspeaker_setup = 1;
     172        3141 :                 hOutSetup->ls_azimuth = ls_azimuth_CICP2;
     173        3141 :                 hOutSetup->ls_elevation = ls_elevation_CICP2;
     174        3141 :                 break;
     175       32238 :             case IVAS_AUDIO_CONFIG_FOA:
     176       32238 :                 hOutSetup->ambisonics_order = SBA_FOA_ORDER;
     177       32238 :                 break;
     178        1917 :             case IVAS_AUDIO_CONFIG_HOA2:
     179        1917 :                 hOutSetup->ambisonics_order = SBA_HOA2_ORDER;
     180        1917 :                 break;
     181       13215 :             case IVAS_AUDIO_CONFIG_HOA3:
     182       13215 :                 hOutSetup->ambisonics_order = SBA_HOA3_ORDER;
     183       13215 :                 break;
     184       19848 :             case IVAS_AUDIO_CONFIG_5_1:
     185       19848 :                 hOutSetup->num_lfe = 1;
     186       19848 :                 hOutSetup->index_lfe[0] = 3;
     187       19848 :                 hOutSetup->is_loudspeaker_setup = 1;
     188       19848 :                 hOutSetup->ls_azimuth = ls_azimuth_CICP6;
     189       19848 :                 hOutSetup->ls_elevation = ls_elevation_CICP6;
     190       19848 :                 hOutSetup->is_planar_setup = 1;
     191       19848 :                 break;
     192        5010 :             case IVAS_AUDIO_CONFIG_7_1:
     193        5010 :                 hOutSetup->num_lfe = 1;
     194        5010 :                 hOutSetup->index_lfe[0] = 3;
     195        5010 :                 hOutSetup->is_loudspeaker_setup = 1;
     196        5010 :                 hOutSetup->ls_azimuth = ls_azimuth_CICP12;
     197        5010 :                 hOutSetup->ls_elevation = ls_elevation_CICP12;
     198        5010 :                 hOutSetup->is_planar_setup = 1;
     199        5010 :                 break;
     200        4407 :             case IVAS_AUDIO_CONFIG_5_1_2:
     201        4407 :                 hOutSetup->num_lfe = 1;
     202        4407 :                 hOutSetup->index_lfe[0] = 3;
     203        4407 :                 hOutSetup->is_loudspeaker_setup = 1;
     204        4407 :                 hOutSetup->ls_azimuth = ls_azimuth_CICP14;
     205        4407 :                 hOutSetup->ls_elevation = ls_elevation_CICP14;
     206        4407 :                 hOutSetup->is_planar_setup = 0;
     207        4407 :                 break;
     208        3561 :             case IVAS_AUDIO_CONFIG_5_1_4:
     209        3561 :                 hOutSetup->num_lfe = 1;
     210        3561 :                 hOutSetup->index_lfe[0] = 3;
     211        3561 :                 hOutSetup->is_loudspeaker_setup = 1;
     212        3561 :                 hOutSetup->ls_azimuth = ls_azimuth_CICP16;
     213        3561 :                 hOutSetup->ls_elevation = ls_elevation_CICP16;
     214        3561 :                 hOutSetup->is_planar_setup = 0;
     215        3561 :                 break;
     216       31479 :             case IVAS_AUDIO_CONFIG_7_1_4:
     217       31479 :                 hOutSetup->num_lfe = 1;
     218       31479 :                 hOutSetup->index_lfe[0] = 3;
     219       31479 :                 hOutSetup->is_loudspeaker_setup = 1;
     220       31479 :                 hOutSetup->ls_azimuth = ls_azimuth_CICP19;
     221       31479 :                 hOutSetup->ls_elevation = ls_elevation_CICP19;
     222       31479 :                 hOutSetup->is_planar_setup = 0;
     223       31479 :                 break;
     224       25149 :             case IVAS_AUDIO_CONFIG_BINAURAL:
     225             :             case IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED:
     226             :             case IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM:
     227             :             case IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR:
     228             :             case IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB:
     229             :             case IVAS_AUDIO_CONFIG_ISM1:
     230             :             case IVAS_AUDIO_CONFIG_ISM2:
     231             :             case IVAS_AUDIO_CONFIG_ISM3:
     232             :             case IVAS_AUDIO_CONFIG_ISM4:
     233       25149 :                 hOutSetup->is_binaural_setup = 1;
     234       32373 :             case IVAS_AUDIO_CONFIG_EXTERNAL:
     235             :                 /* Default values are used */
     236       32373 :                 break;
     237           0 :             default:
     238             : #ifdef DEBUGGING
     239             :                 /* error */
     240             :                 assert( !"Error: Unknown output setup!\n" );
     241             : #endif
     242           0 :                 return;
     243             :         }
     244             :     }
     245             : 
     246      147878 :     if ( output_config != IVAS_AUDIO_CONFIG_EXTERNAL && output_config != IVAS_AUDIO_CONFIG_LS_CUSTOM )
     247             :     {
     248      140549 :         nchan_out = audioCfg2channels( output_config );
     249      140549 :         hOutSetup->nchan_out_woLFE = nchan_out - hOutSetup->num_lfe;
     250             :     }
     251             : 
     252      147878 :     return;
     253             : }
     254             : 
     255             : 
     256             : /*-----------------------------------------------------------------*
     257             :  * ivas_get_nchan_buffers_dec()
     258             :  *
     259             :  * Return number of decoder audio buffers
     260             :  *-----------------------------------------------------------------*/
     261             : 
     262             : /*! r: number of decoder buffers */
     263    36028902 : int16_t ivas_get_nchan_buffers_dec(
     264             :     Decoder_Struct *st_ivas,          /* i/o: IVAS decoder structure                */
     265             :     const int16_t sba_analysis_order, /* i  : SBA order evaluated in SBA decoder    */
     266             :     const int32_t ivas_total_brate    /* i  : total IVAS bitrate                    */
     267             : )
     268             : {
     269             :     int16_t nchan_out_buff;
     270             :     AUDIO_CONFIG output_config;
     271             : 
     272    36028902 :     output_config = st_ivas->hDecoderConfig->output_config;
     273             : 
     274    36028902 :     nchan_out_buff = st_ivas->nchan_transport;
     275             : 
     276    36028902 :     if ( st_ivas->ivas_format == MONO_FORMAT )
     277             :     {
     278          64 :         nchan_out_buff = st_ivas->hDecoderConfig->nchan_out;
     279             :     }
     280    36028838 :     else if ( st_ivas->ivas_format == STEREO_FORMAT )
     281             :     {
     282         204 :         nchan_out_buff = max( st_ivas->hDecoderConfig->nchan_out, CPE_CHANNELS );
     283             :     }
     284    36028634 :     else if ( st_ivas->ivas_format == ISM_FORMAT )
     285             :     {
     286       61071 :         nchan_out_buff = max( st_ivas->hDecoderConfig->nchan_out, st_ivas->nchan_ism );
     287             : 
     288       61071 :         if ( st_ivas->ism_mode == ISM_MODE_PARAM || output_config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR )
     289             :         {
     290       40143 :             nchan_out_buff = max( nchan_out_buff, audioCfg2channels( st_ivas->intern_config ) );
     291             :         }
     292             :     }
     293    35967563 :     else if ( st_ivas->ivas_format == SBA_FORMAT )
     294             :     {
     295             :         int16_t nchan_internal;
     296    21112838 :         nchan_internal = ivas_sba_get_nchan_metadata( sba_analysis_order, ivas_total_brate );
     297             : 
     298    21112838 :         nchan_out_buff = max( nchan_internal, st_ivas->hDecoderConfig->nchan_out );
     299             :     }
     300    14854725 :     else if ( st_ivas->ivas_format == MASA_FORMAT )
     301             :     {
     302       73434 :         nchan_out_buff = max( st_ivas->hDecoderConfig->nchan_out, st_ivas->nchan_transport );
     303             : 
     304       73434 :         if ( st_ivas->hDiracDecBin[0] != NULL && st_ivas->hDiracDecBin[0]->useTdDecorr )
     305             :         {
     306       19314 :             nchan_out_buff = 2 * BINAURAL_CHANNELS;
     307             :         }
     308             :     }
     309    14781291 :     else if ( st_ivas->ivas_format == MASA_ISM_FORMAT )
     310             :     {
     311      121563 :         nchan_out_buff = max( st_ivas->hDecoderConfig->nchan_out, st_ivas->nchan_transport + st_ivas->nchan_ism );
     312             :     }
     313    14659728 :     else if ( st_ivas->ivas_format == SBA_ISM_FORMAT )
     314             :     {
     315             :         int16_t nchan_internal;
     316             : 
     317     1577763 :         nchan_internal = ivas_sba_get_nchan_metadata( sba_analysis_order, ivas_total_brate );
     318             : 
     319     1577763 :         if ( st_ivas->ism_mode == ISM_SBA_MODE_DISC )
     320             :         {
     321     1171103 :             nchan_internal += st_ivas->nchan_ism;
     322             :         }
     323             : 
     324     1577763 :         if ( st_ivas->hMCT != NULL )
     325             :         {
     326     1231934 :             nchan_internal = ( ( nchan_internal + 1 ) >> 1 ) << 1; /* ensure odd number of channels in MCT */
     327             :         }
     328             : 
     329     1577763 :         nchan_out_buff = max( nchan_internal, st_ivas->hDecoderConfig->nchan_out );
     330             : 
     331     1577763 :         if ( output_config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR )
     332             :         {
     333      224831 :             nchan_out_buff = max( nchan_out_buff, audioCfg2channels( st_ivas->intern_config ) );
     334             :         }
     335             :     }
     336    13081965 :     else if ( st_ivas->ivas_format == MC_FORMAT )
     337             :     {
     338    13081965 :         nchan_out_buff = max( st_ivas->hDecoderConfig->nchan_out, st_ivas->nchan_transport );
     339             : 
     340    13081965 :         if ( st_ivas->hOutSetup.separateChannelEnabled )
     341             :         {
     342      624684 :             nchan_out_buff = max( nchan_out_buff, st_ivas->nchan_transport + 1 );
     343             :         }
     344             : 
     345    13081965 :         if ( st_ivas->hDiracDecBin[0] != NULL && st_ivas->hDiracDecBin[0]->useTdDecorr )
     346             :         {
     347        5538 :             nchan_out_buff = 2 * BINAURAL_CHANNELS;
     348             :         }
     349             :         else
     350             :         {
     351    13076427 :             nchan_out_buff = max( nchan_out_buff, audioCfg2channels( st_ivas->intern_config ) );
     352             :         }
     353             :     }
     354             : 
     355    36028902 :     if ( output_config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || output_config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
     356             :     {
     357           0 :         nchan_out_buff = max( nchan_out_buff, st_ivas->hSplitBinRend->splitrend.multiBinPoseData.num_poses * BINAURAL_CHANNELS );
     358             :     }
     359             : 
     360    36028902 :     return nchan_out_buff;
     361             : }
     362             : 
     363             : 
     364             : /*-------------------------------------------------------------------*
     365             :  * ivas_output_buff_dec()
     366             :  *
     367             :  * Allocate/reallocate output audio buffers
     368             :  *-------------------------------------------------------------------*/
     369             : 
     370      298363 : ivas_error ivas_output_buff_dec(
     371             :     float *p_output_f[],               /* i/o: output audio buffers                       */
     372             :     const int16_t nchan_out_buff,      /* i  : number of output channels                  */
     373             :     const int16_t Opt_tsm,             /* i  : TSM option flag                            */
     374             :     DECODER_TC_BUFFER_HANDLE hTcBuffer /* i  : TSM buffer handle                          */
     375             : )
     376             : {
     377             :     int16_t ch, nchan_tc_jbm, nsamp_to_allocate, n_samp_full, offset;
     378             : 
     379     6265623 :     for ( ch = 0; ch < MAX_OUTPUT_CHANNELS + MAX_NUM_OBJECTS; ch++ )
     380             :     {
     381     5967260 :         p_output_f[ch] = NULL;
     382             :     }
     383             : 
     384      298363 :     if ( hTcBuffer->tc_buffer2 != NULL )
     385             :     {
     386       70863 :         free( hTcBuffer->tc_buffer2 );
     387       70863 :         hTcBuffer->tc_buffer2 = NULL;
     388             :     }
     389             : 
     390      298363 :     nchan_tc_jbm = 0;
     391      298363 :     if ( Opt_tsm )
     392             :     {
     393             :         /* JBM decoding: output audio buffers are shared with audio buffers from 'hTcBuffer->tc[]' */
     394       84672 :         nchan_tc_jbm = max( hTcBuffer->nchan_transport_jbm, hTcBuffer->nchan_buffer_full );
     395             :     }
     396             : 
     397      298363 :     if ( nchan_out_buff <= nchan_tc_jbm && !Opt_tsm )
     398             :     {
     399           0 :         for ( ch = 0; ch < nchan_out_buff; ch++ )
     400             :         {
     401           0 :             p_output_f[ch] = hTcBuffer->tc[ch];
     402             :         }
     403             :     }
     404             :     else
     405             :     {
     406      595744 :         for ( ch = 0; ch < nchan_tc_jbm; ch++ )
     407             :         {
     408      297381 :             p_output_f[ch] = hTcBuffer->tc[ch];
     409             :         }
     410             : 
     411             :         /* non-JBM decoding: allocate output audio buffers */
     412             :         /* JBM decoding: when not enough audio buffers 'hTcBuffer->tc[]', allocate additional buffers */
     413      298363 :         n_samp_full = ( 48000 / FRAMES_PER_SEC );
     414      298363 :         nsamp_to_allocate = ( nchan_out_buff - nchan_tc_jbm ) * n_samp_full;
     415             : 
     416      298363 :         if ( nsamp_to_allocate > 0 )
     417             :         {
     418             :             /* note: these are intra-frame heap memories */
     419      251614 :             if ( ( hTcBuffer->tc_buffer2 = (float *) malloc( nsamp_to_allocate * sizeof( float ) ) ) == NULL )
     420             :             {
     421           0 :                 return ( IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Can not allocate memory for floating-point output audio buffer!\n" ) );
     422             :             }
     423             : 
     424      251614 :             set_zero( hTcBuffer->tc_buffer2, nsamp_to_allocate );
     425             :         }
     426             : 
     427      298363 :         offset = 0;
     428     2118197 :         for ( ; ch < nchan_out_buff; ch++ )
     429             :         {
     430     1819834 :             p_output_f[ch] = &hTcBuffer->tc_buffer2[offset];
     431     1819834 :             offset += n_samp_full;
     432             :         }
     433             :     }
     434             : 
     435      298363 :     return IVAS_ERR_OK;
     436             : }
     437             : 
     438             : 
     439             : /*---------------------------------------------------------------------*
     440             :  * is_split_rendering_enabled()
     441             :  *
     442             :  *
     443             :  *---------------------------------------------------------------------*/
     444             : 
     445             : /*! r: flag to indicate if split rendering is enabled */
     446    34074927 : int16_t is_split_rendering_enabled(
     447             :     const DECODER_CONFIG_HANDLE hDecoderConfig,   /* i  : configuration structure         */
     448             :     const IVAS_RENDER_CONFIG_HANDLE hRenderConfig /* i  : Render config data structure    */
     449             : )
     450             : {
     451    34074927 :     if ( hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ||
     452    34074927 :          ( hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_STEREO && hDecoderConfig->Opt_non_diegetic_pan && hRenderConfig->split_rend_config.dof == 0 ) )
     453             :     {
     454           0 :         return 1;
     455             :     }
     456             :     else
     457             :     {
     458    34074927 :         return 0;
     459             :     }
     460             : }
     461             : 
     462             : 
     463             : /*---------------------------------------------------------------------*
     464             :  * get_channel_config()
     465             :  *
     466             :  * Gets a str related to input config
     467             :  *---------------------------------------------------------------------*/
     468             : 
     469       13032 : ivas_error get_channel_config(
     470             :     const AUDIO_CONFIG config,
     471             :     char *str )
     472             : {
     473       13032 :     if ( config == IVAS_AUDIO_CONFIG_MONO )
     474             :     {
     475         462 :         strcpy( str, "Mono" );
     476             :     }
     477       12570 :     else if ( config == IVAS_AUDIO_CONFIG_STEREO )
     478             :     {
     479         633 :         strcpy( str, "Stereo" );
     480             :     }
     481       11937 :     else if ( config == IVAS_AUDIO_CONFIG_ISM1 )
     482             :     {
     483         663 :         strcpy( str, "Object-based audio (1 object)" );
     484             :     }
     485       11274 :     else if ( config == IVAS_AUDIO_CONFIG_ISM2 )
     486             :     {
     487         768 :         strcpy( str, "Object-based audio (2 objects)" );
     488             :     }
     489       10506 :     else if ( config == IVAS_AUDIO_CONFIG_ISM3 )
     490             :     {
     491         648 :         strcpy( str, "Object-based audio (3 objects)" );
     492             :     }
     493        9858 :     else if ( config == IVAS_AUDIO_CONFIG_ISM4 )
     494             :     {
     495         654 :         strcpy( str, "Object-based audio (4 objects)" );
     496             :     }
     497        9204 :     else if ( config == IVAS_AUDIO_CONFIG_5_1 )
     498             :     {
     499         417 :         strcpy( str, "Multichannel 5.1 (CICP6)" );
     500             :     }
     501        8787 :     else if ( config == IVAS_AUDIO_CONFIG_7_1 )
     502             :     {
     503         375 :         strcpy( str, "Multichannel 7.1 (CICP12)" );
     504             :     }
     505        8412 :     else if ( config == IVAS_AUDIO_CONFIG_5_1_2 )
     506             :     {
     507         369 :         strcpy( str, "Multichannel 5.1+2 (CICP14)" );
     508             :     }
     509        8043 :     else if ( config == IVAS_AUDIO_CONFIG_5_1_4 )
     510             :     {
     511         429 :         strcpy( str, "Multichannel 5.1+4 (CICP16)" );
     512             :     }
     513        7614 :     else if ( config == IVAS_AUDIO_CONFIG_7_1_4 )
     514             :     {
     515         405 :         strcpy( str, "Multichannel 7.1+4 (CICP19)" );
     516             :     }
     517        7209 :     else if ( config == IVAS_AUDIO_CONFIG_LS_CUSTOM )
     518             :     {
     519         675 :         strcpy( str, "Multichannel (custom loudspeaker layout)" );
     520             :     }
     521        6534 :     else if ( config == IVAS_AUDIO_CONFIG_MASA1 )
     522             :     {
     523         576 :         strcpy( str, "Metadata-Assisted Spatial Audio mono (MASA1)" );
     524             :     }
     525        5958 :     else if ( config == IVAS_AUDIO_CONFIG_MASA2 )
     526             :     {
     527         582 :         strcpy( str, "Metadata-Assisted Spatial Audio stereo (MASA2)" );
     528             :     }
     529        5376 :     else if ( config == IVAS_AUDIO_CONFIG_FOA )
     530             :     {
     531        1380 :         strcpy( str, "Ambisonics: First Order (FOA)" );
     532             :     }
     533        3996 :     else if ( config == IVAS_AUDIO_CONFIG_HOA2 )
     534             :     {
     535         834 :         strcpy( str, "Ambisonics: Second Order (HOA2)" );
     536             :     }
     537        3162 :     else if ( config == IVAS_AUDIO_CONFIG_HOA3 )
     538             :     {
     539         867 :         strcpy( str, "Ambisonics: Third Order (HOA3)" );
     540             :     }
     541        2295 :     else if ( config == IVAS_AUDIO_CONFIG_BINAURAL )
     542             :     {
     543         813 :         strcpy( str, "Binaural: no room" );
     544             :     }
     545        1482 :     else if ( config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR )
     546             :     {
     547         675 :         strcpy( str, "Binaural: room with impulse responses" );
     548             :     }
     549         807 :     else if ( config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB )
     550             :     {
     551         657 :         strcpy( str, "Binaural: room with reverb" );
     552             :     }
     553         150 :     else if ( config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED )
     554             :     {
     555           0 :         strcpy( str, "BINAURAL_SPLIT_CODED" );
     556             :     }
     557         150 :     else if ( config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
     558             :     {
     559           0 :         strcpy( str, "Binaural_Split_PCM" );
     560             :     }
     561         150 :     else if ( config == IVAS_AUDIO_CONFIG_EXTERNAL )
     562             :     {
     563         150 :         strcpy( str, "External renderer" );
     564             :     }
     565             :     else
     566             :     {
     567           0 :         return IVAS_ERROR( IVAS_ERR_INVALID_OUTPUT_FORMAT, "Error: Incorrect Input/Output Configuration" );
     568             :     }
     569             : 
     570       13032 :     return IVAS_ERR_OK;
     571             : }

Generated by: LCOV version 1.14