package pulseaudio

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
exception Error of int
val string_of_error : int -> string
type sample_format =
  1. | Sample_format_s16le
  2. | Sample_format_s16be
  3. | Sample_format_float32le
  4. | Sample_format_float32be
type sample = {
  1. sample_format : sample_format;
  2. sample_rate : int;
  3. sample_chans : int;
}
type map
type dir =
  1. | Dir_nodirection
  2. | Dir_playback
  3. | Dir_record
  4. | Dir_upload
type buffer_attr = {
  1. max_length : int;
  2. target_length : int;
  3. prebuffering : int;
  4. min_request : int;
  5. fragment_size : int;
}
module Simple : sig ... end