├── .appveyor.yml ├── .builds ├── android.yml ├── common.yml ├── freebsd.yml └── openbsd.yml ├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── COPYING ├── LICENSES └── AGPL-3.0-only-OpenSSL.txt ├── README.md ├── android ├── .gitignore ├── app │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── audio-decoder.c │ │ ├── audio-decoder.h │ │ ├── audio-output.cpp │ │ ├── audio-output.h │ │ ├── chiaki-jni.c │ │ ├── chiaki-jni.h │ │ ├── circular-buf.hpp │ │ ├── circular-fifo.hpp │ │ ├── log.c │ │ ├── log.h │ │ ├── video-decoder.c │ │ └── video-decoder.h │ │ ├── java │ │ └── com │ │ │ └── metallic │ │ │ └── chiaki │ │ │ ├── common │ │ │ ├── AppDatabase.kt │ │ │ ├── DisplayHost.kt │ │ │ ├── LogManager.kt │ │ │ ├── MacAddress.kt │ │ │ ├── ManualHost.kt │ │ │ ├── Preferences.kt │ │ │ ├── RegisteredHost.kt │ │ │ ├── SerializedSettings.kt │ │ │ └── ext │ │ │ │ ├── RevealActivity.kt │ │ │ │ ├── RxLiveData.kt │ │ │ │ ├── StringHex.kt │ │ │ │ ├── ViewGroupInflate.kt │ │ │ │ └── ViewModelFactory.kt │ │ │ ├── discovery │ │ │ └── DiscoveryManager.kt │ │ │ ├── lib │ │ │ └── Chiaki.kt │ │ │ ├── main │ │ │ ├── DisplayHostRecyclerViewAdapter.kt │ │ │ ├── FloatingActionButtonBackgroundBehavior.kt │ │ │ ├── FloatingActionButtonSpeedDialBehavior.kt │ │ │ ├── MainActivity.kt │ │ │ └── MainViewModel.kt │ │ │ ├── manualconsole │ │ │ ├── EditManualConsoleActivity.kt │ │ │ └── EditManualConsoleViewModel.kt │ │ │ ├── regist │ │ │ ├── ChiakiRxLog.kt │ │ │ ├── RegistActivity.kt │ │ │ ├── RegistExecuteActivity.kt │ │ │ ├── RegistExecuteViewModel.kt │ │ │ └── RegistViewModel.kt │ │ │ ├── session │ │ │ ├── StreamInput.kt │ │ │ └── StreamSession.kt │ │ │ ├── settings │ │ │ ├── ItemTouchSwipeCallback.kt │ │ │ ├── SettingsActivity.kt │ │ │ ├── SettingsFragment.kt │ │ │ ├── SettingsLogsAdapter.kt │ │ │ ├── SettingsLogsFragment.kt │ │ │ ├── SettingsLogsViewModel.kt │ │ │ ├── SettingsRegisteredHostsAdapter.kt │ │ │ ├── SettingsRegisteredHostsFragment.kt │ │ │ ├── SettingsRegisteredHostsViewModel.kt │ │ │ └── SettingsViewModel.kt │ │ │ ├── stream │ │ │ ├── AspectRatioFrameLayout.kt │ │ │ ├── StreamActivity.kt │ │ │ └── StreamViewModel.kt │ │ │ └── touchcontrols │ │ │ ├── AnalogStickView.kt │ │ │ ├── ButtonHaptics.kt │ │ │ ├── ButtonView.kt │ │ │ ├── ControlsBackgroundView.kt │ │ │ ├── DPadView.kt │ │ │ ├── TouchControlsFragment.kt │ │ │ ├── TouchTracker.kt │ │ │ ├── TouchpadOnlyFragment.kt │ │ │ ├── TouchpadView.kt │ │ │ └── Vector.kt │ │ └── res │ │ ├── color │ │ ├── mage_text_input_box_stroke.xml │ │ └── stream_material_button_icon_tint.xml │ │ ├── drawable │ │ ├── avd_add_to_close.xml │ │ ├── avd_close_to_add.xml │ │ ├── control_analog_stick_base.xml │ │ ├── control_analog_stick_handle.xml │ │ ├── control_button_box.xml │ │ ├── control_button_box_pressed.xml │ │ ├── control_button_cross.xml │ │ ├── control_button_cross_pressed.xml │ │ ├── control_button_home.xml │ │ ├── control_button_home_pressed.xml │ │ ├── control_button_l1.xml │ │ ├── control_button_l1_pressed.xml │ │ ├── control_button_l2.xml │ │ ├── control_button_l2_pressed.xml │ │ ├── control_button_l3.xml │ │ ├── control_button_l3_pressed.xml │ │ ├── control_button_moon.xml │ │ ├── control_button_moon_pressed.xml │ │ ├── control_button_options.xml │ │ ├── control_button_options_pressed.xml │ │ ├── control_button_pyramid.xml │ │ ├── control_button_pyramid_pressed.xml │ │ ├── control_button_r1.xml │ │ ├── control_button_r1_pressed.xml │ │ ├── control_button_r2.xml │ │ ├── control_button_r2_pressed.xml │ │ ├── control_button_r3.xml │ │ ├── control_button_r3_pressed.xml │ │ ├── control_button_share.xml │ │ ├── control_button_share_pressed.xml │ │ ├── control_dpad_idle.xml │ │ ├── control_dpad_left.xml │ │ ├── control_dpad_left_up.xml │ │ ├── control_touchpad.xml │ │ ├── control_touchpad_pressed.xml │ │ ├── ic_add.xml │ │ ├── ic_add_close.xml │ │ ├── ic_add_manual.xml │ │ ├── ic_bitrate.xml │ │ ├── ic_button_haptic.xml │ │ ├── ic_close.xml │ │ ├── ic_codec.xml │ │ ├── ic_console.xml │ │ ├── ic_console_ps5.xml │ │ ├── ic_console_ps5_ready.xml │ │ ├── ic_console_ps5_standby.xml │ │ ├── ic_console_ready.xml │ │ ├── ic_console_simple.xml │ │ ├── ic_console_standby.xml │ │ ├── ic_delete_row.xml │ │ ├── ic_discover_off.xml │ │ ├── ic_discover_on.xml │ │ ├── ic_discovered_on_secondary.xml │ │ ├── ic_display_normal.xml │ │ ├── ic_display_stretch.xml │ │ ├── ic_display_zoom.xml │ │ ├── ic_export.xml │ │ ├── ic_fps.xml │ │ ├── ic_gamepad.xml │ │ ├── ic_host.xml │ │ ├── ic_import.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_log.xml │ │ ├── ic_motion.xml │ │ ├── ic_overflow.xml │ │ ├── ic_pin.xml │ │ ├── ic_psn_id.xml │ │ ├── ic_regist_console.xml │ │ ├── ic_register.xml │ │ ├── ic_resolution.xml │ │ ├── ic_rumble.xml │ │ ├── ic_settings.xml │ │ ├── ic_share.xml │ │ ├── ic_triangle.xml │ │ └── selector_add_fab.xml │ │ ├── layout │ │ ├── activity_edit_manual.xml │ │ ├── activity_main.xml │ │ ├── activity_regist.xml │ │ ├── activity_regist_execute.xml │ │ ├── activity_settings.xml │ │ ├── activity_stream.xml │ │ ├── dialog_login_pin.xml │ │ ├── dropdown_menu_popup_item.xml │ │ ├── fragment_controls.xml │ │ ├── fragment_settings_logs.xml │ │ ├── fragment_settings_registered_hosts.xml │ │ ├── fragment_touchpad_only.xml │ │ ├── item_display_host.xml │ │ ├── item_log_file.xml │ │ └── item_registered_host.xml │ │ ├── menu │ │ ├── display_host.xml │ │ └── main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── filepaths.xml │ │ └── preferences.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── assets ├── .gitignore ├── add_console.svg ├── chiaki.svg ├── chiaki_android_fg.svg ├── chiaki_function.svg ├── chiaki_simple.svg ├── chiaki_square.svg ├── chiaki_wide.png ├── chiaki_wide_simple.svg ├── comparisons │ ├── bloodborne_fixed.png │ ├── bloodborne_original.png │ ├── rpi_elgato.png │ ├── rpi_fixed.png │ └── rpi_original.png ├── console.svg ├── console2.svg ├── controls │ ├── buttons.svg │ ├── dpad.svg │ ├── l1.svg │ ├── l2.svg │ ├── l2_raw.svg │ ├── l3.svg │ ├── l3_raw.svg │ ├── lr12.svg │ ├── options_share.svg │ ├── r1.svg │ ├── r2.svg │ ├── r3.svg │ ├── r3_raw.svg │ ├── stick.svg │ ├── touchpad.svg │ └── touchpad_surface.svg ├── gen-icns.sh ├── ic_launcher-web.png ├── regist_console.svg └── triangle.svg ├── cli ├── CMakeLists.txt ├── include │ └── chiaki-cli.h └── src │ ├── discover.c │ ├── main.c │ └── wakeup.c ├── cmake ├── FindArgp.cmake ├── FindFFMPEG.cmake ├── FindILClient.cmake ├── FindJerasure.cmake ├── FindNanopb.cmake ├── FindOpus.cmake ├── FindSDL2.cmake ├── OpenSSLExternalProject.cmake └── switch.cmake ├── doc └── platform-build.md ├── gui ├── CMakeLists.txt ├── MacOSXBundleInfo.plist.in ├── chiaki.desktop ├── chiaki.icns ├── chiaki.png ├── include │ ├── avopenglframeuploader.h │ ├── avopenglwidget.h │ ├── controllermanager.h │ ├── discoverymanager.h │ ├── dynamicgridwidget.h │ ├── exception.h │ ├── host.h │ ├── loginpindialog.h │ ├── logsniffer.h │ ├── mainwindow.h │ ├── manualhostdialog.h │ ├── registdialog.h │ ├── servericonwidget.h │ ├── serveritemwidget.h │ ├── sessionlog.h │ ├── settings.h │ ├── settingsdialog.h │ ├── settingskeycapturedialog.h │ ├── streamsession.h │ └── streamwindow.h ├── re.chiaki.Chiaki.appdata.xml ├── res │ ├── add-24px.svg │ ├── chiaki.svg │ ├── console-ps4.svg │ ├── console-ps5.svg │ ├── discover-24px.svg │ ├── discover-off-24px.svg │ ├── resources.qrc │ └── settings-20px.svg └── src │ ├── avopenglframeuploader.cpp │ ├── avopenglwidget.cpp │ ├── controllermanager.cpp │ ├── discoverymanager.cpp │ ├── dynamicgridwidget.cpp │ ├── host.cpp │ ├── loginpindialog.cpp │ ├── main.cpp │ ├── mainwindow.cpp │ ├── manualhostdialog.cpp │ ├── registdialog.cpp │ ├── servericonwidget.cpp │ ├── serveritemwidget.cpp │ ├── sessionlog.cpp │ ├── settings.cpp │ ├── settingsdialog.cpp │ ├── settingskeycapturedialog.cpp │ ├── streamsession.cpp │ └── streamwindow.cpp ├── lib ├── CMakeLists.txt ├── config.h.in ├── include │ └── chiaki │ │ ├── audio.h │ │ ├── audioreceiver.h │ │ ├── base64.h │ │ ├── common.h │ │ ├── config.h │ │ ├── congestioncontrol.h │ │ ├── controller.h │ │ ├── ctrl.h │ │ ├── discovery.h │ │ ├── discoveryservice.h │ │ ├── ecdh.h │ │ ├── fec.h │ │ ├── feedback.h │ │ ├── feedbacksender.h │ │ ├── ffmpegdecoder.h │ │ ├── frameprocessor.h │ │ ├── gkcrypt.h │ │ ├── http.h │ │ ├── launchspec.h │ │ ├── log.h │ │ ├── opusdecoder.h │ │ ├── orientation.h │ │ ├── packetstats.h │ │ ├── pidecoder.h │ │ ├── random.h │ │ ├── regist.h │ │ ├── reorderqueue.h │ │ ├── rpcrypt.h │ │ ├── senkusha.h │ │ ├── seqnum.h │ │ ├── session.h │ │ ├── sock.h │ │ ├── stoppipe.h │ │ ├── streamconnection.h │ │ ├── takion.h │ │ ├── takionsendbuffer.h │ │ ├── thread.h │ │ ├── time.h │ │ ├── video.h │ │ └── videoreceiver.h ├── protobuf │ ├── CMakeLists.txt │ └── takion.proto └── src │ ├── audio.c │ ├── audioreceiver.c │ ├── base64.c │ ├── common.c │ ├── congestioncontrol.c │ ├── controller.c │ ├── ctrl.c │ ├── discovery.c │ ├── discoveryservice.c │ ├── ecdh.c │ ├── fec.c │ ├── feedback.c │ ├── feedbacksender.c │ ├── ffmpegdecoder.c │ ├── frameprocessor.c │ ├── gkcrypt.c │ ├── http.c │ ├── launchspec.c │ ├── log.c │ ├── opusdecoder.c │ ├── orientation.c │ ├── packetstats.c │ ├── pb_utils.h │ ├── pidecoder.c │ ├── random.c │ ├── regist.c │ ├── reorderqueue.c │ ├── rpcrypt.c │ ├── senkusha.c │ ├── session.c │ ├── sock.c │ ├── stoppipe.c │ ├── streamconnection.c │ ├── takion.c │ ├── takionsendbuffer.c │ ├── thread.c │ ├── time.c │ ├── utils.h │ └── videoreceiver.c ├── scripts ├── Dockerfile.bullseye ├── Dockerfile.xenial ├── appveyor-win.sh ├── build-appimage.sh ├── build-common.sh ├── build-ffmpeg.sh ├── build-sdl2.sh ├── docker-run.sh ├── fetch-protoc.sh ├── flatpak │ └── com.github.thestr4ng3r.Chiaki.json ├── psn-account-id.go ├── psn-account-id.py ├── run-docker-build-appimage.sh ├── run-docker-build-bullseye.sh └── switch │ ├── build.sh │ ├── push-docker-build-chiaki.sh │ └── run-docker-build-chiaki.sh ├── setsu ├── CMakeLists.txt ├── cmake │ ├── FindEvdev.cmake │ └── FindUdev.cmake ├── demo │ ├── motion.c │ └── touchpad.c ├── include │ └── setsu.h └── src │ └── setsu.c ├── switch ├── CMakeLists.txt ├── README.md ├── include │ ├── discoverymanager.h │ ├── exception.h │ ├── gui.h │ ├── host.h │ ├── io.h │ └── settings.h ├── nro_icon.jpg ├── nro_icon.png ├── res │ ├── add-24px.svg │ ├── console.svg │ ├── discover-24px.svg │ ├── discover-off-24px.svg │ ├── i18n │ │ └── en-US │ ├── icon.png │ ├── inter │ ├── material │ └── settings-20px.svg └── src │ ├── discoverymanager.cpp │ ├── gui.cpp │ ├── host.cpp │ ├── io.cpp │ ├── main.cpp │ └── settings.cpp ├── test ├── CMakeLists.txt ├── fec.c ├── fec_test_cases.inl ├── gkcrypt.c ├── http.c ├── keystate.c ├── main.c ├── regist.c ├── reorderqueue.c ├── rpcrypt.c ├── seqnum.c ├── takion.c ├── takion_av_packet_parse_real_video.inl ├── test_log.c └── test_log.h └── third-party └── CMakeLists.txt /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.builds/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/.builds/android.yml -------------------------------------------------------------------------------- /.builds/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/.builds/common.yml -------------------------------------------------------------------------------- /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.builds/openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/.builds/openbsd.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-only-OpenSSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/LICENSES/AGPL-3.0-only-OpenSSL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/cpp/audio-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/audio-decoder.c -------------------------------------------------------------------------------- /android/app/src/main/cpp/audio-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/audio-decoder.h -------------------------------------------------------------------------------- /android/app/src/main/cpp/audio-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/audio-output.cpp -------------------------------------------------------------------------------- /android/app/src/main/cpp/audio-output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/audio-output.h -------------------------------------------------------------------------------- /android/app/src/main/cpp/chiaki-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/chiaki-jni.c -------------------------------------------------------------------------------- /android/app/src/main/cpp/chiaki-jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/chiaki-jni.h -------------------------------------------------------------------------------- /android/app/src/main/cpp/circular-buf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/circular-buf.hpp -------------------------------------------------------------------------------- /android/app/src/main/cpp/circular-fifo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/circular-fifo.hpp -------------------------------------------------------------------------------- /android/app/src/main/cpp/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/log.c -------------------------------------------------------------------------------- /android/app/src/main/cpp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/log.h -------------------------------------------------------------------------------- /android/app/src/main/cpp/video-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/video-decoder.c -------------------------------------------------------------------------------- /android/app/src/main/cpp/video-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/cpp/video-decoder.h -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/AppDatabase.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/DisplayHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/DisplayHost.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/LogManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/LogManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/MacAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/MacAddress.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/ManualHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/ManualHost.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/Preferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/Preferences.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/RegisteredHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/RegisteredHost.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/SerializedSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/SerializedSettings.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/ext/RevealActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/ext/RevealActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/ext/RxLiveData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/ext/RxLiveData.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/ext/StringHex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/ext/StringHex.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/ext/ViewGroupInflate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/ext/ViewGroupInflate.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/common/ext/ViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/common/ext/ViewModelFactory.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/discovery/DiscoveryManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/discovery/DiscoveryManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/lib/Chiaki.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/lib/Chiaki.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/main/DisplayHostRecyclerViewAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/main/DisplayHostRecyclerViewAdapter.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/main/FloatingActionButtonBackgroundBehavior.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/main/FloatingActionButtonBackgroundBehavior.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/main/FloatingActionButtonSpeedDialBehavior.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/main/FloatingActionButtonSpeedDialBehavior.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/main/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/main/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/main/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/main/MainViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/manualconsole/EditManualConsoleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/manualconsole/EditManualConsoleActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/manualconsole/EditManualConsoleViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/manualconsole/EditManualConsoleViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/regist/ChiakiRxLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/regist/ChiakiRxLog.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/regist/RegistActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/regist/RegistActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/regist/RegistExecuteActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/regist/RegistExecuteActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/regist/RegistExecuteViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/regist/RegistExecuteViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/regist/RegistViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/regist/RegistViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/session/StreamInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/session/StreamInput.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/session/StreamSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/session/StreamSession.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/ItemTouchSwipeCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/ItemTouchSwipeCallback.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsLogsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsLogsAdapter.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsLogsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsLogsFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsLogsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsLogsViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsRegisteredHostsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsRegisteredHostsAdapter.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsRegisteredHostsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsRegisteredHostsFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsRegisteredHostsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsRegisteredHostsViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/settings/SettingsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/settings/SettingsViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/stream/AspectRatioFrameLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/stream/AspectRatioFrameLayout.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/stream/StreamActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/stream/StreamActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/stream/StreamViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/stream/StreamViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/AnalogStickView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/AnalogStickView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/ButtonHaptics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/ButtonHaptics.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/ButtonView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/ButtonView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/ControlsBackgroundView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/ControlsBackgroundView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/DPadView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/DPadView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/TouchControlsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/TouchControlsFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/TouchTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/TouchTracker.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/TouchpadOnlyFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/TouchpadOnlyFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/TouchpadView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/TouchpadView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/metallic/chiaki/touchcontrols/Vector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/java/com/metallic/chiaki/touchcontrols/Vector.kt -------------------------------------------------------------------------------- /android/app/src/main/res/color/mage_text_input_box_stroke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/color/mage_text_input_box_stroke.xml -------------------------------------------------------------------------------- /android/app/src/main/res/color/stream_material_button_icon_tint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/color/stream_material_button_icon_tint.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/avd_add_to_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/avd_add_to_close.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/avd_close_to_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/avd_close_to_add.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_analog_stick_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_analog_stick_base.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_analog_stick_handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_analog_stick_handle.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_box.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_box_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_box_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_cross.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_cross_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_cross_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_home.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_home_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_home_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_l1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_l1.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_l1_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_l1_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_l2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_l2.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_l2_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_l2_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_l3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_l3.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_l3_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_l3_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_moon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_moon.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_moon_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_moon_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_options.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_options_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_options_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_pyramid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_pyramid.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_pyramid_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_pyramid_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_r1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_r1.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_r1_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_r1_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_r2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_r2.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_r2_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_r2_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_r3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_r3.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_r3_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_r3_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_share.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_button_share_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_button_share_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_dpad_idle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_dpad_idle.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_dpad_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_dpad_left.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_dpad_left_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_dpad_left_up.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_touchpad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_touchpad.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/control_touchpad_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/control_touchpad_pressed.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_add.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_add_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_add_close.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_add_manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_add_manual.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_bitrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_bitrate.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_button_haptic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_button_haptic.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_codec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_codec.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_console.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_console_ps5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_console_ps5.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_console_ps5_ready.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_console_ps5_ready.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_console_ps5_standby.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_console_ps5_standby.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_console_ready.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_console_ready.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_console_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_console_simple.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_console_standby.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_console_standby.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_delete_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_delete_row.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_discover_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_discover_off.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_discover_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_discover_on.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_discovered_on_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_discovered_on_secondary.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_display_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_display_normal.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_display_stretch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_display_stretch.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_display_zoom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_display_zoom.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_export.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_fps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_fps.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_gamepad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_gamepad.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_host.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_host.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_import.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_log.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_motion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_motion.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_overflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_overflow.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_psn_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_psn_id.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_regist_console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_regist_console.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_register.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_resolution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_resolution.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_rumble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_rumble.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/ic_triangle.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/selector_add_fab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/drawable/selector_add_fab.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_edit_manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/activity_edit_manual.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_regist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/activity_regist.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_regist_execute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/activity_regist_execute.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_stream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/activity_stream.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/dialog_login_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/dialog_login_pin.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/dropdown_menu_popup_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/dropdown_menu_popup_item.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/fragment_controls.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_settings_logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/fragment_settings_logs.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_settings_registered_hosts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/fragment_settings_registered_hosts.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_touchpad_only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/fragment_touchpad_only.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_display_host.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/item_display_host.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_log_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/item_log_file.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_registered_host.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/layout/item_registered_host.xml -------------------------------------------------------------------------------- /android/app/src/main/res/menu/display_host.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/menu/display_host.xml -------------------------------------------------------------------------------- /android/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Chiaki' 3 | -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/add_console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/add_console.svg -------------------------------------------------------------------------------- /assets/chiaki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/chiaki.svg -------------------------------------------------------------------------------- /assets/chiaki_android_fg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/chiaki_android_fg.svg -------------------------------------------------------------------------------- /assets/chiaki_function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/chiaki_function.svg -------------------------------------------------------------------------------- /assets/chiaki_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/chiaki_simple.svg -------------------------------------------------------------------------------- /assets/chiaki_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/chiaki_square.svg -------------------------------------------------------------------------------- /assets/chiaki_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/chiaki_wide.png -------------------------------------------------------------------------------- /assets/chiaki_wide_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/chiaki_wide_simple.svg -------------------------------------------------------------------------------- /assets/comparisons/bloodborne_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/comparisons/bloodborne_fixed.png -------------------------------------------------------------------------------- /assets/comparisons/bloodborne_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/comparisons/bloodborne_original.png -------------------------------------------------------------------------------- /assets/comparisons/rpi_elgato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/comparisons/rpi_elgato.png -------------------------------------------------------------------------------- /assets/comparisons/rpi_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/comparisons/rpi_fixed.png -------------------------------------------------------------------------------- /assets/comparisons/rpi_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/comparisons/rpi_original.png -------------------------------------------------------------------------------- /assets/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/console.svg -------------------------------------------------------------------------------- /assets/console2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/console2.svg -------------------------------------------------------------------------------- /assets/controls/buttons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/buttons.svg -------------------------------------------------------------------------------- /assets/controls/dpad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/dpad.svg -------------------------------------------------------------------------------- /assets/controls/l1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/l1.svg -------------------------------------------------------------------------------- /assets/controls/l2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/l2.svg -------------------------------------------------------------------------------- /assets/controls/l2_raw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/l2_raw.svg -------------------------------------------------------------------------------- /assets/controls/l3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/l3.svg -------------------------------------------------------------------------------- /assets/controls/l3_raw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/l3_raw.svg -------------------------------------------------------------------------------- /assets/controls/lr12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/lr12.svg -------------------------------------------------------------------------------- /assets/controls/options_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/options_share.svg -------------------------------------------------------------------------------- /assets/controls/r1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/r1.svg -------------------------------------------------------------------------------- /assets/controls/r2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/r2.svg -------------------------------------------------------------------------------- /assets/controls/r3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/r3.svg -------------------------------------------------------------------------------- /assets/controls/r3_raw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/r3_raw.svg -------------------------------------------------------------------------------- /assets/controls/stick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/stick.svg -------------------------------------------------------------------------------- /assets/controls/touchpad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/touchpad.svg -------------------------------------------------------------------------------- /assets/controls/touchpad_surface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/controls/touchpad_surface.svg -------------------------------------------------------------------------------- /assets/gen-icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/gen-icns.sh -------------------------------------------------------------------------------- /assets/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/ic_launcher-web.png -------------------------------------------------------------------------------- /assets/regist_console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/regist_console.svg -------------------------------------------------------------------------------- /assets/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/assets/triangle.svg -------------------------------------------------------------------------------- /cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cli/CMakeLists.txt -------------------------------------------------------------------------------- /cli/include/chiaki-cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cli/include/chiaki-cli.h -------------------------------------------------------------------------------- /cli/src/discover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cli/src/discover.c -------------------------------------------------------------------------------- /cli/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cli/src/main.c -------------------------------------------------------------------------------- /cli/src/wakeup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cli/src/wakeup.c -------------------------------------------------------------------------------- /cmake/FindArgp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/FindArgp.cmake -------------------------------------------------------------------------------- /cmake/FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/FindFFMPEG.cmake -------------------------------------------------------------------------------- /cmake/FindILClient.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/FindILClient.cmake -------------------------------------------------------------------------------- /cmake/FindJerasure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/FindJerasure.cmake -------------------------------------------------------------------------------- /cmake/FindNanopb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/FindNanopb.cmake -------------------------------------------------------------------------------- /cmake/FindOpus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/FindOpus.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/OpenSSLExternalProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/OpenSSLExternalProject.cmake -------------------------------------------------------------------------------- /cmake/switch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/cmake/switch.cmake -------------------------------------------------------------------------------- /doc/platform-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/doc/platform-build.md -------------------------------------------------------------------------------- /gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/CMakeLists.txt -------------------------------------------------------------------------------- /gui/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /gui/chiaki.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/chiaki.desktop -------------------------------------------------------------------------------- /gui/chiaki.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/chiaki.icns -------------------------------------------------------------------------------- /gui/chiaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/chiaki.png -------------------------------------------------------------------------------- /gui/include/avopenglframeuploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/avopenglframeuploader.h -------------------------------------------------------------------------------- /gui/include/avopenglwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/avopenglwidget.h -------------------------------------------------------------------------------- /gui/include/controllermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/controllermanager.h -------------------------------------------------------------------------------- /gui/include/discoverymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/discoverymanager.h -------------------------------------------------------------------------------- /gui/include/dynamicgridwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/dynamicgridwidget.h -------------------------------------------------------------------------------- /gui/include/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/exception.h -------------------------------------------------------------------------------- /gui/include/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/host.h -------------------------------------------------------------------------------- /gui/include/loginpindialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/loginpindialog.h -------------------------------------------------------------------------------- /gui/include/logsniffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/logsniffer.h -------------------------------------------------------------------------------- /gui/include/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/mainwindow.h -------------------------------------------------------------------------------- /gui/include/manualhostdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/manualhostdialog.h -------------------------------------------------------------------------------- /gui/include/registdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/registdialog.h -------------------------------------------------------------------------------- /gui/include/servericonwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/servericonwidget.h -------------------------------------------------------------------------------- /gui/include/serveritemwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/serveritemwidget.h -------------------------------------------------------------------------------- /gui/include/sessionlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/sessionlog.h -------------------------------------------------------------------------------- /gui/include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/settings.h -------------------------------------------------------------------------------- /gui/include/settingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/settingsdialog.h -------------------------------------------------------------------------------- /gui/include/settingskeycapturedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/settingskeycapturedialog.h -------------------------------------------------------------------------------- /gui/include/streamsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/streamsession.h -------------------------------------------------------------------------------- /gui/include/streamwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/include/streamwindow.h -------------------------------------------------------------------------------- /gui/re.chiaki.Chiaki.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/re.chiaki.Chiaki.appdata.xml -------------------------------------------------------------------------------- /gui/res/add-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/res/add-24px.svg -------------------------------------------------------------------------------- /gui/res/chiaki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/res/chiaki.svg -------------------------------------------------------------------------------- /gui/res/console-ps4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/res/console-ps4.svg -------------------------------------------------------------------------------- /gui/res/console-ps5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/res/console-ps5.svg -------------------------------------------------------------------------------- /gui/res/discover-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/res/discover-24px.svg -------------------------------------------------------------------------------- /gui/res/discover-off-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/res/discover-off-24px.svg -------------------------------------------------------------------------------- /gui/res/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/res/resources.qrc -------------------------------------------------------------------------------- /gui/res/settings-20px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/res/settings-20px.svg -------------------------------------------------------------------------------- /gui/src/avopenglframeuploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/avopenglframeuploader.cpp -------------------------------------------------------------------------------- /gui/src/avopenglwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/avopenglwidget.cpp -------------------------------------------------------------------------------- /gui/src/controllermanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/controllermanager.cpp -------------------------------------------------------------------------------- /gui/src/discoverymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/discoverymanager.cpp -------------------------------------------------------------------------------- /gui/src/dynamicgridwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/dynamicgridwidget.cpp -------------------------------------------------------------------------------- /gui/src/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/host.cpp -------------------------------------------------------------------------------- /gui/src/loginpindialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/loginpindialog.cpp -------------------------------------------------------------------------------- /gui/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/main.cpp -------------------------------------------------------------------------------- /gui/src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/mainwindow.cpp -------------------------------------------------------------------------------- /gui/src/manualhostdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/manualhostdialog.cpp -------------------------------------------------------------------------------- /gui/src/registdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/registdialog.cpp -------------------------------------------------------------------------------- /gui/src/servericonwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/servericonwidget.cpp -------------------------------------------------------------------------------- /gui/src/serveritemwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/serveritemwidget.cpp -------------------------------------------------------------------------------- /gui/src/sessionlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/sessionlog.cpp -------------------------------------------------------------------------------- /gui/src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/settings.cpp -------------------------------------------------------------------------------- /gui/src/settingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/settingsdialog.cpp -------------------------------------------------------------------------------- /gui/src/settingskeycapturedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/settingskeycapturedialog.cpp -------------------------------------------------------------------------------- /gui/src/streamsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/streamsession.cpp -------------------------------------------------------------------------------- /gui/src/streamwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/gui/src/streamwindow.cpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/config.h.in -------------------------------------------------------------------------------- /lib/include/chiaki/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/audio.h -------------------------------------------------------------------------------- /lib/include/chiaki/audioreceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/audioreceiver.h -------------------------------------------------------------------------------- /lib/include/chiaki/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/base64.h -------------------------------------------------------------------------------- /lib/include/chiaki/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/common.h -------------------------------------------------------------------------------- /lib/include/chiaki/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/config.h -------------------------------------------------------------------------------- /lib/include/chiaki/congestioncontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/congestioncontrol.h -------------------------------------------------------------------------------- /lib/include/chiaki/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/controller.h -------------------------------------------------------------------------------- /lib/include/chiaki/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/ctrl.h -------------------------------------------------------------------------------- /lib/include/chiaki/discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/discovery.h -------------------------------------------------------------------------------- /lib/include/chiaki/discoveryservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/discoveryservice.h -------------------------------------------------------------------------------- /lib/include/chiaki/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/ecdh.h -------------------------------------------------------------------------------- /lib/include/chiaki/fec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/fec.h -------------------------------------------------------------------------------- /lib/include/chiaki/feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/feedback.h -------------------------------------------------------------------------------- /lib/include/chiaki/feedbacksender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/feedbacksender.h -------------------------------------------------------------------------------- /lib/include/chiaki/ffmpegdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/ffmpegdecoder.h -------------------------------------------------------------------------------- /lib/include/chiaki/frameprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/frameprocessor.h -------------------------------------------------------------------------------- /lib/include/chiaki/gkcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/gkcrypt.h -------------------------------------------------------------------------------- /lib/include/chiaki/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/http.h -------------------------------------------------------------------------------- /lib/include/chiaki/launchspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/launchspec.h -------------------------------------------------------------------------------- /lib/include/chiaki/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/log.h -------------------------------------------------------------------------------- /lib/include/chiaki/opusdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/opusdecoder.h -------------------------------------------------------------------------------- /lib/include/chiaki/orientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/orientation.h -------------------------------------------------------------------------------- /lib/include/chiaki/packetstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/packetstats.h -------------------------------------------------------------------------------- /lib/include/chiaki/pidecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/pidecoder.h -------------------------------------------------------------------------------- /lib/include/chiaki/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/random.h -------------------------------------------------------------------------------- /lib/include/chiaki/regist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/regist.h -------------------------------------------------------------------------------- /lib/include/chiaki/reorderqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/reorderqueue.h -------------------------------------------------------------------------------- /lib/include/chiaki/rpcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/rpcrypt.h -------------------------------------------------------------------------------- /lib/include/chiaki/senkusha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/senkusha.h -------------------------------------------------------------------------------- /lib/include/chiaki/seqnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/seqnum.h -------------------------------------------------------------------------------- /lib/include/chiaki/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/session.h -------------------------------------------------------------------------------- /lib/include/chiaki/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/sock.h -------------------------------------------------------------------------------- /lib/include/chiaki/stoppipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/stoppipe.h -------------------------------------------------------------------------------- /lib/include/chiaki/streamconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/streamconnection.h -------------------------------------------------------------------------------- /lib/include/chiaki/takion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/takion.h -------------------------------------------------------------------------------- /lib/include/chiaki/takionsendbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/takionsendbuffer.h -------------------------------------------------------------------------------- /lib/include/chiaki/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/thread.h -------------------------------------------------------------------------------- /lib/include/chiaki/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/time.h -------------------------------------------------------------------------------- /lib/include/chiaki/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/video.h -------------------------------------------------------------------------------- /lib/include/chiaki/videoreceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/include/chiaki/videoreceiver.h -------------------------------------------------------------------------------- /lib/protobuf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/protobuf/CMakeLists.txt -------------------------------------------------------------------------------- /lib/protobuf/takion.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/protobuf/takion.proto -------------------------------------------------------------------------------- /lib/src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/audio.c -------------------------------------------------------------------------------- /lib/src/audioreceiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/audioreceiver.c -------------------------------------------------------------------------------- /lib/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/base64.c -------------------------------------------------------------------------------- /lib/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/common.c -------------------------------------------------------------------------------- /lib/src/congestioncontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/congestioncontrol.c -------------------------------------------------------------------------------- /lib/src/controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/controller.c -------------------------------------------------------------------------------- /lib/src/ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/ctrl.c -------------------------------------------------------------------------------- /lib/src/discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/discovery.c -------------------------------------------------------------------------------- /lib/src/discoveryservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/discoveryservice.c -------------------------------------------------------------------------------- /lib/src/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/ecdh.c -------------------------------------------------------------------------------- /lib/src/fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/fec.c -------------------------------------------------------------------------------- /lib/src/feedback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/feedback.c -------------------------------------------------------------------------------- /lib/src/feedbacksender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/feedbacksender.c -------------------------------------------------------------------------------- /lib/src/ffmpegdecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/ffmpegdecoder.c -------------------------------------------------------------------------------- /lib/src/frameprocessor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/frameprocessor.c -------------------------------------------------------------------------------- /lib/src/gkcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/gkcrypt.c -------------------------------------------------------------------------------- /lib/src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/http.c -------------------------------------------------------------------------------- /lib/src/launchspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/launchspec.c -------------------------------------------------------------------------------- /lib/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/log.c -------------------------------------------------------------------------------- /lib/src/opusdecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/opusdecoder.c -------------------------------------------------------------------------------- /lib/src/orientation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/orientation.c -------------------------------------------------------------------------------- /lib/src/packetstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/packetstats.c -------------------------------------------------------------------------------- /lib/src/pb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/pb_utils.h -------------------------------------------------------------------------------- /lib/src/pidecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/pidecoder.c -------------------------------------------------------------------------------- /lib/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/random.c -------------------------------------------------------------------------------- /lib/src/regist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/regist.c -------------------------------------------------------------------------------- /lib/src/reorderqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/reorderqueue.c -------------------------------------------------------------------------------- /lib/src/rpcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/rpcrypt.c -------------------------------------------------------------------------------- /lib/src/senkusha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/senkusha.c -------------------------------------------------------------------------------- /lib/src/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/session.c -------------------------------------------------------------------------------- /lib/src/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/sock.c -------------------------------------------------------------------------------- /lib/src/stoppipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/stoppipe.c -------------------------------------------------------------------------------- /lib/src/streamconnection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/streamconnection.c -------------------------------------------------------------------------------- /lib/src/takion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/takion.c -------------------------------------------------------------------------------- /lib/src/takionsendbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/takionsendbuffer.c -------------------------------------------------------------------------------- /lib/src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/thread.c -------------------------------------------------------------------------------- /lib/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/time.c -------------------------------------------------------------------------------- /lib/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/utils.h -------------------------------------------------------------------------------- /lib/src/videoreceiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/lib/src/videoreceiver.c -------------------------------------------------------------------------------- /scripts/Dockerfile.bullseye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/Dockerfile.bullseye -------------------------------------------------------------------------------- /scripts/Dockerfile.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/Dockerfile.xenial -------------------------------------------------------------------------------- /scripts/appveyor-win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/appveyor-win.sh -------------------------------------------------------------------------------- /scripts/build-appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/build-appimage.sh -------------------------------------------------------------------------------- /scripts/build-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/build-common.sh -------------------------------------------------------------------------------- /scripts/build-ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/build-ffmpeg.sh -------------------------------------------------------------------------------- /scripts/build-sdl2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/build-sdl2.sh -------------------------------------------------------------------------------- /scripts/docker-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/docker-run.sh -------------------------------------------------------------------------------- /scripts/fetch-protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/fetch-protoc.sh -------------------------------------------------------------------------------- /scripts/flatpak/com.github.thestr4ng3r.Chiaki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/flatpak/com.github.thestr4ng3r.Chiaki.json -------------------------------------------------------------------------------- /scripts/psn-account-id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/psn-account-id.go -------------------------------------------------------------------------------- /scripts/psn-account-id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/psn-account-id.py -------------------------------------------------------------------------------- /scripts/run-docker-build-appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/run-docker-build-appimage.sh -------------------------------------------------------------------------------- /scripts/run-docker-build-bullseye.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/run-docker-build-bullseye.sh -------------------------------------------------------------------------------- /scripts/switch/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/switch/build.sh -------------------------------------------------------------------------------- /scripts/switch/push-docker-build-chiaki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/switch/push-docker-build-chiaki.sh -------------------------------------------------------------------------------- /scripts/switch/run-docker-build-chiaki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/scripts/switch/run-docker-build-chiaki.sh -------------------------------------------------------------------------------- /setsu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/setsu/CMakeLists.txt -------------------------------------------------------------------------------- /setsu/cmake/FindEvdev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/setsu/cmake/FindEvdev.cmake -------------------------------------------------------------------------------- /setsu/cmake/FindUdev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/setsu/cmake/FindUdev.cmake -------------------------------------------------------------------------------- /setsu/demo/motion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/setsu/demo/motion.c -------------------------------------------------------------------------------- /setsu/demo/touchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/setsu/demo/touchpad.c -------------------------------------------------------------------------------- /setsu/include/setsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/setsu/include/setsu.h -------------------------------------------------------------------------------- /setsu/src/setsu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/setsu/src/setsu.c -------------------------------------------------------------------------------- /switch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/CMakeLists.txt -------------------------------------------------------------------------------- /switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/README.md -------------------------------------------------------------------------------- /switch/include/discoverymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/include/discoverymanager.h -------------------------------------------------------------------------------- /switch/include/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/include/exception.h -------------------------------------------------------------------------------- /switch/include/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/include/gui.h -------------------------------------------------------------------------------- /switch/include/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/include/host.h -------------------------------------------------------------------------------- /switch/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/include/io.h -------------------------------------------------------------------------------- /switch/include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/include/settings.h -------------------------------------------------------------------------------- /switch/nro_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/nro_icon.jpg -------------------------------------------------------------------------------- /switch/nro_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/nro_icon.png -------------------------------------------------------------------------------- /switch/res/add-24px.svg: -------------------------------------------------------------------------------- 1 | ../../gui/res/add-24px.svg -------------------------------------------------------------------------------- /switch/res/console.svg: -------------------------------------------------------------------------------- 1 | ../../assets/console.svg -------------------------------------------------------------------------------- /switch/res/discover-24px.svg: -------------------------------------------------------------------------------- 1 | ../../gui/res/discover-24px.svg -------------------------------------------------------------------------------- /switch/res/discover-off-24px.svg: -------------------------------------------------------------------------------- 1 | ../../gui/res/discover-off-24px.svg -------------------------------------------------------------------------------- /switch/res/i18n/en-US: -------------------------------------------------------------------------------- 1 | ../../borealis/resources/i18n/en-US -------------------------------------------------------------------------------- /switch/res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/res/icon.png -------------------------------------------------------------------------------- /switch/res/inter: -------------------------------------------------------------------------------- 1 | ../borealis/resources/inter -------------------------------------------------------------------------------- /switch/res/material: -------------------------------------------------------------------------------- 1 | ../borealis/resources/material -------------------------------------------------------------------------------- /switch/res/settings-20px.svg: -------------------------------------------------------------------------------- 1 | ../../gui/res/settings-20px.svg -------------------------------------------------------------------------------- /switch/src/discoverymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/src/discoverymanager.cpp -------------------------------------------------------------------------------- /switch/src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/src/gui.cpp -------------------------------------------------------------------------------- /switch/src/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/src/host.cpp -------------------------------------------------------------------------------- /switch/src/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/src/io.cpp -------------------------------------------------------------------------------- /switch/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/src/main.cpp -------------------------------------------------------------------------------- /switch/src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/switch/src/settings.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/fec.c -------------------------------------------------------------------------------- /test/fec_test_cases.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/fec_test_cases.inl -------------------------------------------------------------------------------- /test/gkcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/gkcrypt.c -------------------------------------------------------------------------------- /test/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/http.c -------------------------------------------------------------------------------- /test/keystate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/keystate.c -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/main.c -------------------------------------------------------------------------------- /test/regist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/regist.c -------------------------------------------------------------------------------- /test/reorderqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/reorderqueue.c -------------------------------------------------------------------------------- /test/rpcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/rpcrypt.c -------------------------------------------------------------------------------- /test/seqnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/seqnum.c -------------------------------------------------------------------------------- /test/takion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/takion.c -------------------------------------------------------------------------------- /test/takion_av_packet_parse_real_video.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/takion_av_packet_parse_real_video.inl -------------------------------------------------------------------------------- /test/test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/test_log.c -------------------------------------------------------------------------------- /test/test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/test/test_log.h -------------------------------------------------------------------------------- /third-party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egoistically/chiaki/HEAD/third-party/CMakeLists.txt --------------------------------------------------------------------------------