FreakingGenius - v0.1.0
    Preparing search index...

    Interface EchoConfig

    Tuning parameters for the echo canceller.

    interface EchoConfig {
        filterLengthSamples: number;
        sampleRateHz: number;
        stepSize: number;
    }
    Index

    Properties

    filterLengthSamples: number

    Length of the adaptive filter in samples (longer = more tail cancellation).

    sampleRateHz: number

    Audio sample rate shared by capture and playback paths (Hz).

    stepSize: number

    Adaptation step size for the NLMS algorithm — smaller = more stable but slower.