Module: GstAudio::AudioResamplerFilterMode

Defined in:
(unknown)

Constant Summary collapse

INTERPOLATED =

Use interpolated filter tables. This uses less memory but more CPU and is slightly less accurate but it allows for more efficient variable rate resampling with gst_audio_resampler_update().

0 or :interpolated
FULL =

Use full filter table. This uses more memory but less CPU.

1 or :full
AUTO =

Automatically choose between interpolated and full filter tables.

2 or :auto