Source file swresample_options.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
type dither_type = [
  | `Dither_rectangular
  | `Dither_triangular
  | `Dither_triangular_highpass
]

type engine = [
  | `Engine_swr
  | `Engine_soxr
]

type filter_type = [
  | `Filter_type_cubic
  | `Filter_type_blackman_nuttall
  | `Filter_type_kaiser
]