├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── FLATBUFFERS.md ├── GenerateVersionHeader.cmake ├── LICENSE ├── README.md ├── fbs ├── CMakeLists.txt ├── hyperion_reply.fbs └── hyperion_request.fbs ├── libyuv └── CMakeLists.txt ├── lint └── run-clang-format.py ├── src ├── hyperion_client.c ├── hyperion_client.h ├── json_rpc_client.c ├── json_rpc_client.h ├── log.c ├── log.h ├── main.c ├── quirks.h ├── service.c ├── service.h ├── settings.c ├── settings.h ├── utils.c ├── utils.h └── version.h.in └── unicapture ├── CMakeLists.txt ├── backends ├── libdile_vt.c ├── libgm.c ├── libhalgal.c └── libvtcapture.cpp ├── common.h ├── converter.c ├── converter.h ├── unicapture.c └── unicapture.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FLATBUFFERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/FLATBUFFERS.md -------------------------------------------------------------------------------- /GenerateVersionHeader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/GenerateVersionHeader.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/README.md -------------------------------------------------------------------------------- /fbs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/fbs/CMakeLists.txt -------------------------------------------------------------------------------- /fbs/hyperion_reply.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/fbs/hyperion_reply.fbs -------------------------------------------------------------------------------- /fbs/hyperion_request.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/fbs/hyperion_request.fbs -------------------------------------------------------------------------------- /libyuv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/libyuv/CMakeLists.txt -------------------------------------------------------------------------------- /lint/run-clang-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/lint/run-clang-format.py -------------------------------------------------------------------------------- /src/hyperion_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/hyperion_client.c -------------------------------------------------------------------------------- /src/hyperion_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/hyperion_client.h -------------------------------------------------------------------------------- /src/json_rpc_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/json_rpc_client.c -------------------------------------------------------------------------------- /src/json_rpc_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/json_rpc_client.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/log.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/main.c -------------------------------------------------------------------------------- /src/quirks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/quirks.h -------------------------------------------------------------------------------- /src/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/service.c -------------------------------------------------------------------------------- /src/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/service.h -------------------------------------------------------------------------------- /src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/settings.c -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | uint64_t getticks_us(); 6 | -------------------------------------------------------------------------------- /src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/src/version.h.in -------------------------------------------------------------------------------- /unicapture/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/CMakeLists.txt -------------------------------------------------------------------------------- /unicapture/backends/libdile_vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/backends/libdile_vt.c -------------------------------------------------------------------------------- /unicapture/backends/libgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/backends/libgm.c -------------------------------------------------------------------------------- /unicapture/backends/libhalgal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/backends/libhalgal.c -------------------------------------------------------------------------------- /unicapture/backends/libvtcapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/backends/libvtcapture.cpp -------------------------------------------------------------------------------- /unicapture/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/common.h -------------------------------------------------------------------------------- /unicapture/converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/converter.c -------------------------------------------------------------------------------- /unicapture/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/converter.h -------------------------------------------------------------------------------- /unicapture/unicapture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/unicapture.c -------------------------------------------------------------------------------- /unicapture/unicapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webosbrew/hyperion-webos/HEAD/unicapture/unicapture.h --------------------------------------------------------------------------------