module Pulseaudio: sig
.. end
An error occured.
exception Error of int
val string_of_error : int -> string
Get the description of an error.
type
sample_format =
| |
Sample_format_s16le |
| |
Sample_format_s16be |
| |
Sample_format_float32le |
| |
Sample_format_float32be |
type
sample = {
|
sample_format : sample_format ; |
|
sample_rate : int ; |
|
sample_chans : int ; |
}
type
map
type
dir =
| |
Dir_nodirection |
| |
Dir_playback |
| |
Dir_record |
| |
Dir_upload |
Direction of the stream.
type
buffer_attr = {
|
max_length : int ; |
|
target_length : int ; |
|
prebuffering : int ; |
|
min_request : int ; |
|
fragment_size : int ; |
}
Attributes of the buffer.
module Simple: sig
.. end
Simple pulseaudio interface.