├── .gitignore ├── CMakeLists.txt ├── Readme.md ├── autoapp ├── CMakeLists.txt ├── UI │ ├── ConnectDialog.cpp │ ├── MainWindow.cpp │ ├── SettingsWindow.cpp │ ├── connectdialog.ui │ ├── mainwindow.ui │ └── settingswindow.ui ├── assets │ ├── aa_video.qml │ ├── ico_androidauto.png │ ├── ico_info.png │ ├── ico_setting.png │ ├── ico_warning.png │ └── resources.qrc └── autoapp.cpp ├── btservice ├── AndroidBluetoothServer.cpp ├── AndroidBluetoothService.cpp └── btservice.cpp ├── btservice_proto ├── CMakeLists.txt ├── NetworkInfo.proto ├── SocketInfoRequest.proto └── SocketInfoResponse.proto ├── cmake_modules ├── FindGObject.cmake ├── FindGStreamer.cmake ├── Findaasdk.cmake ├── Findh264.cmake ├── Findlibomx.cmake ├── Findlibusb-1.0.cmake ├── Findrtaudio.cmake ├── functions.cmake └── gitversion.cmake ├── include ├── OpenautoLog.hpp ├── autoapp │ └── UI │ │ ├── ConnectDialog.hpp │ │ ├── MainWindow.hpp │ │ └── SettingsWindow.hpp ├── btservice │ ├── AndroidBluetoothServer.hpp │ ├── AndroidBluetoothService.hpp │ ├── IAndroidBluetoothServer.hpp │ ├── IAndroidBluetoothService.hpp │ └── btservice.hpp └── openauto │ ├── App.hpp │ ├── Configuration │ ├── AudioOutputBackendType.hpp │ ├── BluetootAdapterType.hpp │ ├── Configuration.hpp │ ├── HandednessOfTrafficType.hpp │ ├── IConfiguration.hpp │ ├── IRecentAddressesList.hpp │ └── RecentAddressesList.hpp │ ├── Projection │ ├── DummyBluetoothDevice.hpp │ ├── GSTVideoOutput.hpp │ ├── IAudioInput.hpp │ ├── IAudioOutput.hpp │ ├── IBluetoothDevice.hpp │ ├── IInputDevice.hpp │ ├── IInputDeviceEventHandler.hpp │ ├── IVideoOutput.hpp │ ├── InputDevice.hpp │ ├── InputEvent.hpp │ ├── LocalBluetoothDevice.hpp │ ├── OMXVideoOutput.hpp │ ├── QtAudioInput.hpp │ ├── QtAudioOutput.hpp │ ├── QtVideoOutput.hpp │ ├── RemoteBluetoothDevice.hpp │ ├── RtAudioOutput.hpp │ ├── SequentialBuffer.hpp │ └── VideoOutput.hpp │ └── Service │ ├── AndroidAutoEntity.hpp │ ├── AndroidAutoEntityFactory.hpp │ ├── AudioInputService.hpp │ ├── AudioService.hpp │ ├── BluetoothService.hpp │ ├── IAndroidAutoEntity.hpp │ ├── IAndroidAutoEntityEventHandler.hpp │ ├── IAndroidAutoEntityFactory.hpp │ ├── IAndroidAutoInterface.hpp │ ├── IPinger.hpp │ ├── IService.hpp │ ├── IServiceFactory.hpp │ ├── InputService.hpp │ ├── MediaAudioService.hpp │ ├── MediaStatusService.hpp │ ├── NavigationStatusService.hpp │ ├── Pinger.hpp │ ├── SensorService.hpp │ ├── ServiceFactory.hpp │ ├── SpeechAudioService.hpp │ ├── SystemAudioService.hpp │ └── VideoService.hpp └── openauto ├── App.cpp ├── CMakeLists.txt ├── Configuration ├── Configuration.cpp └── RecentAddressesList.cpp ├── Projection ├── DummyBluetoothDevice.cpp ├── GSTVideoOutput.cpp ├── InputDevice.cpp ├── LocalBluetoothDevice.cpp ├── OMXVideoOutput.cpp ├── QtAudioInput.cpp ├── QtAudioOutput.cpp ├── QtVideoOutput.cpp ├── RemoteBluetoothDevice.cpp ├── RtAudioOutput.cpp ├── SequentialBuffer.cpp └── VideoOutput.cpp └── Service ├── AndroidAutoEntity.cpp ├── AndroidAutoEntityFactory.cpp ├── AudioInputService.cpp ├── AudioService.cpp ├── BluetoothService.cpp ├── InputService.cpp ├── MediaAudioService.cpp ├── MediaStatusService.cpp ├── NavigationStatusService.cpp ├── Pinger.cpp ├── SensorService.cpp ├── ServiceFactory.cpp ├── SpeechAudioService.cpp ├── SystemAudioService.cpp └── VideoService.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/Readme.md -------------------------------------------------------------------------------- /autoapp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/CMakeLists.txt -------------------------------------------------------------------------------- /autoapp/UI/ConnectDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/UI/ConnectDialog.cpp -------------------------------------------------------------------------------- /autoapp/UI/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/UI/MainWindow.cpp -------------------------------------------------------------------------------- /autoapp/UI/SettingsWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/UI/SettingsWindow.cpp -------------------------------------------------------------------------------- /autoapp/UI/connectdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/UI/connectdialog.ui -------------------------------------------------------------------------------- /autoapp/UI/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/UI/mainwindow.ui -------------------------------------------------------------------------------- /autoapp/UI/settingswindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/UI/settingswindow.ui -------------------------------------------------------------------------------- /autoapp/assets/aa_video.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/assets/aa_video.qml -------------------------------------------------------------------------------- /autoapp/assets/ico_androidauto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/assets/ico_androidauto.png -------------------------------------------------------------------------------- /autoapp/assets/ico_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/assets/ico_info.png -------------------------------------------------------------------------------- /autoapp/assets/ico_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/assets/ico_setting.png -------------------------------------------------------------------------------- /autoapp/assets/ico_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/assets/ico_warning.png -------------------------------------------------------------------------------- /autoapp/assets/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/assets/resources.qrc -------------------------------------------------------------------------------- /autoapp/autoapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/autoapp/autoapp.cpp -------------------------------------------------------------------------------- /btservice/AndroidBluetoothServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/btservice/AndroidBluetoothServer.cpp -------------------------------------------------------------------------------- /btservice/AndroidBluetoothService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/btservice/AndroidBluetoothService.cpp -------------------------------------------------------------------------------- /btservice/btservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/btservice/btservice.cpp -------------------------------------------------------------------------------- /btservice_proto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/btservice_proto/CMakeLists.txt -------------------------------------------------------------------------------- /btservice_proto/NetworkInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/btservice_proto/NetworkInfo.proto -------------------------------------------------------------------------------- /btservice_proto/SocketInfoRequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/btservice_proto/SocketInfoRequest.proto -------------------------------------------------------------------------------- /btservice_proto/SocketInfoResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/btservice_proto/SocketInfoResponse.proto -------------------------------------------------------------------------------- /cmake_modules/FindGObject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/FindGObject.cmake -------------------------------------------------------------------------------- /cmake_modules/FindGStreamer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/FindGStreamer.cmake -------------------------------------------------------------------------------- /cmake_modules/Findaasdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/Findaasdk.cmake -------------------------------------------------------------------------------- /cmake_modules/Findh264.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/Findh264.cmake -------------------------------------------------------------------------------- /cmake_modules/Findlibomx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/Findlibomx.cmake -------------------------------------------------------------------------------- /cmake_modules/Findlibusb-1.0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/Findlibusb-1.0.cmake -------------------------------------------------------------------------------- /cmake_modules/Findrtaudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/Findrtaudio.cmake -------------------------------------------------------------------------------- /cmake_modules/functions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/functions.cmake -------------------------------------------------------------------------------- /cmake_modules/gitversion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/cmake_modules/gitversion.cmake -------------------------------------------------------------------------------- /include/OpenautoLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/OpenautoLog.hpp -------------------------------------------------------------------------------- /include/autoapp/UI/ConnectDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/autoapp/UI/ConnectDialog.hpp -------------------------------------------------------------------------------- /include/autoapp/UI/MainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/autoapp/UI/MainWindow.hpp -------------------------------------------------------------------------------- /include/autoapp/UI/SettingsWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/autoapp/UI/SettingsWindow.hpp -------------------------------------------------------------------------------- /include/btservice/AndroidBluetoothServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/btservice/AndroidBluetoothServer.hpp -------------------------------------------------------------------------------- /include/btservice/AndroidBluetoothService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/btservice/AndroidBluetoothService.hpp -------------------------------------------------------------------------------- /include/btservice/IAndroidBluetoothServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/btservice/IAndroidBluetoothServer.hpp -------------------------------------------------------------------------------- /include/btservice/IAndroidBluetoothService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/btservice/IAndroidBluetoothService.hpp -------------------------------------------------------------------------------- /include/btservice/btservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/btservice/btservice.hpp -------------------------------------------------------------------------------- /include/openauto/App.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/App.hpp -------------------------------------------------------------------------------- /include/openauto/Configuration/AudioOutputBackendType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Configuration/AudioOutputBackendType.hpp -------------------------------------------------------------------------------- /include/openauto/Configuration/BluetootAdapterType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Configuration/BluetootAdapterType.hpp -------------------------------------------------------------------------------- /include/openauto/Configuration/Configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Configuration/Configuration.hpp -------------------------------------------------------------------------------- /include/openauto/Configuration/HandednessOfTrafficType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Configuration/HandednessOfTrafficType.hpp -------------------------------------------------------------------------------- /include/openauto/Configuration/IConfiguration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Configuration/IConfiguration.hpp -------------------------------------------------------------------------------- /include/openauto/Configuration/IRecentAddressesList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Configuration/IRecentAddressesList.hpp -------------------------------------------------------------------------------- /include/openauto/Configuration/RecentAddressesList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Configuration/RecentAddressesList.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/DummyBluetoothDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/DummyBluetoothDevice.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/GSTVideoOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/GSTVideoOutput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/IAudioInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/IAudioInput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/IAudioOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/IAudioOutput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/IBluetoothDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/IBluetoothDevice.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/IInputDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/IInputDevice.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/IInputDeviceEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/IInputDeviceEventHandler.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/IVideoOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/IVideoOutput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/InputDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/InputDevice.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/InputEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/InputEvent.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/LocalBluetoothDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/LocalBluetoothDevice.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/OMXVideoOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/OMXVideoOutput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/QtAudioInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/QtAudioInput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/QtAudioOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/QtAudioOutput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/QtVideoOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/QtVideoOutput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/RemoteBluetoothDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/RemoteBluetoothDevice.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/RtAudioOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/RtAudioOutput.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/SequentialBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/SequentialBuffer.hpp -------------------------------------------------------------------------------- /include/openauto/Projection/VideoOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Projection/VideoOutput.hpp -------------------------------------------------------------------------------- /include/openauto/Service/AndroidAutoEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/AndroidAutoEntity.hpp -------------------------------------------------------------------------------- /include/openauto/Service/AndroidAutoEntityFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/AndroidAutoEntityFactory.hpp -------------------------------------------------------------------------------- /include/openauto/Service/AudioInputService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/AudioInputService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/AudioService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/AudioService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/BluetoothService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/BluetoothService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/IAndroidAutoEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/IAndroidAutoEntity.hpp -------------------------------------------------------------------------------- /include/openauto/Service/IAndroidAutoEntityEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/IAndroidAutoEntityEventHandler.hpp -------------------------------------------------------------------------------- /include/openauto/Service/IAndroidAutoEntityFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/IAndroidAutoEntityFactory.hpp -------------------------------------------------------------------------------- /include/openauto/Service/IAndroidAutoInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/IAndroidAutoInterface.hpp -------------------------------------------------------------------------------- /include/openauto/Service/IPinger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/IPinger.hpp -------------------------------------------------------------------------------- /include/openauto/Service/IService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/IService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/IServiceFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/IServiceFactory.hpp -------------------------------------------------------------------------------- /include/openauto/Service/InputService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/InputService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/MediaAudioService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/MediaAudioService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/MediaStatusService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/MediaStatusService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/NavigationStatusService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/NavigationStatusService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/Pinger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/Pinger.hpp -------------------------------------------------------------------------------- /include/openauto/Service/SensorService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/SensorService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/ServiceFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/ServiceFactory.hpp -------------------------------------------------------------------------------- /include/openauto/Service/SpeechAudioService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/SpeechAudioService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/SystemAudioService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/SystemAudioService.hpp -------------------------------------------------------------------------------- /include/openauto/Service/VideoService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/include/openauto/Service/VideoService.hpp -------------------------------------------------------------------------------- /openauto/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/App.cpp -------------------------------------------------------------------------------- /openauto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/CMakeLists.txt -------------------------------------------------------------------------------- /openauto/Configuration/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Configuration/Configuration.cpp -------------------------------------------------------------------------------- /openauto/Configuration/RecentAddressesList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Configuration/RecentAddressesList.cpp -------------------------------------------------------------------------------- /openauto/Projection/DummyBluetoothDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/DummyBluetoothDevice.cpp -------------------------------------------------------------------------------- /openauto/Projection/GSTVideoOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/GSTVideoOutput.cpp -------------------------------------------------------------------------------- /openauto/Projection/InputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/InputDevice.cpp -------------------------------------------------------------------------------- /openauto/Projection/LocalBluetoothDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/LocalBluetoothDevice.cpp -------------------------------------------------------------------------------- /openauto/Projection/OMXVideoOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/OMXVideoOutput.cpp -------------------------------------------------------------------------------- /openauto/Projection/QtAudioInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/QtAudioInput.cpp -------------------------------------------------------------------------------- /openauto/Projection/QtAudioOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/QtAudioOutput.cpp -------------------------------------------------------------------------------- /openauto/Projection/QtVideoOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/QtVideoOutput.cpp -------------------------------------------------------------------------------- /openauto/Projection/RemoteBluetoothDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/RemoteBluetoothDevice.cpp -------------------------------------------------------------------------------- /openauto/Projection/RtAudioOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/RtAudioOutput.cpp -------------------------------------------------------------------------------- /openauto/Projection/SequentialBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/SequentialBuffer.cpp -------------------------------------------------------------------------------- /openauto/Projection/VideoOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Projection/VideoOutput.cpp -------------------------------------------------------------------------------- /openauto/Service/AndroidAutoEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/AndroidAutoEntity.cpp -------------------------------------------------------------------------------- /openauto/Service/AndroidAutoEntityFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/AndroidAutoEntityFactory.cpp -------------------------------------------------------------------------------- /openauto/Service/AudioInputService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/AudioInputService.cpp -------------------------------------------------------------------------------- /openauto/Service/AudioService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/AudioService.cpp -------------------------------------------------------------------------------- /openauto/Service/BluetoothService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/BluetoothService.cpp -------------------------------------------------------------------------------- /openauto/Service/InputService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/InputService.cpp -------------------------------------------------------------------------------- /openauto/Service/MediaAudioService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/MediaAudioService.cpp -------------------------------------------------------------------------------- /openauto/Service/MediaStatusService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/MediaStatusService.cpp -------------------------------------------------------------------------------- /openauto/Service/NavigationStatusService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/NavigationStatusService.cpp -------------------------------------------------------------------------------- /openauto/Service/Pinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/Pinger.cpp -------------------------------------------------------------------------------- /openauto/Service/SensorService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/SensorService.cpp -------------------------------------------------------------------------------- /openauto/Service/ServiceFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/ServiceFactory.cpp -------------------------------------------------------------------------------- /openauto/Service/SpeechAudioService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/SpeechAudioService.cpp -------------------------------------------------------------------------------- /openauto/Service/SystemAudioService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/SystemAudioService.cpp -------------------------------------------------------------------------------- /openauto/Service/VideoService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openDsh/openauto/HEAD/openauto/Service/VideoService.cpp --------------------------------------------------------------------------------