aboutsummaryrefslogtreecommitdiff
path: root/webrtc/examples/android/media_demo/res
diff options
context:
space:
mode:
Diffstat (limited to 'webrtc/examples/android/media_demo/res')
-rw-r--r--webrtc/examples/android/media_demo/res/drawable/logo.pngbin3305 -> 0 bytes
-rw-r--r--webrtc/examples/android/media_demo/res/layout/audiomenu.xml80
-rw-r--r--webrtc/examples/android/media_demo/res/layout/dropdownitems.xml17
-rw-r--r--webrtc/examples/android/media_demo/res/layout/mainmenu.xml26
-rw-r--r--webrtc/examples/android/media_demo/res/layout/settingsmenu.xml36
-rw-r--r--webrtc/examples/android/media_demo/res/menu/main_activity_actions.xml5
-rw-r--r--webrtc/examples/android/media_demo/res/values/bools.xml13
-rw-r--r--webrtc/examples/android/media_demo/res/values/integers.xml13
-rw-r--r--webrtc/examples/android/media_demo/res/values/strings.xml41
9 files changed, 0 insertions, 231 deletions
diff --git a/webrtc/examples/android/media_demo/res/drawable/logo.png b/webrtc/examples/android/media_demo/res/drawable/logo.png
deleted file mode 100644
index 1ff07d1102..0000000000
--- a/webrtc/examples/android/media_demo/res/drawable/logo.png
+++ /dev/null
Binary files differ
diff --git a/webrtc/examples/android/media_demo/res/layout/audiomenu.xml b/webrtc/examples/android/media_demo/res/layout/audiomenu.xml
deleted file mode 100644
index f35547062a..0000000000
--- a/webrtc/examples/android/media_demo/res/layout/audiomenu.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical">
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:textSize="24dip"
- android:text="Audio Settings">
- </TextView>
- <TextView android:layout_height="wrap_content"
- android:layout_gravity="bottom"
- android:layout_width="wrap_content"
- android:text="@string/codecType">
- </TextView>
- <Spinner android:id="@+id/spAudioCodecType"
- android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- </Spinner>
- <LinearLayout android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/aTxPort">
- </TextView>
- <EditText android:id="@+id/etATxPort"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:imeOptions="actionDone"
- android:inputType="number">
- </EditText>
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/aRxPort">
- </TextView>
- <EditText android:id="@+id/etARxPort"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:imeOptions="actionDone"
- android:inputType="number">
- </EditText>
- </LinearLayout>
- <LinearLayout android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- <CheckBox android:id="@+id/cbAecm"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/aecm">
- </CheckBox>
- <CheckBox android:id="@+id/cbNoiseSuppression"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/noiseSuppression">
- </CheckBox>
- <CheckBox android:id="@+id/cbAutoGainControl"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/autoGainControl">
- </CheckBox>
- </LinearLayout>
- <LinearLayout android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- <CheckBox android:id="@+id/cbSpeaker"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/speaker">
- </CheckBox>
- <CheckBox android:id="@+id/cbDebugRecording"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/debugRecording">
- </CheckBox>
- <CheckBox android:id="@+id/cbAudioRTPDump"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/rtpDump">
- </CheckBox>
- </LinearLayout>
-</LinearLayout> \ No newline at end of file
diff --git a/webrtc/examples/android/media_demo/res/layout/dropdownitems.xml b/webrtc/examples/android/media_demo/res/layout/dropdownitems.xml
deleted file mode 100644
index 1014612000..0000000000
--- a/webrtc/examples/android/media_demo/res/layout/dropdownitems.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:padding="3dip">
- <TextView android:id="@+id/spinner_row"
- android:layout_toRightOf="@+id/image"
- android:padding="3dip"
- android:layout_marginTop="2dip"
- android:textColor="#FFF"
- android:textStyle="bold"
- android:text="description"
- android:layout_marginLeft="5dip"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
-</RelativeLayout> \ No newline at end of file
diff --git a/webrtc/examples/android/media_demo/res/layout/mainmenu.xml b/webrtc/examples/android/media_demo/res/layout/mainmenu.xml
deleted file mode 100644
index 89f5399df7..0000000000
--- a/webrtc/examples/android/media_demo/res/layout/mainmenu.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="120dip"
- android:layout_height="fill_parent">
- <TextView android:id="@+id/tvStats"
- android:layout_width="fill_parent"
- android:layout_height="60dip"
- android:textSize="6sp"
- android:text=""/>
- <Button android:id="@+id/btStats"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom"
- android:text="@string/stats"/>
- <Button android:id="@+id/btStartStopCall"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom"/>
- </LinearLayout>
-</LinearLayout> \ No newline at end of file
diff --git a/webrtc/examples/android/media_demo/res/layout/settingsmenu.xml b/webrtc/examples/android/media_demo/res/layout/settingsmenu.xml
deleted file mode 100644
index 4fba57eadc..0000000000
--- a/webrtc/examples/android/media_demo/res/layout/settingsmenu.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_gravity="right"
- android:orientation="vertical">
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:textSize="24dip"
- android:text="@string/gSettings">
- </TextView>
- <LinearLayout android:orientation="horizontal"
- android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- <CheckBox android:id="@+id/cbAudio"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/enableAudio">
- </CheckBox>
- <CheckBox android:id="@+id/cbLoopback"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/loopback">
- </CheckBox>
- </LinearLayout>
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/remoteIp">
- </TextView>
- <EditText android:id="@+id/etRemoteIp"
- android:layout_height="wrap_content"
- android:layout_width="fill_parent"
- android:imeOptions="actionDone">
- </EditText>
-</LinearLayout> \ No newline at end of file
diff --git a/webrtc/examples/android/media_demo/res/menu/main_activity_actions.xml b/webrtc/examples/android/media_demo/res/menu/main_activity_actions.xml
deleted file mode 100644
index a4921a6bbe..0000000000
--- a/webrtc/examples/android/media_demo/res/menu/main_activity_actions.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<menu xmlns:android="http://schemas.android.com/apk/res/android" >
- <item android:id="@+id/action_exit"
- android:icon="@drawable/logo"
- android:title="Exit"/>
-</menu> \ No newline at end of file
diff --git a/webrtc/examples/android/media_demo/res/values/bools.xml b/webrtc/examples/android/media_demo/res/values/bools.xml
deleted file mode 100644
index d4f3fc0e95..0000000000
--- a/webrtc/examples/android/media_demo/res/values/bools.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <bool name="apm_debug_enabled_default">false</bool>
- <bool name="audio_enabled_default">true</bool>
- <bool name="loopback_enabled_default">true</bool>
- <bool name="nack_enabled_default">true</bool>
- <bool name="opengl_enabled_default">true</bool>
- <bool name="speaker_enabled_default">false</bool>
- <bool name="stats_enabled_default">true</bool>
- <bool name="trace_enabled_default">true</bool>
- <bool name="video_receive_enabled_default">true</bool>
- <bool name="video_send_enabled_default">true</bool>
-</resources> \ No newline at end of file
diff --git a/webrtc/examples/android/media_demo/res/values/integers.xml b/webrtc/examples/android/media_demo/res/values/integers.xml
deleted file mode 100644
index 562643b5f2..0000000000
--- a/webrtc/examples/android/media_demo/res/values/integers.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <integer name="aRxPortDefault">11113</integer>
- <integer name="aTxPortDefault">11113</integer>
- <integer name="openGl">0</integer>
- <integer name="surfaceView">1</integer>
- <integer name="mediaCodec">2</integer>
- <integer name="defaultView">0</integer>
- <integer name="call_restart_periodicity_ms">0</integer>
- <integer name="video_codec_default">0</integer>
- <integer name="vRxPortDefault">11111</integer>
- <integer name="vTxPortDefault">11111</integer>
-</resources> \ No newline at end of file
diff --git a/webrtc/examples/android/media_demo/res/values/strings.xml b/webrtc/examples/android/media_demo/res/values/strings.xml
deleted file mode 100644
index 297d289b0c..0000000000
--- a/webrtc/examples/android/media_demo/res/values/strings.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <string name="aecm">AECM</string>
- <string name="appName">WebRTC Engine Demo</string>
- <string name="aRxPort">Audio Rx Port</string>
- <string name="aTxPort">Audio Tx Port</string>
- <string name="autoGainControl">AGC</string>
- <string name="backCamera">SwitchToBack</string>
- <string name="codecSize">Codec Size</string>
- <string name="codecType">Codec Type</string>
- <string name="debugRecording">APMRecord</string>
- <string name="demoTitle">Video Engine Android Demo</string>
- <string name="enableVideoReceive">Video Receive</string>
- <string name="enableVideoSend">Video Send</string>
- <string name="enableAudio">Audio</string>
- <string name="error">Error</string>
- <string name="errorCamera">Camera Error</string>
- <string name="exit">Exit</string>
- <string name="frontCamera">SwitchToFront</string>
- <string name="gSettings">Global Settings</string>
- <string name="loopback">Loopback</string>
- <string name="loopbackIp">127.0.0.1</string>
- <string name="nack">NACK</string>
- <string name="noiseSuppression">NS</string>
- <string name="remoteIp">Remote IP address</string>
- <string name="rtpDump">rtpdump</string>
- <string name="speaker">Speaker</string>
- <string name="startBoth">Start Both</string>
- <string name="startCall">StartCall</string>
- <string name="startListen">Start Listen</string>
- <string name="startSend">Start Send</string>
- <string name="stats">Stats</string>
- <string name="statsOn">Stats on</string>
- <string name="statsOff">Stats off</string>
- <string name="stopCall">StopCall</string>
- <string name="surfaceView">SurfaceView</string>
- <string name="tag">WEBRTC</string>
- <string name="vRxPort">Video Rx Port</string>
- <string name="vSettings">Video Settings</string>
- <string name="vTxPort">Video Tx Port</string>
-</resources>