├── .gitignore ├── LICENSE ├── README.md ├── assets ├── assets.py ├── config.yaml ├── plugins.py ├── web │ ├── ext │ │ ├── MaterialIcons.css │ │ ├── MaterialIcons.ttf │ │ ├── addon-attach.js │ │ ├── addon-attach.js.map │ │ ├── addon-clipboard.js │ │ ├── addon-clipboard.js.map │ │ ├── addon-fit.js │ │ ├── addon-fit.js.map │ │ ├── addon-image.js │ │ ├── addon-image.js.map │ │ ├── addon-search.js │ │ ├── addon-search.js.map │ │ ├── addon-serialize.js │ │ ├── addon-serialize.js.map │ │ ├── addon-unicode11.js │ │ ├── addon-unicode11.js.map │ │ ├── addon-web-links.js │ │ ├── addon-web-links.js.map │ │ ├── addon-webgl.js │ │ ├── addon-webgl.js.map │ │ ├── material-components-web.css │ │ ├── material-components-web.css.map │ │ ├── material-components-web.js │ │ ├── material-components-web.js.map │ │ ├── xterm.css │ │ ├── xterm.js │ │ └── xterm.js.map │ ├── favicon.ico │ ├── index.html │ └── res │ │ ├── index.css │ │ └── index.js ├── webrtc-kvm-client.desktop.in ├── webrtc-kvm.service.in └── webrtc-kvm.svg ├── configs ├── webrtc-antc-v3.yaml ├── webrtc-rk3568-rk628d.yaml ├── webrtc-rk3588.yaml ├── webrtc-rpi-ms2130.yaml └── webrtc-rpi-unicam.yaml ├── external ├── material-components-web │ ├── material-components-web.css │ ├── material-components-web.css.map │ ├── material-components-web.d.ts │ ├── material-components-web.js │ └── material-components-web.js.map ├── material-icons │ ├── MaterialIcons.css │ └── MaterialIcons.ttf └── xtermjs │ ├── addon-attach.js │ ├── addon-attach.js.map │ ├── addon-clipboard.js │ ├── addon-clipboard.js.map │ ├── addon-fit.js │ ├── addon-fit.js.map │ ├── addon-image.js │ ├── addon-image.js.LICENSE.txt │ ├── addon-image.js.map │ ├── addon-search.js │ ├── addon-search.js.map │ ├── addon-serialize.js │ ├── addon-serialize.js.map │ ├── addon-unicode11.js │ ├── addon-unicode11.js.map │ ├── addon-web-links.js │ ├── addon-web-links.js.map │ ├── addon-webgl.js │ ├── addon-webgl.js.map │ ├── xterm.css │ ├── xterm.js │ └── xterm.js.map ├── meson.build ├── meson_options.txt ├── package ├── .gitignore ├── .gitkeep └── PKGBUILD └── src ├── abstract ├── async-runner.cpp ├── async-runner.h ├── buffer-queue.cpp ├── buffer-queue.h ├── buffer.cpp ├── buffer.h ├── loop.cpp ├── loop.h ├── meson.build ├── plugin.cpp ├── plugin.h ├── resource_release.h ├── signals.cpp └── signals.h ├── algo ├── base64.cpp ├── base64.h ├── blob.cpp ├── blob.h ├── crc32.cpp ├── crc32.h ├── hash.cpp ├── hash.h ├── hash_algo.cpp ├── meson.build ├── url-net.cpp ├── url.cpp ├── url.h ├── uuid.cpp └── uuid.h ├── client ├── login │ ├── login.cpp │ ├── login.h │ └── meson.build ├── main.cpp ├── meson.build └── screen │ ├── connection.cpp │ ├── display.cpp │ ├── event.cpp │ ├── handshake.cpp │ ├── http.cpp │ ├── input │ ├── channel.cpp │ ├── event.cpp │ ├── fill.cpp │ ├── input.cpp │ ├── input.h │ ├── map.cpp │ ├── meson.build │ ├── qt_map.cpp │ └── x11_map.cpp │ ├── login.cpp │ ├── meson.build │ ├── screen.cpp │ ├── screen.h │ ├── slots.cpp │ ├── video │ ├── deinit.cpp │ ├── format.cpp │ ├── initialize.cpp │ ├── meson.build │ ├── receive.cpp │ ├── stream.cpp │ ├── swscale.cpp │ ├── track.cpp │ ├── video.cpp │ └── video.h │ └── webrtc.cpp ├── compress ├── compress.h ├── find.cpp ├── meson.build ├── process.cpp ├── property.cpp └── register.cpp ├── config ├── config.cpp ├── configs.h ├── default.cpp └── meson.build ├── defines.h ├── external ├── kmod.h ├── meson.build ├── wrapper.cpp └── wrapper.h ├── gadget ├── core │ ├── base.cpp │ ├── config.cpp │ ├── config_string.cpp │ ├── function.cpp │ ├── gadget.cpp │ ├── gadget.h │ ├── gadget_config.h │ ├── gadget_config_string.h │ ├── gadget_function.h │ ├── gadget_string.h │ ├── internal.h │ ├── meson.build │ ├── shared.h │ └── string.cpp ├── functions │ ├── functions.cpp │ ├── gadget_acm.h │ ├── gadget_ecm.h │ ├── gadget_eem.h │ ├── gadget_ether.h │ ├── gadget_ffs.h │ ├── gadget_hid.h │ ├── gadget_mass.h │ ├── gadget_ncm.h │ ├── gadget_net.h │ ├── gadget_rndis.h │ ├── gadget_serial.h │ ├── gadget_tty.h │ ├── hid.cpp │ └── meson.build ├── gadget.h ├── gadget_ctx.h ├── initialize.cpp ├── input.cpp ├── meson.build └── string.cpp ├── global.h ├── http ├── auth │ ├── authorization.cpp │ ├── meson.build │ ├── no_pam.cpp │ ├── pam.cpp │ └── password.cpp ├── core │ ├── compress.cpp │ ├── connection.cpp │ ├── exceptions.cpp │ ├── generic.cpp │ ├── header.cpp │ ├── meson.build │ ├── post.cpp │ ├── process.cpp │ ├── restful.cpp │ └── static.cpp ├── data │ ├── meson.build │ ├── methods.h │ ├── mime.cpp │ ├── mime.h │ ├── string.cpp │ └── versions.h ├── handlers │ ├── auth_check.cpp │ ├── auth_info.cpp │ ├── auth_login.cpp │ ├── auth_logout.cpp │ ├── exit.cpp │ ├── input_get_key_map.cpp │ ├── input_get_mouse_mode.cpp │ ├── input_set_mouse_mode.cpp │ ├── meson.build │ ├── static.cpp │ ├── stream_start.cpp │ ├── stream_status.cpp │ ├── stream_stop.cpp │ ├── webrtc_get_sdp.cpp │ ├── webrtc_new.cpp │ └── webrtc_set_sdp.cpp ├── http.h ├── httpd.cpp └── meson.build ├── input ├── descriptor.cpp ├── hid.cpp ├── hid.h ├── hid_map.cpp ├── input.cpp ├── input.h ├── input_ctx.h ├── meson.build ├── print.cpp ├── string.cpp └── web_key_map.cpp ├── lib ├── configfile.cpp ├── configfile.h ├── devices.cpp ├── exception.h ├── exceptions.cpp ├── files.cpp ├── files.h ├── folder_reader.cpp ├── full_io.cpp ├── full_io.h ├── log.cpp ├── log.h ├── meson.build ├── modules.cpp ├── modules.h ├── path.c ├── path.cpp ├── path.h ├── readable.cpp ├── readable.h ├── strings.cpp └── strings.h ├── main ├── builtin.h ├── initialize.cpp ├── main.cpp ├── meson.build └── rate_thread.cpp ├── meson.build ├── plugins ├── compress │ ├── brotli.cpp │ ├── bzip2.cpp │ ├── meson.build │ ├── zlib.cpp │ └── zstd.cpp ├── meson.build └── video │ ├── ffmpeg │ ├── ffmpeg.h │ ├── meson.build │ ├── shared │ │ ├── format.cpp │ │ └── meson.build │ └── swscale │ │ ├── config.cpp │ │ ├── factory.cpp │ │ ├── init.cpp │ │ ├── meson.build │ │ ├── process.cpp │ │ └── swscale.h │ ├── meson.build │ ├── noop │ ├── factory.cpp │ ├── meson.build │ ├── noop.h │ ├── pipe.cpp │ └── sink.cpp │ ├── posix │ ├── config.cpp │ ├── connection.cpp │ ├── factory.cpp │ ├── initialize.cpp │ ├── meson.build │ ├── open.cpp │ ├── posix.h │ ├── read.cpp │ ├── start.cpp │ └── write.cpp │ ├── rkmpp │ ├── config.cpp │ ├── config_list.cpp │ ├── decoder.cpp │ ├── decoder_init.cpp │ ├── encoder.cpp │ ├── encoder_init.cpp │ ├── factory.cpp │ ├── format.cpp │ ├── fourcc.cpp │ ├── init.cpp │ ├── meson.build │ ├── process.cpp │ ├── rkmpp.h │ └── start.cpp │ ├── rkrga │ ├── buffer.cpp │ ├── config.cpp │ ├── factory.cpp │ ├── fourcc.cpp │ ├── meson.build │ ├── process.cpp │ ├── rkrga.h │ ├── start.cpp │ └── string.cpp │ └── v4l2 │ ├── cap │ ├── edid.cpp │ ├── factory.cpp │ ├── init.cpp │ ├── link.cpp │ ├── meson.build │ ├── process.cpp │ ├── start.cpp │ ├── subdev.cpp │ └── v4l2_cap.h │ ├── dev │ ├── alloc.cpp │ ├── buffer.cpp │ ├── config.cpp │ ├── dequeue.cpp │ ├── device.cpp │ ├── dmabuf.cpp │ ├── format.cpp │ ├── init.cpp │ ├── link.cpp │ ├── match.cpp │ ├── meson.build │ ├── mmap.cpp │ ├── queue.cpp │ ├── uptr.cpp │ └── v4l2_dev.h │ ├── m2m │ ├── config.cpp │ ├── decoder.cpp │ ├── encoder.cpp │ ├── factory.cpp │ ├── init.cpp │ ├── input.cpp │ ├── link.cpp │ ├── meson.build │ ├── output.cpp │ ├── queue.cpp │ ├── start.cpp │ └── v4l2_m2m.h │ ├── media │ ├── device.cpp │ ├── device.h │ ├── entity.cpp │ ├── entity.h │ ├── entity_desc.cpp │ ├── entity_desc.h │ ├── interface.cpp │ ├── interface.h │ ├── link.cpp │ ├── link.h │ ├── meson.build │ ├── pad.cpp │ ├── pad.h │ ├── topology.cpp │ └── topology.h │ ├── meson.build │ ├── out │ ├── config.cpp │ ├── factory.cpp │ ├── init.cpp │ ├── meson.build │ ├── process.cpp │ ├── queue.cpp │ └── v4l2_out.h │ ├── v4l2.cpp │ └── v4l2.h ├── string ├── fourcc.cpp ├── h264_level.cpp ├── h264_profile.cpp ├── meson.build ├── rtc.cpp ├── strings.h ├── v4l2_buf_type.cpp └── v4l2_memory.cpp ├── test ├── meson.build ├── test.cpp ├── test.h └── tests │ ├── meson.build │ ├── path.cpp │ ├── readable.cpp │ └── string.cpp ├── video ├── factory │ ├── config.cpp │ ├── create.cpp │ ├── meson.build │ └── register.cpp ├── link │ ├── bind.cpp │ ├── create.cpp │ ├── init.cpp │ └── meson.build ├── list │ ├── add.cpp │ ├── find.cpp │ └── meson.build ├── meson.build ├── old │ ├── initialize.cpp │ ├── setup.cpp │ └── stream.cpp ├── stream.h └── stream │ ├── config.cpp │ ├── device.cpp │ ├── event.cpp │ ├── generic.cpp │ ├── input.cpp │ ├── link.cpp │ ├── meson.build │ ├── poll.cpp │ ├── start.cpp │ ├── stop.cpp │ └── string.cpp ├── webrtc ├── datachannel.cpp ├── enable.cpp ├── endpoint.cpp ├── event.cpp ├── factory.cpp ├── gathering.cpp ├── initialize.cpp ├── input.cpp ├── meson.build ├── sdp.cpp ├── start.cpp ├── state.cpp ├── stream.cpp ├── track.cpp └── webrtc.h └── webrtc_kvm.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/assets.py -------------------------------------------------------------------------------- /assets/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/config.yaml -------------------------------------------------------------------------------- /assets/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/plugins.py -------------------------------------------------------------------------------- /assets/web/ext/MaterialIcons.css: -------------------------------------------------------------------------------- 1 | ../../../external/material-icons/MaterialIcons.css -------------------------------------------------------------------------------- /assets/web/ext/MaterialIcons.ttf: -------------------------------------------------------------------------------- 1 | ../../../external/material-icons/MaterialIcons.ttf -------------------------------------------------------------------------------- /assets/web/ext/addon-attach.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-attach.js -------------------------------------------------------------------------------- /assets/web/ext/addon-attach.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-attach.js.map -------------------------------------------------------------------------------- /assets/web/ext/addon-clipboard.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-clipboard.js -------------------------------------------------------------------------------- /assets/web/ext/addon-clipboard.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-clipboard.js.map -------------------------------------------------------------------------------- /assets/web/ext/addon-fit.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-fit.js -------------------------------------------------------------------------------- /assets/web/ext/addon-fit.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-fit.js.map -------------------------------------------------------------------------------- /assets/web/ext/addon-image.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-image.js -------------------------------------------------------------------------------- /assets/web/ext/addon-image.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-image.js.map -------------------------------------------------------------------------------- /assets/web/ext/addon-search.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-search.js -------------------------------------------------------------------------------- /assets/web/ext/addon-search.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-search.js.map -------------------------------------------------------------------------------- /assets/web/ext/addon-serialize.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-serialize.js -------------------------------------------------------------------------------- /assets/web/ext/addon-serialize.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-serialize.js.map -------------------------------------------------------------------------------- /assets/web/ext/addon-unicode11.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-unicode11.js -------------------------------------------------------------------------------- /assets/web/ext/addon-unicode11.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-unicode11.js.map -------------------------------------------------------------------------------- /assets/web/ext/addon-web-links.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-web-links.js -------------------------------------------------------------------------------- /assets/web/ext/addon-web-links.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-web-links.js.map -------------------------------------------------------------------------------- /assets/web/ext/addon-webgl.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-webgl.js -------------------------------------------------------------------------------- /assets/web/ext/addon-webgl.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/addon-webgl.js.map -------------------------------------------------------------------------------- /assets/web/ext/material-components-web.css: -------------------------------------------------------------------------------- 1 | ../../../external/material-components-web/material-components-web.css -------------------------------------------------------------------------------- /assets/web/ext/material-components-web.css.map: -------------------------------------------------------------------------------- 1 | ../../../external/material-components-web/material-components-web.css.map -------------------------------------------------------------------------------- /assets/web/ext/material-components-web.js: -------------------------------------------------------------------------------- 1 | ../../../external/material-components-web/material-components-web.js -------------------------------------------------------------------------------- /assets/web/ext/material-components-web.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/material-components-web/material-components-web.js.map -------------------------------------------------------------------------------- /assets/web/ext/xterm.css: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/xterm.css -------------------------------------------------------------------------------- /assets/web/ext/xterm.js: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/xterm.js -------------------------------------------------------------------------------- /assets/web/ext/xterm.js.map: -------------------------------------------------------------------------------- 1 | ../../../external/xtermjs/xterm.js.map -------------------------------------------------------------------------------- /assets/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/web/favicon.ico -------------------------------------------------------------------------------- /assets/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/web/index.html -------------------------------------------------------------------------------- /assets/web/res/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/web/res/index.css -------------------------------------------------------------------------------- /assets/web/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/web/res/index.js -------------------------------------------------------------------------------- /assets/webrtc-kvm-client.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/webrtc-kvm-client.desktop.in -------------------------------------------------------------------------------- /assets/webrtc-kvm.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/webrtc-kvm.service.in -------------------------------------------------------------------------------- /assets/webrtc-kvm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/assets/webrtc-kvm.svg -------------------------------------------------------------------------------- /configs/webrtc-antc-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/configs/webrtc-antc-v3.yaml -------------------------------------------------------------------------------- /configs/webrtc-rk3568-rk628d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/configs/webrtc-rk3568-rk628d.yaml -------------------------------------------------------------------------------- /configs/webrtc-rk3588.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/configs/webrtc-rk3588.yaml -------------------------------------------------------------------------------- /configs/webrtc-rpi-ms2130.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/configs/webrtc-rpi-ms2130.yaml -------------------------------------------------------------------------------- /configs/webrtc-rpi-unicam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/configs/webrtc-rpi-unicam.yaml -------------------------------------------------------------------------------- /external/material-components-web/material-components-web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/material-components-web/material-components-web.css -------------------------------------------------------------------------------- /external/material-components-web/material-components-web.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/material-components-web/material-components-web.css.map -------------------------------------------------------------------------------- /external/material-components-web/material-components-web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/material-components-web/material-components-web.d.ts -------------------------------------------------------------------------------- /external/material-components-web/material-components-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/material-components-web/material-components-web.js -------------------------------------------------------------------------------- /external/material-components-web/material-components-web.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/material-components-web/material-components-web.js.map -------------------------------------------------------------------------------- /external/material-icons/MaterialIcons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/material-icons/MaterialIcons.css -------------------------------------------------------------------------------- /external/material-icons/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/material-icons/MaterialIcons.ttf -------------------------------------------------------------------------------- /external/xtermjs/addon-attach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-attach.js -------------------------------------------------------------------------------- /external/xtermjs/addon-attach.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-attach.js.map -------------------------------------------------------------------------------- /external/xtermjs/addon-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-clipboard.js -------------------------------------------------------------------------------- /external/xtermjs/addon-clipboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-clipboard.js.map -------------------------------------------------------------------------------- /external/xtermjs/addon-fit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-fit.js -------------------------------------------------------------------------------- /external/xtermjs/addon-fit.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-fit.js.map -------------------------------------------------------------------------------- /external/xtermjs/addon-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-image.js -------------------------------------------------------------------------------- /external/xtermjs/addon-image.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-image.js.LICENSE.txt -------------------------------------------------------------------------------- /external/xtermjs/addon-image.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-image.js.map -------------------------------------------------------------------------------- /external/xtermjs/addon-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-search.js -------------------------------------------------------------------------------- /external/xtermjs/addon-search.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-search.js.map -------------------------------------------------------------------------------- /external/xtermjs/addon-serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-serialize.js -------------------------------------------------------------------------------- /external/xtermjs/addon-serialize.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-serialize.js.map -------------------------------------------------------------------------------- /external/xtermjs/addon-unicode11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-unicode11.js -------------------------------------------------------------------------------- /external/xtermjs/addon-unicode11.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-unicode11.js.map -------------------------------------------------------------------------------- /external/xtermjs/addon-web-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-web-links.js -------------------------------------------------------------------------------- /external/xtermjs/addon-web-links.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-web-links.js.map -------------------------------------------------------------------------------- /external/xtermjs/addon-webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-webgl.js -------------------------------------------------------------------------------- /external/xtermjs/addon-webgl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/addon-webgl.js.map -------------------------------------------------------------------------------- /external/xtermjs/xterm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/xterm.css -------------------------------------------------------------------------------- /external/xtermjs/xterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/xterm.js -------------------------------------------------------------------------------- /external/xtermjs/xterm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/external/xtermjs/xterm.js.map -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/meson_options.txt -------------------------------------------------------------------------------- /package/.gitignore: -------------------------------------------------------------------------------- 1 | *.pkg.tar.* 2 | /src 3 | /pkg 4 | 5 | -------------------------------------------------------------------------------- /package/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/package/PKGBUILD -------------------------------------------------------------------------------- /src/abstract/async-runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/async-runner.cpp -------------------------------------------------------------------------------- /src/abstract/async-runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/async-runner.h -------------------------------------------------------------------------------- /src/abstract/buffer-queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/buffer-queue.cpp -------------------------------------------------------------------------------- /src/abstract/buffer-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/buffer-queue.h -------------------------------------------------------------------------------- /src/abstract/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/buffer.cpp -------------------------------------------------------------------------------- /src/abstract/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/buffer.h -------------------------------------------------------------------------------- /src/abstract/loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/loop.cpp -------------------------------------------------------------------------------- /src/abstract/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/loop.h -------------------------------------------------------------------------------- /src/abstract/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/meson.build -------------------------------------------------------------------------------- /src/abstract/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/plugin.cpp -------------------------------------------------------------------------------- /src/abstract/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/plugin.h -------------------------------------------------------------------------------- /src/abstract/resource_release.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/resource_release.h -------------------------------------------------------------------------------- /src/abstract/signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/signals.cpp -------------------------------------------------------------------------------- /src/abstract/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/abstract/signals.h -------------------------------------------------------------------------------- /src/algo/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/base64.cpp -------------------------------------------------------------------------------- /src/algo/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/base64.h -------------------------------------------------------------------------------- /src/algo/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/blob.cpp -------------------------------------------------------------------------------- /src/algo/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/blob.h -------------------------------------------------------------------------------- /src/algo/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/crc32.cpp -------------------------------------------------------------------------------- /src/algo/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/crc32.h -------------------------------------------------------------------------------- /src/algo/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/hash.cpp -------------------------------------------------------------------------------- /src/algo/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/hash.h -------------------------------------------------------------------------------- /src/algo/hash_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/hash_algo.cpp -------------------------------------------------------------------------------- /src/algo/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/meson.build -------------------------------------------------------------------------------- /src/algo/url-net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/url-net.cpp -------------------------------------------------------------------------------- /src/algo/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/url.cpp -------------------------------------------------------------------------------- /src/algo/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/url.h -------------------------------------------------------------------------------- /src/algo/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/uuid.cpp -------------------------------------------------------------------------------- /src/algo/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/algo/uuid.h -------------------------------------------------------------------------------- /src/client/login/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/login/login.cpp -------------------------------------------------------------------------------- /src/client/login/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/login/login.h -------------------------------------------------------------------------------- /src/client/login/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/login/meson.build -------------------------------------------------------------------------------- /src/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/main.cpp -------------------------------------------------------------------------------- /src/client/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/meson.build -------------------------------------------------------------------------------- /src/client/screen/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/connection.cpp -------------------------------------------------------------------------------- /src/client/screen/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/display.cpp -------------------------------------------------------------------------------- /src/client/screen/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/event.cpp -------------------------------------------------------------------------------- /src/client/screen/handshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/handshake.cpp -------------------------------------------------------------------------------- /src/client/screen/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/http.cpp -------------------------------------------------------------------------------- /src/client/screen/input/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/channel.cpp -------------------------------------------------------------------------------- /src/client/screen/input/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/event.cpp -------------------------------------------------------------------------------- /src/client/screen/input/fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/fill.cpp -------------------------------------------------------------------------------- /src/client/screen/input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/input.cpp -------------------------------------------------------------------------------- /src/client/screen/input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/input.h -------------------------------------------------------------------------------- /src/client/screen/input/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/map.cpp -------------------------------------------------------------------------------- /src/client/screen/input/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/meson.build -------------------------------------------------------------------------------- /src/client/screen/input/qt_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/qt_map.cpp -------------------------------------------------------------------------------- /src/client/screen/input/x11_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/input/x11_map.cpp -------------------------------------------------------------------------------- /src/client/screen/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/login.cpp -------------------------------------------------------------------------------- /src/client/screen/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/meson.build -------------------------------------------------------------------------------- /src/client/screen/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/screen.cpp -------------------------------------------------------------------------------- /src/client/screen/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/screen.h -------------------------------------------------------------------------------- /src/client/screen/slots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/slots.cpp -------------------------------------------------------------------------------- /src/client/screen/video/deinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/deinit.cpp -------------------------------------------------------------------------------- /src/client/screen/video/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/format.cpp -------------------------------------------------------------------------------- /src/client/screen/video/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/initialize.cpp -------------------------------------------------------------------------------- /src/client/screen/video/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/meson.build -------------------------------------------------------------------------------- /src/client/screen/video/receive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/receive.cpp -------------------------------------------------------------------------------- /src/client/screen/video/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/stream.cpp -------------------------------------------------------------------------------- /src/client/screen/video/swscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/swscale.cpp -------------------------------------------------------------------------------- /src/client/screen/video/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/track.cpp -------------------------------------------------------------------------------- /src/client/screen/video/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/video.cpp -------------------------------------------------------------------------------- /src/client/screen/video/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/video/video.h -------------------------------------------------------------------------------- /src/client/screen/webrtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/client/screen/webrtc.cpp -------------------------------------------------------------------------------- /src/compress/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/compress/compress.h -------------------------------------------------------------------------------- /src/compress/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/compress/find.cpp -------------------------------------------------------------------------------- /src/compress/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/compress/meson.build -------------------------------------------------------------------------------- /src/compress/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/compress/process.cpp -------------------------------------------------------------------------------- /src/compress/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/compress/property.cpp -------------------------------------------------------------------------------- /src/compress/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/compress/register.cpp -------------------------------------------------------------------------------- /src/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/config/config.cpp -------------------------------------------------------------------------------- /src/config/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/config/configs.h -------------------------------------------------------------------------------- /src/config/default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/config/default.cpp -------------------------------------------------------------------------------- /src/config/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/config/meson.build -------------------------------------------------------------------------------- /src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/defines.h -------------------------------------------------------------------------------- /src/external/kmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/external/kmod.h -------------------------------------------------------------------------------- /src/external/meson.build: -------------------------------------------------------------------------------- 1 | webrtc_kvm_src_external = files([ 2 | 'wrapper.cpp', 3 | ]) 4 | -------------------------------------------------------------------------------- /src/external/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/external/wrapper.cpp -------------------------------------------------------------------------------- /src/external/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/external/wrapper.h -------------------------------------------------------------------------------- /src/gadget/core/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/base.cpp -------------------------------------------------------------------------------- /src/gadget/core/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/config.cpp -------------------------------------------------------------------------------- /src/gadget/core/config_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/config_string.cpp -------------------------------------------------------------------------------- /src/gadget/core/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/function.cpp -------------------------------------------------------------------------------- /src/gadget/core/gadget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/gadget.cpp -------------------------------------------------------------------------------- /src/gadget/core/gadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/gadget.h -------------------------------------------------------------------------------- /src/gadget/core/gadget_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/gadget_config.h -------------------------------------------------------------------------------- /src/gadget/core/gadget_config_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/gadget_config_string.h -------------------------------------------------------------------------------- /src/gadget/core/gadget_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/gadget_function.h -------------------------------------------------------------------------------- /src/gadget/core/gadget_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/gadget_string.h -------------------------------------------------------------------------------- /src/gadget/core/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/internal.h -------------------------------------------------------------------------------- /src/gadget/core/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/meson.build -------------------------------------------------------------------------------- /src/gadget/core/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/shared.h -------------------------------------------------------------------------------- /src/gadget/core/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/core/string.cpp -------------------------------------------------------------------------------- /src/gadget/functions/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/functions.cpp -------------------------------------------------------------------------------- /src/gadget/functions/gadget_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_acm.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_ecm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_ecm.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_eem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_eem.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_ether.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_ffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_ffs.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_hid.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_mass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_mass.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_ncm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_ncm.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_net.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_rndis.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_serial.h -------------------------------------------------------------------------------- /src/gadget/functions/gadget_tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/gadget_tty.h -------------------------------------------------------------------------------- /src/gadget/functions/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/hid.cpp -------------------------------------------------------------------------------- /src/gadget/functions/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/functions/meson.build -------------------------------------------------------------------------------- /src/gadget/gadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/gadget.h -------------------------------------------------------------------------------- /src/gadget/gadget_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/gadget_ctx.h -------------------------------------------------------------------------------- /src/gadget/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/initialize.cpp -------------------------------------------------------------------------------- /src/gadget/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/input.cpp -------------------------------------------------------------------------------- /src/gadget/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/meson.build -------------------------------------------------------------------------------- /src/gadget/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/gadget/string.cpp -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/global.h -------------------------------------------------------------------------------- /src/http/auth/authorization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/auth/authorization.cpp -------------------------------------------------------------------------------- /src/http/auth/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/auth/meson.build -------------------------------------------------------------------------------- /src/http/auth/no_pam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/auth/no_pam.cpp -------------------------------------------------------------------------------- /src/http/auth/pam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/auth/pam.cpp -------------------------------------------------------------------------------- /src/http/auth/password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/auth/password.cpp -------------------------------------------------------------------------------- /src/http/core/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/compress.cpp -------------------------------------------------------------------------------- /src/http/core/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/connection.cpp -------------------------------------------------------------------------------- /src/http/core/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/exceptions.cpp -------------------------------------------------------------------------------- /src/http/core/generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/generic.cpp -------------------------------------------------------------------------------- /src/http/core/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/header.cpp -------------------------------------------------------------------------------- /src/http/core/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/meson.build -------------------------------------------------------------------------------- /src/http/core/post.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/post.cpp -------------------------------------------------------------------------------- /src/http/core/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/process.cpp -------------------------------------------------------------------------------- /src/http/core/restful.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/restful.cpp -------------------------------------------------------------------------------- /src/http/core/static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/core/static.cpp -------------------------------------------------------------------------------- /src/http/data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/data/meson.build -------------------------------------------------------------------------------- /src/http/data/methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/data/methods.h -------------------------------------------------------------------------------- /src/http/data/mime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/data/mime.cpp -------------------------------------------------------------------------------- /src/http/data/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/data/mime.h -------------------------------------------------------------------------------- /src/http/data/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/data/string.cpp -------------------------------------------------------------------------------- /src/http/data/versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/data/versions.h -------------------------------------------------------------------------------- /src/http/handlers/auth_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/auth_check.cpp -------------------------------------------------------------------------------- /src/http/handlers/auth_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/auth_info.cpp -------------------------------------------------------------------------------- /src/http/handlers/auth_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/auth_login.cpp -------------------------------------------------------------------------------- /src/http/handlers/auth_logout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/auth_logout.cpp -------------------------------------------------------------------------------- /src/http/handlers/exit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/exit.cpp -------------------------------------------------------------------------------- /src/http/handlers/input_get_key_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/input_get_key_map.cpp -------------------------------------------------------------------------------- /src/http/handlers/input_get_mouse_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/input_get_mouse_mode.cpp -------------------------------------------------------------------------------- /src/http/handlers/input_set_mouse_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/input_set_mouse_mode.cpp -------------------------------------------------------------------------------- /src/http/handlers/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/meson.build -------------------------------------------------------------------------------- /src/http/handlers/static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/static.cpp -------------------------------------------------------------------------------- /src/http/handlers/stream_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/stream_start.cpp -------------------------------------------------------------------------------- /src/http/handlers/stream_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/stream_status.cpp -------------------------------------------------------------------------------- /src/http/handlers/stream_stop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/stream_stop.cpp -------------------------------------------------------------------------------- /src/http/handlers/webrtc_get_sdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/webrtc_get_sdp.cpp -------------------------------------------------------------------------------- /src/http/handlers/webrtc_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/webrtc_new.cpp -------------------------------------------------------------------------------- /src/http/handlers/webrtc_set_sdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/handlers/webrtc_set_sdp.cpp -------------------------------------------------------------------------------- /src/http/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/http.h -------------------------------------------------------------------------------- /src/http/httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/httpd.cpp -------------------------------------------------------------------------------- /src/http/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/http/meson.build -------------------------------------------------------------------------------- /src/input/descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/descriptor.cpp -------------------------------------------------------------------------------- /src/input/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/hid.cpp -------------------------------------------------------------------------------- /src/input/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/hid.h -------------------------------------------------------------------------------- /src/input/hid_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/hid_map.cpp -------------------------------------------------------------------------------- /src/input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/input.cpp -------------------------------------------------------------------------------- /src/input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/input.h -------------------------------------------------------------------------------- /src/input/input_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/input_ctx.h -------------------------------------------------------------------------------- /src/input/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/meson.build -------------------------------------------------------------------------------- /src/input/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/print.cpp -------------------------------------------------------------------------------- /src/input/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/string.cpp -------------------------------------------------------------------------------- /src/input/web_key_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/input/web_key_map.cpp -------------------------------------------------------------------------------- /src/lib/configfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/configfile.cpp -------------------------------------------------------------------------------- /src/lib/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/configfile.h -------------------------------------------------------------------------------- /src/lib/devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/devices.cpp -------------------------------------------------------------------------------- /src/lib/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/exception.h -------------------------------------------------------------------------------- /src/lib/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/exceptions.cpp -------------------------------------------------------------------------------- /src/lib/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/files.cpp -------------------------------------------------------------------------------- /src/lib/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/files.h -------------------------------------------------------------------------------- /src/lib/folder_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/folder_reader.cpp -------------------------------------------------------------------------------- /src/lib/full_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/full_io.cpp -------------------------------------------------------------------------------- /src/lib/full_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/full_io.h -------------------------------------------------------------------------------- /src/lib/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/log.cpp -------------------------------------------------------------------------------- /src/lib/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/log.h -------------------------------------------------------------------------------- /src/lib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/meson.build -------------------------------------------------------------------------------- /src/lib/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/modules.cpp -------------------------------------------------------------------------------- /src/lib/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/modules.h -------------------------------------------------------------------------------- /src/lib/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/path.c -------------------------------------------------------------------------------- /src/lib/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/path.cpp -------------------------------------------------------------------------------- /src/lib/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/path.h -------------------------------------------------------------------------------- /src/lib/readable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/readable.cpp -------------------------------------------------------------------------------- /src/lib/readable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/readable.h -------------------------------------------------------------------------------- /src/lib/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/strings.cpp -------------------------------------------------------------------------------- /src/lib/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/lib/strings.h -------------------------------------------------------------------------------- /src/main/builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/main/builtin.h -------------------------------------------------------------------------------- /src/main/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/main/initialize.cpp -------------------------------------------------------------------------------- /src/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/main/main.cpp -------------------------------------------------------------------------------- /src/main/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/main/meson.build -------------------------------------------------------------------------------- /src/main/rate_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/main/rate_thread.cpp -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/plugins/compress/brotli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/compress/brotli.cpp -------------------------------------------------------------------------------- /src/plugins/compress/bzip2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/compress/bzip2.cpp -------------------------------------------------------------------------------- /src/plugins/compress/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/compress/meson.build -------------------------------------------------------------------------------- /src/plugins/compress/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/compress/zlib.cpp -------------------------------------------------------------------------------- /src/plugins/compress/zstd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/compress/zstd.cpp -------------------------------------------------------------------------------- /src/plugins/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/meson.build -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/ffmpeg.h -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/meson.build -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/shared/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/shared/format.cpp -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/shared/meson.build: -------------------------------------------------------------------------------- 1 | webrtc_kvm_src_video_ffmpeg_shared = files([ 2 | 'format.cpp', 3 | ]) 4 | -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/swscale/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/swscale/config.cpp -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/swscale/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/swscale/factory.cpp -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/swscale/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/swscale/init.cpp -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/swscale/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/swscale/meson.build -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/swscale/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/swscale/process.cpp -------------------------------------------------------------------------------- /src/plugins/video/ffmpeg/swscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/ffmpeg/swscale/swscale.h -------------------------------------------------------------------------------- /src/plugins/video/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/meson.build -------------------------------------------------------------------------------- /src/plugins/video/noop/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/noop/factory.cpp -------------------------------------------------------------------------------- /src/plugins/video/noop/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/noop/meson.build -------------------------------------------------------------------------------- /src/plugins/video/noop/noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/noop/noop.h -------------------------------------------------------------------------------- /src/plugins/video/noop/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/noop/pipe.cpp -------------------------------------------------------------------------------- /src/plugins/video/noop/sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/noop/sink.cpp -------------------------------------------------------------------------------- /src/plugins/video/posix/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/config.cpp -------------------------------------------------------------------------------- /src/plugins/video/posix/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/connection.cpp -------------------------------------------------------------------------------- /src/plugins/video/posix/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/factory.cpp -------------------------------------------------------------------------------- /src/plugins/video/posix/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/initialize.cpp -------------------------------------------------------------------------------- /src/plugins/video/posix/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/meson.build -------------------------------------------------------------------------------- /src/plugins/video/posix/open.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/open.cpp -------------------------------------------------------------------------------- /src/plugins/video/posix/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/posix.h -------------------------------------------------------------------------------- /src/plugins/video/posix/read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/read.cpp -------------------------------------------------------------------------------- /src/plugins/video/posix/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/start.cpp -------------------------------------------------------------------------------- /src/plugins/video/posix/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/posix/write.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/config.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/config_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/config_list.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/decoder.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/decoder_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/decoder_init.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/encoder.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/encoder_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/encoder_init.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/factory.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/format.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/fourcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/fourcc.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/init.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/meson.build -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/process.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/rkmpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/rkmpp.h -------------------------------------------------------------------------------- /src/plugins/video/rkmpp/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkmpp/start.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkrga/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/buffer.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkrga/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/config.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkrga/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/factory.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkrga/fourcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/fourcc.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkrga/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/meson.build -------------------------------------------------------------------------------- /src/plugins/video/rkrga/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/process.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkrga/rkrga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/rkrga.h -------------------------------------------------------------------------------- /src/plugins/video/rkrga/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/start.cpp -------------------------------------------------------------------------------- /src/plugins/video/rkrga/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/rkrga/string.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/edid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/edid.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/factory.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/init.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/link.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/meson.build -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/process.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/start.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/subdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/subdev.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/cap/v4l2_cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/cap/v4l2_cap.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/alloc.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/buffer.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/config.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/dequeue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/dequeue.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/device.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/dmabuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/dmabuf.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/format.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/init.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/link.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/match.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/meson.build -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/mmap.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/queue.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/uptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/uptr.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/dev/v4l2_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/dev/v4l2_dev.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/config.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/decoder.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/encoder.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/factory.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/init.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/input.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/link.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/meson.build -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/output.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/queue.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/start.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/m2m/v4l2_m2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/m2m/v4l2_m2m.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/device.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/device.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/entity.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/entity.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/entity_desc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/entity_desc.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/entity_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/entity_desc.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/interface.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/interface.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/link.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/link.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/meson.build -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/pad.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/pad.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/topology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/topology.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/media/topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/media/topology.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/meson.build -------------------------------------------------------------------------------- /src/plugins/video/v4l2/out/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/out/config.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/out/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/out/factory.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/out/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/out/init.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/out/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/out/meson.build -------------------------------------------------------------------------------- /src/plugins/video/v4l2/out/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/out/process.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/out/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/out/queue.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/out/v4l2_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/out/v4l2_out.h -------------------------------------------------------------------------------- /src/plugins/video/v4l2/v4l2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/v4l2.cpp -------------------------------------------------------------------------------- /src/plugins/video/v4l2/v4l2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/plugins/video/v4l2/v4l2.h -------------------------------------------------------------------------------- /src/string/fourcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/string/fourcc.cpp -------------------------------------------------------------------------------- /src/string/h264_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/string/h264_level.cpp -------------------------------------------------------------------------------- /src/string/h264_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/string/h264_profile.cpp -------------------------------------------------------------------------------- /src/string/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/string/meson.build -------------------------------------------------------------------------------- /src/string/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/string/rtc.cpp -------------------------------------------------------------------------------- /src/string/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/string/strings.h -------------------------------------------------------------------------------- /src/string/v4l2_buf_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/string/v4l2_buf_type.cpp -------------------------------------------------------------------------------- /src/string/v4l2_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/string/v4l2_memory.cpp -------------------------------------------------------------------------------- /src/test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/test/meson.build -------------------------------------------------------------------------------- /src/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/test/test.cpp -------------------------------------------------------------------------------- /src/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/test/test.h -------------------------------------------------------------------------------- /src/test/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/test/tests/meson.build -------------------------------------------------------------------------------- /src/test/tests/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/test/tests/path.cpp -------------------------------------------------------------------------------- /src/test/tests/readable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/test/tests/readable.cpp -------------------------------------------------------------------------------- /src/test/tests/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/test/tests/string.cpp -------------------------------------------------------------------------------- /src/video/factory/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/factory/config.cpp -------------------------------------------------------------------------------- /src/video/factory/create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/factory/create.cpp -------------------------------------------------------------------------------- /src/video/factory/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/factory/meson.build -------------------------------------------------------------------------------- /src/video/factory/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/factory/register.cpp -------------------------------------------------------------------------------- /src/video/link/bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/link/bind.cpp -------------------------------------------------------------------------------- /src/video/link/create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/link/create.cpp -------------------------------------------------------------------------------- /src/video/link/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/link/init.cpp -------------------------------------------------------------------------------- /src/video/link/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/link/meson.build -------------------------------------------------------------------------------- /src/video/list/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/list/add.cpp -------------------------------------------------------------------------------- /src/video/list/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/list/find.cpp -------------------------------------------------------------------------------- /src/video/list/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/list/meson.build -------------------------------------------------------------------------------- /src/video/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/meson.build -------------------------------------------------------------------------------- /src/video/old/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/old/initialize.cpp -------------------------------------------------------------------------------- /src/video/old/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/old/setup.cpp -------------------------------------------------------------------------------- /src/video/old/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/old/stream.cpp -------------------------------------------------------------------------------- /src/video/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream.h -------------------------------------------------------------------------------- /src/video/stream/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/config.cpp -------------------------------------------------------------------------------- /src/video/stream/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/device.cpp -------------------------------------------------------------------------------- /src/video/stream/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/event.cpp -------------------------------------------------------------------------------- /src/video/stream/generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/generic.cpp -------------------------------------------------------------------------------- /src/video/stream/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/input.cpp -------------------------------------------------------------------------------- /src/video/stream/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/link.cpp -------------------------------------------------------------------------------- /src/video/stream/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/meson.build -------------------------------------------------------------------------------- /src/video/stream/poll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/poll.cpp -------------------------------------------------------------------------------- /src/video/stream/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/start.cpp -------------------------------------------------------------------------------- /src/video/stream/stop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/stop.cpp -------------------------------------------------------------------------------- /src/video/stream/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/video/stream/string.cpp -------------------------------------------------------------------------------- /src/webrtc/datachannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/datachannel.cpp -------------------------------------------------------------------------------- /src/webrtc/enable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/enable.cpp -------------------------------------------------------------------------------- /src/webrtc/endpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/endpoint.cpp -------------------------------------------------------------------------------- /src/webrtc/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/event.cpp -------------------------------------------------------------------------------- /src/webrtc/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/factory.cpp -------------------------------------------------------------------------------- /src/webrtc/gathering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/gathering.cpp -------------------------------------------------------------------------------- /src/webrtc/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/initialize.cpp -------------------------------------------------------------------------------- /src/webrtc/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/input.cpp -------------------------------------------------------------------------------- /src/webrtc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/meson.build -------------------------------------------------------------------------------- /src/webrtc/sdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/sdp.cpp -------------------------------------------------------------------------------- /src/webrtc/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/start.cpp -------------------------------------------------------------------------------- /src/webrtc/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/state.cpp -------------------------------------------------------------------------------- /src/webrtc/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/stream.cpp -------------------------------------------------------------------------------- /src/webrtc/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/track.cpp -------------------------------------------------------------------------------- /src/webrtc/webrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc/webrtc.h -------------------------------------------------------------------------------- /src/webrtc_kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/webrtc-kvm/HEAD/src/webrtc_kvm.h --------------------------------------------------------------------------------