mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-04 07:25:16 +00:00
We don't need jitter stats logging in production anyway
// FREEBIE
This commit is contained in:
parent
8d4f3803df
commit
5b08be8d01
@ -29,7 +29,7 @@ int WebRtcJitterBuffer::init() {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
pthread_create(&stats, NULL, &WebRtcJitterBuffer::collectStats, this);
|
// pthread_create(&stats, NULL, &WebRtcJitterBuffer::collectStats, this);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -67,12 +67,12 @@ int WebRtcJitterBuffer::getAudio(short *rawData, int maxRawData) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void WebRtcJitterBuffer::stop() {
|
void WebRtcJitterBuffer::stop() {
|
||||||
pthread_mutex_lock(&lock);
|
// pthread_mutex_lock(&lock);
|
||||||
running = 0;
|
running = 0;
|
||||||
pthread_cond_signal(&condition);
|
// pthread_cond_signal(&condition);
|
||||||
pthread_mutex_unlock(&lock);
|
// pthread_mutex_unlock(&lock);
|
||||||
|
|
||||||
pthread_join(stats, NULL);
|
// pthread_join(stats, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebRtcJitterBuffer::collectStats() {
|
void WebRtcJitterBuffer::collectStats() {
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -166,6 +166,7 @@ public class RedPhone extends Activity {
|
|||||||
Log.w(TAG, "Termination Stack:", new Exception());
|
Log.w(TAG, "Termination Stack:", new Exception());
|
||||||
|
|
||||||
callScreen.setActiveCall(recipient, getString(R.string.RedPhone_ending_call));
|
callScreen.setActiveCall(recipient, getString(R.string.RedPhone_ending_call));
|
||||||
|
EventBus.getDefault().removeStickyEvent(RedPhoneEvent.class);
|
||||||
|
|
||||||
delayedFinish();
|
delayedFinish();
|
||||||
}
|
}
|
||||||
|
@ -121,6 +121,7 @@ public class RedPhoneService extends Service implements CallStateListener, CallS
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onStart(Intent intent, int startId) {
|
public void onStart(Intent intent, int startId) {
|
||||||
|
Log.w(TAG, "onStart(): " + intent);
|
||||||
if (intent == null) return;
|
if (intent == null) return;
|
||||||
new Thread(new IntentRunnable(intent)).start();
|
new Thread(new IntentRunnable(intent)).start();
|
||||||
}
|
}
|
||||||
@ -148,6 +149,7 @@ public class RedPhoneService extends Service implements CallStateListener, CallS
|
|||||||
else if (intent.getAction().equals(ACTION_DENY_CALL)) handleDenyCall(intent);
|
else if (intent.getAction().equals(ACTION_DENY_CALL)) handleDenyCall(intent);
|
||||||
else if (intent.getAction().equals(ACTION_HANGUP_CALL)) handleHangupCall(intent);
|
else if (intent.getAction().equals(ACTION_HANGUP_CALL)) handleHangupCall(intent);
|
||||||
else if (intent.getAction().equals(ACTION_SET_MUTE)) handleSetMute(intent);
|
else if (intent.getAction().equals(ACTION_SET_MUTE)) handleSetMute(intent);
|
||||||
|
else Log.w(TAG, "Unhandled intent: " + intent.getAction() + ", state: " + state);
|
||||||
}
|
}
|
||||||
|
|
||||||
///// Initializers
|
///// Initializers
|
||||||
|
Loading…
Reference in New Issue
Block a user