Change test/Android to test/android
Review URL: http://webrtc-codereview.appspot.com/106003 git-svn-id: http://webrtc.googlecode.com/svn/trunk@350 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
0fe2627e6f
commit
a9b48c3b64
@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. -->
|
||||
<!-- -->
|
||||
<!-- Use of this source code is governed by a BSD-style license -->
|
||||
<!-- that can be found in the LICENSE file in the root of the source -->
|
||||
<!-- tree. An additional intellectual property rights grant can be found -->
|
||||
<!-- in the file PATENTS. All contributing project authors may -->
|
||||
<!-- be found in the AUTHORS file in the root of the source tree. -->
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0" package="org.webrtc.voiceengine.test">
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
|
||||
<activity android:name=".AndroidTest"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
<uses-sdk android:minSdkVersion="3" />
|
||||
|
||||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
</manifest>
|
@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. -->
|
||||
<!-- -->
|
||||
<!-- Use of this source code is governed by a BSD-style license -->
|
||||
<!-- that can be found in the LICENSE file in the root of the source -->
|
||||
<!-- tree. An additional intellectual property rights grant can be found -->
|
||||
<!-- in the file PATENTS. All contributing project authors may -->
|
||||
<!-- be found in the AUTHORS file in the root of the source tree. -->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
>
|
||||
|
||||
<TextView android:text="@+id/TextView01" android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
|
||||
<EditText android:text="@+id/EditText01" android:id="@+id/EditText01" android:layout_width="wrap_content" android:layout_height="wrap_content"></EditText><Button android:text="@+id/Button01" android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
|
||||
|
||||
|
||||
<Spinner android:id="@+id/Spinner01" android:layout_width="wrap_content" android:layout_height="wrap_content"></Spinner>
|
||||
<Spinner android:id="@+id/Spinner02" android:layout_width="wrap_content" android:layout_height="wrap_content"></Spinner><Button android:text="@+id/Button02" android:id="@+id/Button02" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
|
||||
</LinearLayout>
|
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. -->
|
||||
<!-- -->
|
||||
<!-- Use of this source code is governed by a BSD-style license -->
|
||||
<!-- that can be found in the LICENSE file in the root of the source -->
|
||||
<!-- tree. An additional intellectual property rights grant can be found -->
|
||||
<!-- in the file PATENTS. All contributing project authors may -->
|
||||
<!-- be found in the AUTHORS file in the root of the source tree. -->
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0" package="org.webrtc.voiceengine.test">
|
||||
<application android:icon="@drawable/icon"
|
||||
android:label="@string/app_name"
|
||||
android:debuggable="true">
|
||||
<activity android:name=".AndroidTest"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
<uses-sdk android:minSdkVersion="3" />
|
||||
|
||||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
</manifest>
|
@ -799,7 +799,7 @@ JNIEXPORT jint JNICALL Java_org_webrtc_voiceengine_test_AndroidTest_StartSend(
|
||||
return -1;
|
||||
} */
|
||||
|
||||
/* if (veData1.rtp_rtcp->SetFECStatus(channel, 1) != 0)
|
||||
/* if (veData1.rtp_rtcp->SetFECStatus(channel, 1) != 0)
|
||||
{
|
||||
__android_log_write(ANDROID_LOG_ERROR, WEBRTC_LOG_TAG,
|
||||
"Failed to enable FEC");
|
||||
@ -867,7 +867,7 @@ JNIEXPORT jint JNICALL Java_org_webrtc_voiceengine_test_AndroidTest_StopSend(
|
||||
jobject,
|
||||
jint channel)
|
||||
{
|
||||
/* if (veData1.rtp_rtcp->SetFECStatus(channel, 0) != 0)
|
||||
/* if (veData1.rtp_rtcp->SetFECStatus(channel, 0) != 0)
|
||||
{
|
||||
__android_log_write(ANDROID_LOG_ERROR, WEBRTC_LOG_TAG,
|
||||
"Failed to disable FEC");
|
||||
@ -1037,7 +1037,7 @@ Java_org_webrtc_voiceengine_test_AndroidTest_SetAGCStatus(
|
||||
break;
|
||||
}
|
||||
|
||||
/* AgcConfig agcConfig;
|
||||
/* AgcConfig agcConfig;
|
||||
agcConfig.targetLeveldBOv = 3;
|
||||
agcConfig.digitalCompressionGaindB = 50;
|
||||
agcConfig.limiterEnable = 0;
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. -->
|
||||
<!-- -->
|
||||
<!-- Use of this source code is governed by a BSD-style license -->
|
||||
<!-- that can be found in the LICENSE file in the root of the source -->
|
||||
<!-- tree. An additional intellectual property rights grant can be found -->
|
||||
<!-- in the file PATENTS. All contributing project authors may -->
|
||||
<!-- be found in the AUTHORS file in the root of the source tree. -->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<TextView android:text="@+id/TextView01"
|
||||
android:id="@+id/TextView01"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</TextView>
|
||||
<EditText android:text="@+id/EditText01"
|
||||
android:id="@+id/EditText01"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</EditText>
|
||||
<Button android:text="@+id/Button01"
|
||||
android:id="@+id/Button01"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</Button>
|
||||
<Spinner android:id="@+id/Spinner01"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</Spinner>
|
||||
<Spinner android:id="@+id/Spinner02"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</Spinner>
|
||||
<Button android:text="@+id/Button02"
|
||||
android:id="@+id/Button02"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</Button>
|
||||
</LinearLayout>
|
Loading…
x
Reference in New Issue
Block a user