mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-14 10:46:51 -07:00
Add Audio Buffer Size Setting
This commit is contained in:
parent
88db8c8840
commit
69f7c385c7
6 changed files with 54 additions and 1 deletions
|
@ -63,6 +63,19 @@ class Settings : public QObject
|
|||
unsigned int GetBitrate() const;
|
||||
void SetBitrate(unsigned int bitrate);
|
||||
|
||||
unsigned int GetAudioBufferSizeDefault() const;
|
||||
|
||||
/**
|
||||
* @return 0 if set to "automatic"
|
||||
*/
|
||||
unsigned int GetAudioBufferSizeRaw() const;
|
||||
|
||||
/**
|
||||
* @return actual size to be used, default value if GetAudioBufferSizeRaw() would return 0
|
||||
*/
|
||||
unsigned int GetAudioBufferSize() const;
|
||||
void SetAudioBufferSize(unsigned int size);
|
||||
|
||||
ChiakiConnectVideoProfile GetVideoProfile();
|
||||
|
||||
QList<RegisteredHost> GetRegisteredHosts() const { return registered_hosts.values(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue