Commit 5f9e1d61 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

wrap print statement under #ifdef DEBUGGING

parent 09d781af
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2452,7 +2452,9 @@ ivas_error RenderConfigReader_read(
                while ( sscanf( pParams + params_idx, "%64[^=]=%[^;];", item, pValue ) == 2 )
                {
                    params_idx += (int32_t) ( strlen( item ) + strlen( pValue ) + 2 );
#ifdef DEBUGGING
                    fprintf( stderr, "        PARAM: %s -> %s\n", item, pValue );
#endif
                    if ( strcmp( item, "CODECDELAY" ) == 0 )
                    {
                        if ( !sscanf( pValue, "%hd", &hRenderConfig->split_rend_config.codec_delay_ms ) )