
- stopCPULoad is incorrect; since mIsBackgroudLoadRunning isn't declared volatile, the empty while loop in the background thread isn't required to do a memory read (as opposed to reading the value just once and caching it). The result is that stopCPULoad() may never return as the .join() waits forever. - startCPULoad isn't guaranteed to tax the CPU; the JVM is free to replace the while loop in startCPULoad() with a thread pause since it can prove it'll never exit the loop once entered (b/c of the previous item). It's not clear what correct behavior here would be so I'm deleting the code rather than trying to make it work. This was responsible for at least most if not all of the hanginess of start/stop'ing multiple calls in series. BUG=1162 Review URL: https://webrtc-codereview.appspot.com/972008 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3202 4adac7df-926f-26a2-2b94-8c16560cd09d
41 lines
1.7 KiB
XML
41 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<string name="app_name">WebRTC</string>
|
|
<string name="error">Error</string>
|
|
<string name="errorCamera">Camera Error</string>
|
|
<string name="codectype_prompt">Choose a codec type</string>
|
|
<string name="demoTitle">Video Engine Android Demo</string>
|
|
<string name="codecType">Codec Type</string>
|
|
<string name="codecSize">Codec Size</string>
|
|
<string name="remoteIp">Remote IP address</string>
|
|
<string name="loopback">Loopback</string>
|
|
<string name="stats">Stats</string>
|
|
<string name="startListen">Start Listen</string>
|
|
<string name="startSend">Start Send</string>
|
|
<string name="startBoth">Start Both</string>
|
|
<string name="enableVoice">Voice</string>
|
|
<string name="enableVideoReceive">Video Receive</string>
|
|
<string name="enableVideoSend">Video Send</string>
|
|
<string name="gSettings">Global Settings</string>
|
|
<string name="vSettings">Video Settings</string>
|
|
<string name="vTxPort">Video Tx Port</string>
|
|
<string name="vRxPort">Video Rx Port</string>
|
|
<string name="aTxPort">Audio Tx Port</string>
|
|
<string name="aRxPort">Audio Rx Port</string>
|
|
<string name="AutoGainControl">AGC</string>
|
|
<string name="VoiceActivityDetection">VAD</string>
|
|
<string name="AECM">AECM</string>
|
|
<string name="NoiseSuppression">NS</string>
|
|
<string name="nack">NACK</string>
|
|
<string name="frontCamera">SwitchToFront</string>
|
|
<string name="backCamera">SwitchToBack</string>
|
|
<string name="startCall">StartCall</string>
|
|
<string name="stopCall">StopCall</string>
|
|
<string name="exit">Exit</string>
|
|
<string name="speaker">Speaker</string>
|
|
<string name="debugrecording">APMRecord</string>
|
|
<string name="rtpdump">rtpdump</string>
|
|
<string name="surfaceview">SurfaceView</string>
|
|
<string name="opengl">OpenGL</string>
|
|
</resources>
|