FrameBufferFiller interface This interface defines a method to fill audio frames into a buffer.

interface FrameBufferFiller {
    fill(writer: FrameBufferWriter): boolean;
}

Methods

Methods

  • Fill the buffer with audio frames using the provided writer.

    Parameters

    • writer: FrameBufferWriter

      An instance of FrameBufferWriter used to write audio frames to the buffer.

    Returns boolean

    A boolean indicating whether to continue playback.