Package-level declarations

Types

Link copied to clipboard
class BicubicVideoEffect(val name: String = "bicubic") : VideoEffect

An object that provides a resampling filter by bicubic algorithm.

Link copied to clipboard
class BilinearVideoEffect(val name: String = "bilinear") : VideoEffect

An object that provides a resampling filter by bilinear algorithm.

Link copied to clipboard

An object that provides a no effect.

Link copied to clipboard
class LanczosVideoEffect(val name: String = "lanczos") : VideoEffect

An object that provides a resampling filter by lanczos algorithm.

Link copied to clipboard
class MonochromeVideoEffect(val name: String = "monochrome") : VideoEffect

An object that provides a monochrome effect.

Link copied to clipboard
class MosaicVideoEffect(val name: String = "mosaic") : VideoEffect

An object that provides a mosaic effect.

Link copied to clipboard
class SepiaVideoEffect(val name: String = "sepia") : VideoEffect

An object that provides a sepia effect.

Link copied to clipboard
interface VideoEffect

The VideoEffect interface provides to create a custom video effect.