| typedef struct gavl_audio_options_s gavl_audio_options_t |
Opaque container for audio conversion options.
You don't want to know what's inside.
Dither mode.
| enum gavl_resample_mode_t |
Resample mode.
| void gavl_audio_options_set_quality | ( | gavl_audio_options_t * | opt, | |
| int | quality | |||
| ) |
Set the quality level for the converter.
| opt | Audio options | |
| quality | Quality level (see Quality settings) |
| int gavl_audio_options_get_quality | ( | gavl_audio_options_t * | opt | ) |
Get the quality level for a converter.
| opt | Audio options |
| void gavl_audio_options_set_dither_mode | ( | gavl_audio_options_t * | opt, | |
| gavl_audio_dither_mode_t | mode | |||
| ) |
Set the dither mode for the converter.
| opt | Audio options | |
| mode | A dither mode |
| gavl_audio_dither_mode_t gavl_audio_options_get_dither_mode | ( | gavl_audio_options_t * | opt | ) |
Get the dither mode for the converter.
| opt | Audio options |
| void gavl_audio_options_set_resample_mode | ( | gavl_audio_options_t * | opt, | |
| gavl_resample_mode_t | mode | |||
| ) |
Set the resample mode for the converter.
| opt | Audio options | |
| mode | A resample mode |
| gavl_resample_mode_t gavl_audio_options_get_resample_mode | ( | gavl_audio_options_t * | opt | ) |
Get the resample mode for the converter.
| opt | Audio options |
| void gavl_audio_options_set_conversion_flags | ( | gavl_audio_options_t * | opt, | |
| int | flags | |||
| ) |
| int gavl_audio_options_get_conversion_flags | ( | gavl_audio_options_t * | opt | ) |
| void gavl_audio_options_set_defaults | ( | gavl_audio_options_t * | opt | ) |
Set all options to their defaults.
| opt | Audio options |
| gavl_audio_options_t* gavl_audio_options_create | ( | ) |
Create an options container.
| void gavl_audio_options_copy | ( | gavl_audio_options_t * | dst, | |
| const gavl_audio_options_t * | src | |||
| ) |
Copy audio options.
| dst | Destination | |
| src | Source |
| void gavl_audio_options_destroy | ( | gavl_audio_options_t * | opt | ) |
Destroy audio options.
| opt | Audio options |
1.5.5