Skip to content

Commit

Permalink
Implemented audio support with a newer version of FreeRDP.
Browse files Browse the repository at this point in the history
  • Loading branch information
iiordanov committed Jan 9, 2015
1 parent 537eb95 commit 26e3a2f
Show file tree
Hide file tree
Showing 16 changed files with 218 additions and 22 deletions.
3 changes: 2 additions & 1 deletion eclipse_projects/PubkeyGenerator/.classpath
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
3 changes: 2 additions & 1 deletion eclipse_projects/ZoomerWithKeys/.classpath
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
3 changes: 2 additions & 1 deletion eclipse_projects/bVNC/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="lib" path="libs/com.antlersoft.android.db.jar" sourcepath="/home/mike/src/eclipse-workspaces/android/dbimpl/src"/>
<classpathentry kind="lib" path="libs/com.antlersoft.android.contentxml.jar" sourcepath="/dbimpl/src"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="src" path="src"/>
<classpathentry combineaccessrules="false" kind="src" path="/ZoomerWithKeys"/>
<classpathentry combineaccessrules="false" kind="src" path="/PubkeyGenerator"/>
<classpathentry combineaccessrules="false" kind="src" path="/FreeRDPCore"/>
<classpathentry kind="src" path="gen"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
3 changes: 2 additions & 1 deletion eclipse_projects/bVNC/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.iiordanov.bVNC" android:installLocation="auto"
android:versionCode="3740" android:versionName="v3.7.4">
android:versionCode="3750" android:versionName="v3.7.5">

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="10"></uses-sdk>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<!--MODIFY_AUDIO_SETTINGS-->
<!--RECORD_AUDIO-->
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<uses-feature android:name="android.hardware.microphone" android:required="false"/>
Expand Down
2 changes: 1 addition & 1 deletion eclipse_projects/bVNC/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=android-17
target=android-21
android.library.reference.1=../ZoomerWithKeys
android.library.reference.2=../PubkeyGenerator
android.library.reference.3=../../../FreeRDP/client/Android/FreeRDPCore
35 changes: 35 additions & 0 deletions eclipse_projects/bVNC/res/layout-large/main_rdp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,41 @@ android:layout_height="fill_parent">
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
<RadioGroup
android:id="@+id/groupRemoteSoundType"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/radioRemoteSoundDisabled"
android:text="@string/remote_sound_disabled"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="remoteSoundTypeToggled"/>
<RadioButton
android:id="@+id/radioRemoteSoundOnServer"
android:text="@string/remote_sound_on_server"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="remoteSoundTypeToggled"/>
<RadioButton
android:id="@+id/radioRemoteSoundOnDevice"
android:text="@string/remote_sound_on_device"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="remoteSoundTypeToggled"/>
</RadioGroup>
<CheckBox
android:id="@+id/checkboxEnableRecording"
android:text="@string/enable_recording"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="wrap_content"
android:gravity="left|center_vertical"
android:layout_height="wrap_content"
android:onClick="toggleEnableRecording"/>
<CheckBox
android:id="@+id/checkboxConsoleMode"
android:text="@string/rdp_adv_console_mode"
Expand Down
35 changes: 35 additions & 0 deletions eclipse_projects/bVNC/res/layout/main_rdp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,41 @@ android:layout_height="fill_parent">
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
<RadioGroup
android:id="@+id/groupRemoteSoundType"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/radioRemoteSoundDisabled"
android:text="@string/remote_sound_disabled"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="remoteSoundTypeToggled"/>
<RadioButton
android:id="@+id/radioRemoteSoundOnServer"
android:text="@string/remote_sound_on_server"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="remoteSoundTypeToggled"/>
<RadioButton
android:id="@+id/radioRemoteSoundOnDevice"
android:text="@string/remote_sound_on_device"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="remoteSoundTypeToggled"/>
</RadioGroup>
<CheckBox
android:id="@+id/checkboxEnableRecording"
android:text="@string/enable_recording"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:gravity="left|center_vertical"
android:layout_height="wrap_content"
android:onClick="toggleEnableRecording"/>
<CheckBox
android:id="@+id/checkboxConsoleMode"
android:text="@string/rdp_adv_console_mode"
Expand Down
7 changes: 6 additions & 1 deletion eclipse_projects/bVNC/res/values-ru/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<string name="address_caption_hint_tunneled">VNC Сервер</string>
<string name="address_caption_ssh">SSH Сервер</string>
<string name="address_caption_ssh_hint">SSH Сервер</string>
<string name="ad_donate_text_rdp">Pro версия ARDP теперь поддерживает перенаправление звука!</string>
<string name="ad_donate_text_spice">Pro версия aSPICE теперь поддерживает перенаправление USB! Просто приложите вашу OTG кабель перед подключением.</string>
<string name="ad_donate_text0">Pro версия теперь имеет очень нужную функциональность мастер-пароль, который предотвращает несанкционированное использование, а также защищает от кражи информации посредством шифрования все ваши настройки подключения, включая пароли и ключи безопасности. Включите его из главного меню. Если кнопка меню отсутствует, пожалуйста, долгое нажатие на кнопку, которая отображает запущенные приложения, чтобы получить меню.</string>
<string name="ad_donate_text1">Нажмите здесь, чтобы поддержать проект небольшим пожертвованием, купив PRO версию!</string>
Expand Down Expand Up @@ -108,13 +109,14 @@
<string name="dpad_as_arrows">Использовать D-Pad для стрелок и нажатие D-Pad для Ctrl.</string>
<string name="disconnect">Отключить</string>
<string name="enable_sound">Включить звук</string>
<string name="enable_recording">Включить запись</string>
<string name="error_no_user_hostname">Введите как минимум имя пользователя и имя хоста или его IP-адрес.</string>
<string name="error_uri_noinfo_nosave">Недостаточно информации, для подключения.</string>
<string name="error_vnc_authentication">Неуспешная VNC авторизация! Проверьте VNC пароль (и имя пользователя, если оно используется).</string>
<string name="error_out_of_memory">Не удалось выделить достаточное количество памяти, чтобы отобразить удаленный экран. Попробуйте перезапустить приложение или перезагрузить устройство. Вы также можете попробовать уменьшить размер удаленного рабочего стола в настройках приложения</string>
<string name="error_ovirt_unable_to_connect">Не удалось подключиться или авторизироваться, пожалуйста проверьте адрес сервера, имя пользователя, пароль, сертификат и объект.</string>
<string name="error_spice_unable_to_connect">Не удалось подключиться или авторизироваться, пожалуйста проверьте адрес сервера, имя пользователя, пароль, сертификат и объект.</string>
<string name="error_rdp_unable_to_connect">Не удалось подключиться к RDP-серверу! Пожалуйста, убедитесь что параметры RDP-сервера указаны правильно, сервер к которому вы подключаетесь включен, на нем разрешено подключение через RDP, и что сервер находится в пределах досягаемости сети</string>
<string name="error_rdp_unable_to_connect">Не удалось подключиться к RDP-серверу или аутентификации не удалось! Пожалуйста, убедитесь что параметры RDP-сервера указаны правильно, что имя пользователя или пароль верны, сервер к которому вы подключаетесь включен, на нем разрешено подключение через RDP, и что сервер находится в пределах досягаемости сети</string>
<string name="error_rdp_connection_failed">Подключение к RDP-серверу не удалось! Либо подключение к сети было прервано, сервер RDP был выключен или запрещен, или ваша сессия была отклонена.</string>
<string name="error_rdp_authentication_failed">Ошибка проверки пользователя и пароля RDP! Пожалуйста, проверьте имя пользователя и пароль RDP после чего, повторите попытку подключения.</string>
<string name="error_ssh_unable_to_connect">Не удалось подключиться к SSH серверу. Пожалуйста, проверьте подключение к сети, а так же адрес и порт SSH сервера.</string>
Expand Down Expand Up @@ -458,6 +460,9 @@
<string name="rdp_password_hint">RDP Пароль</string>
<string name="rdp_server_empty">RDP сервер или порт пусты. Соединение невозможно!</string>
<string name="rdp_username_hint">RDP Имя пользователя</string>
<string name="remote_sound_disabled">Звук отключен</string>
<string name="remote_sound_on_device">Звук на устройстве</string>
<string name="remote_sound_on_server">Звук на сервере</string>
<string name="repeater_button">UltraVNC Ретранслятор</string>
<string name="repeater_caption">ВАЖНО! При использовании VNC ретранслятора, введите его адрес вне этого диалога. Здесь введите фактический адрес и порт сервера VNC. Разделите адрес и порт VNC сервера с помодью двоеточия, пример: 192.168.0.100:5900.</string>
<string name="repeater_caption_hint">UltraVNC Ретранслятор</string>
Expand Down
7 changes: 6 additions & 1 deletion eclipse_projects/bVNC/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<string name="address_caption_hint_tunneled">VNC Server</string>
<string name="address_caption_ssh">SSH Server</string>
<string name="address_caption_ssh_hint">SSH Server</string>
<string name="ad_donate_text_rdp">The Pro version of aRDP now supports sound redirection!</string>
<string name="ad_donate_text_spice">The Pro version of aSPICE now supports USB redirection! Just attach your OTG cable prior to connecting.</string>
<string name="ad_donate_text0">The Pro version now has a much requested Master Password feature which prevents unauthorized use and also encrypts all connection settings including passwords and SSH keys to guard against theft. Enable it from the main Menu. If the Menu button is missing, please long-tap the running apps button for the Menu.</string>
<string name="ad_donate_text1">Tap here to support the project with a small donation by buying the Pro version.</string>
Expand Down Expand Up @@ -109,13 +110,14 @@
<string name="dpad_as_arrows">Use D-Pad for arrows and D-Pad click for Ctrl.</string>
<string name="disconnect">Disconnect</string>
<string name="enable_sound">Enable Sound</string>
<string name="enable_recording">Enable Recording</string>
<string name="error_no_user_hostname">Please enter at least a user and a hostname or IP address.</string>
<string name="error_uri_noinfo_nosave">Insufficent information specified to connect.</string>
<string name="error_vnc_authentication">VNC authentication failed! Check VNC password (and user if applicable).</string>
<string name="error_out_of_memory">Unable to allocate sufficient memory to draw remote screen. Try restarting the application, then restart your device. You can also try reducing the size of the remote desktop through the app settings.</string>
<string name="error_ovirt_unable_to_connect">Unable to connect or authenticate, please check server address, user, password, and cert authority and subject.</string>
<string name="error_spice_unable_to_connect">Unable to connect or authenticate, please check server address, password, and cert authority and subject.</string>
<string name="error_rdp_unable_to_connect">Could not connect to RDP server! Please ensure RDP Server setting is correct, the RDP server is turned on, RDP is enabled, and that the server is on the same network as this device.</string>
<string name="error_rdp_unable_to_connect">Could not connect to RDP server or authentication failed! Please ensure RDP Server setting and credentials are correct, the server is turned on, RDP is enabled, and that the server is on the same network as this device.</string>
<string name="error_rdp_connection_failed">RDP Connection failed! Either network connectivity was interrupted, the RDP server was turned off or disabled, or your session was taken over.</string>
<string name="error_rdp_authentication_failed">RDP Authentication failed! Please check the RDP username and password and try again.</string>
<string name="error_ssh_unable_to_connect">Failed to connect to SSH Server. Please check network connectivity, and SSH Server address and port.</string>
Expand Down Expand Up @@ -461,6 +463,9 @@ Known issues:
<string name="rdp_password_hint">RDP Password</string>
<string name="rdp_server_empty">RDP Server or port empty. Cannot connect!</string>
<string name="rdp_username_hint">RDP Username</string>
<string name="remote_sound_disabled">Sound Disabled</string>
<string name="remote_sound_on_device">Sound On Device</string>
<string name="remote_sound_on_server">Sound On Server</string>
<string name="repeater_button">UltraVNC Repeater</string>
<string name="repeater_caption">IMPORTANT: If using a UltraVNC repeater, enter its address and port outside this dialog. Here, enter the address and port of the actual VNC server. Separate the VNC server\'s address and port with a colon, e.g. 192.168.0.100:5900.</string>
<string name="repeater_caption_hint">UltraVNC Repeater</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ public class ConnectionBean extends AbstractConnectionBean implements Comparable
setConsoleMode(false);
setRedirectSdCard(false);
setEnableSound(false);
setEnableRecording(false);
setRemoteSoundType(Constants.REMOTE_SOUND_ON_DEVICE);
setViewOnly(false);
setLayoutMap("English (US)");
c = context;
Expand Down
7 changes: 7 additions & 0 deletions eclipse_projects/bVNC/src/com/iiordanov/bVNC/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ public class Constants {
public static final int SPICE_CONNECT_SUCCESS = 4;
public static final int SPICE_CONNECT_FAILURE = 5;
public static final int DIALOG_STUNNEL_CERT = 6;
public static final int RDP_CONNECT_FAILURE = 7;
public static final int RDP_UNABLE_TO_CONNECT = 8;
public static final int RDP_AUTH_FAILED = 9;

public static final int EXTRA_KEYS_OFF = 0;
public static final int EXTRA_KEYS_ON = 1;
Expand Down Expand Up @@ -181,6 +184,10 @@ public class Constants {
public static final int usbDeviceTimeout = 5000;
public static final int usbDevicePermissionTimeout = 15000;

public static final int REMOTE_SOUND_DISABLED = 0;
public static final int REMOTE_SOUND_ON_SERVER = 1;
public static final int REMOTE_SOUND_ON_DEVICE = 2;

/**
* Returns a string matching a session selection index
* @param index - index to convert
Expand Down
Loading

0 comments on commit 26e3a2f

Please sign in to comment.