Rename ViEAndroidDemo to WebRTCDemo
Desription: This CL will change VideoEngine application name to ViEAndroidDemo. This is the first step to refactor videoengine test application on android. "ViE" is not a proper name because the app also supports audio. And it's good to put WebRTC in application name. BUG= TEST=build on all trybots Review URL: https://webrtc-codereview.appspot.com/576006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2204 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
f6edfeff63
commit
de6a6b40fa
@ -13,7 +13,7 @@ include $(CLEAR_VARS)
|
||||
LOCAL_MODULE_TAGS := tests
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
src/org/webrtc/videoengineapp/ViEAndroidDemo.java \
|
||||
src/org/webrtc/videoengineapp/WebRTCDemo.java \
|
||||
src/org/webrtc/videoengineapp/ViEAndroidJavaAPI.java \
|
||||
src/org/webrtc/videoengineapp/IViEAndroidCallback.java \
|
||||
src/org/webrtc/videoengine/CaptureCapabilityAndroid.java \
|
||||
|
@ -4,7 +4,7 @@
|
||||
<application android:icon="@drawable/logo"
|
||||
android:label="@string/app_name"
|
||||
android:debuggable="true">
|
||||
<activity android:name=".ViEAndroidDemo"
|
||||
<activity android:name=".WebRTCDemo"
|
||||
android:label="@string/app_name"
|
||||
android:configChanges="keyboardHidden|orientation"
|
||||
>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="ViEAndroidDemo" default="help">
|
||||
<project name="WebRTCDemo" default="help">
|
||||
|
||||
<!-- The local.properties file is created and updated by the 'android' tool.
|
||||
It contains the path to the SDK. It should *NOT* be checked into
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">ViEDemo</string>
|
||||
<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>
|
||||
|
@ -50,7 +50,7 @@ import android.widget.AdapterView.OnItemSelectedListener;
|
||||
import android.widget.TabHost.TabSpec;
|
||||
import android.view.OrientationEventListener;
|
||||
|
||||
public class ViEAndroidDemo extends TabActivity implements IViEAndroidCallback,
|
||||
public class WebRTCDemo extends TabActivity implements IViEAndroidCallback,
|
||||
View.OnClickListener,
|
||||
OnItemSelectedListener {
|
||||
private ViEAndroidJavaAPI ViEAndroidAPI = null;
|
||||
@ -552,7 +552,7 @@ public class ViEAndroidDemo extends TabActivity implements IViEAndroidCallback,
|
||||
private void SetupVoE() {
|
||||
// Create VoiceEngine
|
||||
// Error logging is done in native API wrapper
|
||||
ViEAndroidAPI.VoE_Create(this);
|
||||
ViEAndroidAPI.VoE_Create();
|
||||
|
||||
// Initialize
|
||||
if (0 != ViEAndroidAPI.VoE_Init(enableTrace)) {
|
Loading…
x
Reference in New Issue
Block a user