/** * [[VideoFxStreamParameters]] describes the configuration of the current * video stream passing through the [[VideoFxProcessor]] */ export interface VideoFxStreamParameters { framerate: number; width: number; height: number; channels: number; }