Commit 4bb4af4d authored by vaclav's avatar vaclav
Browse files

Merge branch 'my_development' into 20221108_maintenance

parents 99944a88 79ade9d9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -42,12 +42,12 @@ def get_modes(in_format: str) -> list:
    list_process = subprocess.run(cmd, capture_output=True)

    output = list_process.stdout.decode("utf8")
    mode_list = output.splitlines()

    # correction for multichannel modes to avoid selecting some mono modes...
    if in_format in MC_MODES:
        in_format = "MC_" + in_format + "_b"

    mode_list = [m for m in output.splitlines() if in_format in m]
        mode_list = [m for m in mode_list if in_format in m]

    return mode_list

+8 −8
Original line number Diff line number Diff line
@@ -789,7 +789,7 @@ static void dec_prm_tcx(
    int16_t param[],                 /* o  : decoded parameters              */
    int16_t param_lpc[],             /* o  : LPC parameters                  */
    int16_t *total_nbbits,           /* i/o: number of bits / decoded bits   */
    const int16_t last_element_mode,
    const int16_t last_element_mode, /* i  : last element mode               */
    int16_t *bitsRead                /* o  : number of read bits             */
)
{
+1 −1
Original line number Diff line number Diff line
@@ -1019,7 +1019,7 @@ void first_VQstages(
    dist[0] = dist_buf;
    dist[1] = dist_buf + maxC;

    set_s( idx_buf, 0, (const int16_t) ( 2 * stagesVQ * maxC ) );
    set_s( idx_buf, 0, 2 * stagesVQ * maxC );
    set_s( parents, 0, maxC );

    /* Set up inital distance vector */