Layout parameter components manually...Add parameter for input pass through. etc

This commit is contained in:
xenakios
2017-12-22 22:35:02 +02:00
parent 0052c77bbb
commit da6afcf05f
5 changed files with 105 additions and 32 deletions

View File

@ -55,6 +55,7 @@ const int cpi_capture_enabled = 26;
const int cpi_num_outchans = 27;
const int cpi_pause_enabled = 28;
const int cpi_max_capture_len = 29;
const int cpi_passthrough = 30;
class MyPropertiesFile
{
@ -141,12 +142,7 @@ public:
bool m_use_backgroundbuffering = true;
bool m_pass_input_through = false;
void setPreBufferAmount(int x);
int getPreBufferAmount()
{
if (m_use_backgroundbuffering==false)
return -1;
return m_prebuffer_amount;
}
int getPreBufferAmount();
private: