Commit 73ac6d04 authored by lefort's avatar lefort
Browse files

Bug fixed - Left and right channels inverted.

parent d6e5b4e5
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -605,11 +605,11 @@ static void calc_poc(
        /* Channel selection based on ILD     */
        if ( hPHA->trns_aux_energy[0] > hPHA->trns_aux_energy[1] * hPHA->pha_ipd_ild_thresh )
        {
            pha_ipd_ild_chan2rephase = 0;
            pha_ipd_ild_chan2rephase = 1;
        }
        else if ( hPHA->trns_aux_energy[1] > hPHA->trns_aux_energy[0] * hPHA->pha_ipd_ild_thresh )
        {
            pha_ipd_ild_chan2rephase = 1;
            pha_ipd_ild_chan2rephase = 0;
        }
        else
        {