Commit cd895c57 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

update LC3plus code resulting from modifications to integration script

parent c5d5c80a
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -77,8 +77,10 @@ static int lc3plus_frame_size_supported(LC3PLUS_FrameDuration frame_dms)
    case LC3PLUS_FRAME_DURATION_7p5MS: /* fallthru */
    case LC3PLUS_FRAME_DURATION_10MS:
            return 1;
    default: return 0;
    default: break;
    }
    
    return 0;
}

static int null_in_list(void **list, int n)
+8 −4
Original line number Diff line number Diff line
@@ -14,21 +14,25 @@
#ifdef CR9_C_ADD_1p25MS
static LC3_INT16 get_continuation (LC3_INT32 fading_case, LC3PLUS_FrameDuration frame_dms, LC3_INT32 pos, LC3_INT32 total) 
{
    LC3_INT16 retval;

    if ( frame_dms != LC3PLUS_FRAME_DURATION_1p25MS )
    {
        return 0;
        retval = 0;
    }
    else
    {
        if ( pos == total )
        {
            return 0;
            retval = 0;
        }
        else
        {
            return fading_case;
            retval = fading_case;
        }
    }
    
    return retval;
}
#endif

+10 −10

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+15 −15

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+12 −12

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

Loading