aboutsummaryrefslogtreecommitdiff
path: root/include/sound.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-03-04 12:57:30 +0100
committerdec05eba <dec05eba@protonmail.com>2023-03-04 12:57:30 +0100
commit3413f193c1951cb724eb563f4beab472971e73c8 (patch)
tree6d854945723f2cc0d9bbfc29db8cb19e541127b1 /include/sound.hpp
parent74a5fb9dfbfab90f6e711c1763958cdcf380e77b (diff)
Add opus/flac audio options (only supported my mp4/mkv)
Diffstat (limited to 'include/sound.hpp')
-rw-r--r--include/sound.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/sound.hpp b/include/sound.hpp
index 6ffa6c5..9ff6b32 100644
--- a/include/sound.hpp
+++ b/include/sound.hpp
@@ -35,13 +35,18 @@ struct MergedAudioInputs {
std::vector<AudioInput> audio_inputs;
};
+typedef enum {
+ S16,
+ S32
+} AudioFormat;
+
/*
Get a sound device by name, returning the device into the @device parameter.
The device should be closed with @sound_device_close after it has been used
to clean up internal resources.
Returns 0 on success, or a negative value on failure.
*/
-int sound_device_get_by_name(SoundDevice *device, const char *device_name, const char *description, unsigned int num_channels, unsigned int period_frame_size);
+int sound_device_get_by_name(SoundDevice *device, const char *device_name, const char *description, unsigned int num_channels, unsigned int period_frame_size, AudioFormat audio_format);
void sound_device_close(SoundDevice *device);