@@ -33,25 +33,13 @@ AudioInputPulse::AudioInputPulse(pa_context* context, pa_threaded_mainloop* main
33
33
remainingDataSize=0 ;
34
34
35
35
pa_threaded_mainloop_lock (mainloop);
36
- pa_sample_spec sample_specifications{
37
- .format =PA_SAMPLE_S16LE,
38
- .rate =48000 ,
39
- .channels =1
40
- };
41
36
42
- pa_proplist* proplist=pa_proplist_new ();
43
- pa_proplist_sets (proplist, PA_PROP_FILTER_APPLY, " " ); // according to PA sources, this disables any possible filters
44
- stream=pa_stream_new_with_proplist (context, " libtgvoip capture" , &sample_specifications, NULL , proplist);
45
- pa_proplist_free (proplist);
37
+ stream=CreateAndInitStream ();
38
+ pa_threaded_mainloop_unlock (mainloop);
39
+ isLocked=false ;
46
40
if (!stream){
47
- LOGE (" Error initializing PulseAudio (pa_stream_new)" );
48
- failed=true ;
49
41
return ;
50
42
}
51
- pa_stream_set_state_callback (stream, AudioInputPulse::StreamStateCallback, this );
52
- pa_stream_set_read_callback (stream, AudioInputPulse::StreamReadCallback, this );
53
- pa_threaded_mainloop_unlock (mainloop);
54
- isLocked=false ;
55
43
56
44
SetCurrentDevice (devID);
57
45
}
@@ -63,6 +51,26 @@ AudioInputPulse::~AudioInputPulse(){
63
51
}
64
52
}
65
53
54
+ pa_stream* AudioInputPulse::CreateAndInitStream (){
55
+ pa_sample_spec sampleSpec{
56
+ .format =PA_SAMPLE_S16LE,
57
+ .rate =48000 ,
58
+ .channels =1
59
+ };
60
+ pa_proplist* proplist=pa_proplist_new ();
61
+ pa_proplist_sets (proplist, PA_PROP_FILTER_APPLY, " " ); // according to PA sources, this disables any possible filters
62
+ pa_stream* stream=pa_stream_new_with_proplist (context, " libtgvoip capture" , &sampleSpec, NULL , proplist);
63
+ pa_proplist_free (proplist);
64
+ if (!stream){
65
+ LOGE (" Error initializing PulseAudio (pa_stream_new)" );
66
+ failed=true ;
67
+ return NULL ;
68
+ }
69
+ pa_stream_set_state_callback (stream, AudioInputPulse::StreamStateCallback, this );
70
+ pa_stream_set_read_callback (stream, AudioInputPulse::StreamReadCallback, this );
71
+ return stream;
72
+ }
73
+
66
74
void AudioInputPulse::Start (){
67
75
if (failed || isRecording)
68
76
return ;
@@ -92,7 +100,9 @@ void AudioInputPulse::SetCurrentDevice(std::string devID){
92
100
currentDevice=devID;
93
101
if (isRecording && isConnected){
94
102
pa_stream_disconnect (stream);
103
+ pa_stream_unref (stream);
95
104
isConnected=false ;
105
+ stream=CreateAndInitStream ();
96
106
}
97
107
98
108
pa_buffer_attr bufferAttr={
@@ -105,16 +115,20 @@ void AudioInputPulse::SetCurrentDevice(std::string devID){
105
115
int streamFlags=PA_STREAM_START_CORKED | PA_STREAM_INTERPOLATE_TIMING | PA_STREAM_AUTO_TIMING_UPDATE | PA_STREAM_ADJUST_LATENCY;
106
116
107
117
int err=pa_stream_connect_record (stream, devID==" default" ? NULL : devID.c_str (), &bufferAttr, (pa_stream_flags_t )streamFlags);
108
- if (err!=0 && devID!=" default" ){
109
- SetCurrentDevice (" default" );
110
- return ;
118
+ if (err!=0 ){
119
+ pa_threaded_mainloop_unlock (mainloop);
120
+ /* if(devID!="default"){
121
+ SetCurrentDevice("default");
122
+ return;
123
+ }*/
111
124
}
112
125
CHECK_ERROR (err, " pa_stream_connect_record" );
113
126
114
127
while (true ){
115
128
pa_stream_state_t streamState=pa_stream_get_state (stream);
116
129
if (!PA_STREAM_IS_GOOD (streamState)){
117
130
LOGE (" Error connecting to audio device '%s'" , devID.c_str ());
131
+ pa_threaded_mainloop_unlock (mainloop);
118
132
failed=true ;
119
133
return ;
120
134
}
0 commit comments