├── .cirrus.yml ├── .clang-format ├── .cmake-format.json ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github └── workflows │ ├── clang-format.yml │ ├── crowdin-sync-download.yml │ ├── crowdin-sync-upload.yml │ ├── docs.yml │ ├── main.yml │ └── services-json.yml ├── .gitignore ├── .gitmodules ├── .mailmap ├── AUTHORS ├── CI ├── build-freebsd.sh ├── build-linux.sh ├── build-macos.sh ├── build-windows.ps1 ├── check-changes.sh ├── check-cmake.sh ├── check-format.sh ├── check-jsonschema.py ├── check-services.py ├── flatpak │ └── com.obsproject.Studio.GTK4.json ├── freebsd │ ├── 01_install_dependencies.sh │ ├── 02_build_obs.sh │ └── 03_package_obs.sh ├── include │ ├── Brewfile │ ├── Wingetfile │ ├── build_support.sh │ ├── build_support_freebsd.sh │ ├── build_support_linux.sh │ ├── build_support_macos.sh │ └── build_support_windows.ps1 ├── linux │ ├── 01_install_dependencies.sh │ ├── 02_build_obs.sh │ └── 03_package_obs.sh ├── macos │ ├── 01_install_dependencies.sh │ ├── 02_build_obs.sh │ └── 03_package_obs.sh ├── scripts │ └── macos │ │ └── app │ │ └── Info.plist ├── steam │ ├── obs_build.vdf │ ├── scripts_macos │ │ └── launch.sh │ └── scripts_windows │ │ ├── install.bat │ │ ├── installscript.vdf │ │ └── uninstall.bat └── windows │ ├── 01_install_dependencies.ps1 │ ├── 02_build_obs.ps1 │ └── 03_package_obs.ps1 ├── CMakeLists.txt ├── COC.rst ├── COMMITMENT ├── CONTRIBUTING.rst ├── COPYING ├── INSTALL ├── README.rst ├── UI ├── CMakeLists.txt ├── adv-audio-control.cpp ├── adv-audio-control.hpp ├── api-interface.cpp ├── audio-encoders.cpp ├── audio-encoders.hpp ├── auth-base.cpp ├── auth-base.hpp ├── auth-listener.cpp ├── auth-listener.hpp ├── auth-oauth.cpp ├── auth-oauth.hpp ├── auth-restream.cpp ├── auth-restream.hpp ├── auth-twitch.cpp ├── auth-twitch.hpp ├── auth-youtube.cpp ├── auth-youtube.hpp ├── balance-slider.hpp ├── clickable-label.hpp ├── context-bar-controls.cpp ├── context-bar-controls.hpp ├── crash-report.cpp ├── crash-report.hpp ├── data │ ├── OBSPublicRSAKey.pem │ ├── images │ │ └── overflow.png │ ├── license │ │ └── gplv2.txt │ ├── locale.ini │ ├── locale │ │ ├── an-ES.ini │ │ ├── ar-SA.ini │ │ ├── az-AZ.ini │ │ ├── ba-RU.ini │ │ ├── be-BY.ini │ │ ├── bem-ZM.ini │ │ ├── bg-BG.ini │ │ ├── bn-BD.ini │ │ ├── ca-ES.ini │ │ ├── cs-CZ.ini │ │ ├── da-DK.ini │ │ ├── de-DE.ini │ │ ├── el-GR.ini │ │ ├── en-GB.ini │ │ ├── en-US.ini │ │ ├── eo-UY.ini │ │ ├── es-ES.ini │ │ ├── et-EE.ini │ │ ├── eu-ES.ini │ │ ├── fa-IR.ini │ │ ├── fi-FI.ini │ │ ├── fil-PH.ini │ │ ├── fr-FR.ini │ │ ├── gd-GB.ini │ │ ├── gl-ES.ini │ │ ├── he-IL.ini │ │ ├── hi-IN.ini │ │ ├── hr-HR.ini │ │ ├── hu-HU.ini │ │ ├── hy-AM.ini │ │ ├── id-ID.ini │ │ ├── it-IT.ini │ │ ├── ja-JP.ini │ │ ├── ka-GE.ini │ │ ├── kab-KAB.ini │ │ ├── kmr-TR.ini │ │ ├── ko-KR.ini │ │ ├── lo-LA.ini │ │ ├── lt-LT.ini │ │ ├── lv-LV.ini │ │ ├── mn-MN.ini │ │ ├── ms-MY.ini │ │ ├── nb-NO.ini │ │ ├── nl-NL.ini │ │ ├── nn-NO.ini │ │ ├── oc-FR.ini │ │ ├── pa-IN.ini │ │ ├── pl-PL.ini │ │ ├── pt-BR.ini │ │ ├── pt-PT.ini │ │ ├── ro-RO.ini │ │ ├── ru-RU.ini │ │ ├── si-LK.ini │ │ ├── sk-SK.ini │ │ ├── sl-SI.ini │ │ ├── sq-AL.ini │ │ ├── sr-CS.ini │ │ ├── sr-SP.ini │ │ ├── sv-SE.ini │ │ ├── szl-PL.ini │ │ ├── ta-IN.ini │ │ ├── te-IN.ini │ │ ├── th-TH.ini │ │ ├── tl-PH.ini │ │ ├── tr-TR.ini │ │ ├── uk-UA.ini │ │ ├── ur-PK.ini │ │ ├── vi-VN.ini │ │ ├── zh-CN.ini │ │ └── zh-TW.ini │ └── themes │ │ ├── Acri.qss │ │ ├── Acri │ │ ├── bot_hook.png │ │ ├── bot_hook2.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_focus.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_focus.png │ │ ├── radio_checked.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_focus.png │ │ ├── radio_unchecked.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_focus.png │ │ ├── sizegrip.png │ │ └── top_hook.png │ │ ├── Dark.qss │ │ ├── Dark │ │ ├── alert.svg │ │ ├── close.svg │ │ ├── cogs.svg │ │ ├── collapse.svg │ │ ├── dots-vert.svg │ │ ├── dots.svg │ │ ├── down.svg │ │ ├── entry-clear.svg │ │ ├── expand.svg │ │ ├── filter.svg │ │ ├── interact.svg │ │ ├── left.svg │ │ ├── locked.svg │ │ ├── media-pause.svg │ │ ├── media │ │ │ ├── media_next.svg │ │ │ ├── media_pause.svg │ │ │ ├── media_play.svg │ │ │ ├── media_previous.svg │ │ │ ├── media_restart.svg │ │ │ └── media_stop.svg │ │ ├── minus.svg │ │ ├── mute.svg │ │ ├── no_sources.svg │ │ ├── plus.svg │ │ ├── popout.svg │ │ ├── refresh.svg │ │ ├── revert.svg │ │ ├── right.svg │ │ ├── save.svg │ │ ├── settings │ │ │ ├── accessibility.svg │ │ │ ├── advanced.svg │ │ │ ├── audio.svg │ │ │ ├── general.svg │ │ │ ├── hotkeys.svg │ │ │ ├── output.svg │ │ │ ├── stream.svg │ │ │ └── video.svg │ │ ├── sources │ │ │ ├── brush.svg │ │ │ ├── camera.svg │ │ │ ├── default.svg │ │ │ ├── gamepad.svg │ │ │ ├── globe.svg │ │ │ ├── group.svg │ │ │ ├── image.svg │ │ │ ├── media.svg │ │ │ ├── microphone.svg │ │ │ ├── scene.svg │ │ │ ├── slideshow.svg │ │ │ ├── text.svg │ │ │ ├── window.svg │ │ │ └── windowaudio.svg │ │ ├── trash.svg │ │ ├── up.svg │ │ ├── updown.svg │ │ └── visible.svg │ │ ├── Grey.qss │ │ ├── Light.qss │ │ ├── Light │ │ ├── alert.svg │ │ ├── checkbox_checked.svg │ │ ├── checkbox_checked_disabled.svg │ │ ├── checkbox_checked_focus.svg │ │ ├── checkbox_unchecked.svg │ │ ├── checkbox_unchecked_disabled.svg │ │ ├── checkbox_unchecked_focus.svg │ │ ├── close.svg │ │ ├── cogs.svg │ │ ├── collapse.svg │ │ ├── dots-vert.svg │ │ ├── dots.svg │ │ ├── down.svg │ │ ├── entry-clear.svg │ │ ├── expand.svg │ │ ├── filter.svg │ │ ├── interact.svg │ │ ├── left.svg │ │ ├── locked.svg │ │ ├── media-pause.svg │ │ ├── media │ │ │ ├── media_next.svg │ │ │ ├── media_pause.svg │ │ │ ├── media_play.svg │ │ │ ├── media_previous.svg │ │ │ ├── media_restart.svg │ │ │ └── media_stop.svg │ │ ├── minus.svg │ │ ├── mute.svg │ │ ├── no_sources.svg │ │ ├── plus.svg │ │ ├── popout.svg │ │ ├── refresh.svg │ │ ├── revert.svg │ │ ├── right.svg │ │ ├── save.svg │ │ ├── settings │ │ │ ├── accessibility.svg │ │ │ ├── advanced.svg │ │ │ ├── audio.svg │ │ │ ├── general.svg │ │ │ ├── hotkeys.svg │ │ │ ├── output.svg │ │ │ ├── stream.svg │ │ │ └── video.svg │ │ ├── sources │ │ │ ├── brush.svg │ │ │ ├── camera.svg │ │ │ ├── default.svg │ │ │ ├── gamepad.svg │ │ │ ├── globe.svg │ │ │ ├── group.svg │ │ │ ├── image.svg │ │ │ ├── media.svg │ │ │ ├── microphone.svg │ │ │ ├── scene.svg │ │ │ ├── slideshow.svg │ │ │ ├── text.svg │ │ │ ├── window.svg │ │ │ └── windowaudio.svg │ │ ├── trash.svg │ │ ├── up.svg │ │ ├── updown.svg │ │ └── visible.svg │ │ ├── Rachni.qss │ │ ├── Rachni │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_focus.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_focus.png │ │ ├── down_arrow.png │ │ ├── down_arrow_disabled.png │ │ ├── left_arrow.png │ │ ├── left_arrow_disabled.png │ │ ├── radio_checked.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_focus.png │ │ ├── radio_unchecked.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_focus.png │ │ ├── right_arrow.png │ │ ├── right_arrow_disabled.png │ │ ├── sizegrip.png │ │ ├── up_arrow.png │ │ └── up_arrow_disabled.png │ │ ├── System.qss │ │ ├── Yami.qss │ │ └── Yami │ │ ├── checkbox_checked.svg │ │ ├── checkbox_checked_disabled.svg │ │ ├── checkbox_checked_focus.svg │ │ ├── checkbox_unchecked.svg │ │ ├── checkbox_unchecked_disabled.svg │ │ └── checkbox_unchecked_focus.svg ├── display-helpers.hpp ├── double-slider.cpp ├── double-slider.hpp ├── expand-checkbox.hpp ├── focus-list.cpp ├── focus-list.hpp ├── forms │ ├── AutoConfigFinishPage.ui │ ├── AutoConfigStartPage.ui │ ├── AutoConfigStreamPage.ui │ ├── AutoConfigTestPage.ui │ ├── AutoConfigVideoPage.ui │ ├── ColorSelect.ui │ ├── OBSAbout.ui │ ├── OBSAdvAudio.ui │ ├── OBSBasic.ui │ ├── OBSBasicFilters.ui │ ├── OBSBasicInteraction.ui │ ├── OBSBasicProperties.ui │ ├── OBSBasicSettings.ui │ ├── OBSBasicSourceSelect.ui │ ├── OBSBasicTransform.ui │ ├── OBSBasicVCamConfig.ui │ ├── OBSExtraBrowsers.ui │ ├── OBSImporter.ui │ ├── OBSLogReply.ui │ ├── OBSLogViewer.ui │ ├── OBSMissingFiles.ui │ ├── OBSPermissions.ui │ ├── OBSRemux.ui │ ├── OBSUpdate.ui │ ├── OBSYoutubeActions.ui │ ├── XML-Schema-Qt5.15.xsd │ ├── fonts │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-Italic.ttf │ │ └── OpenSans-Regular.ttf │ ├── images │ │ ├── active.png │ │ ├── active_mac.png │ │ ├── alert.svg │ │ ├── cogs.svg │ │ ├── collapse.svg │ │ ├── dots-vert.svg │ │ ├── dots.svg │ │ ├── down.svg │ │ ├── entry-clear.svg │ │ ├── expand.svg │ │ ├── filter.svg │ │ ├── help.svg │ │ ├── help_light.svg │ │ ├── interact.svg │ │ ├── invisible.svg │ │ ├── locked.svg │ │ ├── media-pause.svg │ │ ├── media │ │ │ ├── media_next.svg │ │ │ ├── media_pause.svg │ │ │ ├── media_play.svg │ │ │ ├── media_previous.svg │ │ │ ├── media_restart.svg │ │ │ └── media_stop.svg │ │ ├── minus.svg │ │ ├── mute.svg │ │ ├── no_sources.svg │ │ ├── obs.png │ │ ├── obs_256x256.png │ │ ├── obs_macos.png │ │ ├── obs_macos.svg │ │ ├── obs_paused.png │ │ ├── obs_paused_macos.png │ │ ├── obs_paused_macos.svg │ │ ├── paused.png │ │ ├── paused_mac.png │ │ ├── plus.svg │ │ ├── recording-active.svg │ │ ├── recording-inactive.svg │ │ ├── recording-pause-inactive.svg │ │ ├── recording-pause.svg │ │ ├── refresh.svg │ │ ├── revert.svg │ │ ├── right.svg │ │ ├── save.svg │ │ ├── settings │ │ │ ├── accessibility.svg │ │ │ ├── advanced.svg │ │ │ ├── audio.svg │ │ │ ├── general.svg │ │ │ ├── hotkeys.svg │ │ │ ├── output.svg │ │ │ ├── stream.svg │ │ │ └── video.svg │ │ ├── sources │ │ │ ├── brush.svg │ │ │ ├── camera.svg │ │ │ ├── default.svg │ │ │ ├── gamepad.svg │ │ │ ├── globe.svg │ │ │ ├── group.svg │ │ │ ├── image.svg │ │ │ ├── media.svg │ │ │ ├── microphone.svg │ │ │ ├── scene.svg │ │ │ ├── slideshow.svg │ │ │ ├── text.svg │ │ │ ├── window.svg │ │ │ └── windowaudio.svg │ │ ├── streaming-active.svg │ │ ├── streaming-inactive.svg │ │ ├── tray_active.png │ │ ├── tray_active_macos.png │ │ ├── tray_active_macos.svg │ │ ├── unlocked.svg │ │ ├── up.svg │ │ ├── visible.svg │ │ └── warning.svg │ ├── obs.qrc │ └── source-toolbar │ │ ├── browser-source-toolbar.ui │ │ ├── color-source-toolbar.ui │ │ ├── device-select-toolbar.ui │ │ ├── game-capture-toolbar.ui │ │ ├── image-source-toolbar.ui │ │ ├── media-controls.ui │ │ └── text-source-toolbar.ui ├── frontend-plugins │ ├── CMakeLists.txt │ ├── aja-output-ui │ │ ├── AJAOutputUI.cpp │ │ ├── AJAOutputUI.h │ │ ├── CMakeLists.txt │ │ ├── aja-ui-main.cpp │ │ ├── aja-ui-main.h │ │ ├── data │ │ │ └── locale │ │ │ │ ├── ar-SA.ini │ │ │ │ ├── be-BY.ini │ │ │ │ ├── ca-ES.ini │ │ │ │ ├── cs-CZ.ini │ │ │ │ ├── da-DK.ini │ │ │ │ ├── de-DE.ini │ │ │ │ ├── el-GR.ini │ │ │ │ ├── en-US.ini │ │ │ │ ├── es-ES.ini │ │ │ │ ├── et-EE.ini │ │ │ │ ├── eu-ES.ini │ │ │ │ ├── fa-IR.ini │ │ │ │ ├── fi-FI.ini │ │ │ │ ├── fr-FR.ini │ │ │ │ ├── gl-ES.ini │ │ │ │ ├── he-IL.ini │ │ │ │ ├── hi-IN.ini │ │ │ │ ├── hu-HU.ini │ │ │ │ ├── hy-AM.ini │ │ │ │ ├── id-ID.ini │ │ │ │ ├── it-IT.ini │ │ │ │ ├── ja-JP.ini │ │ │ │ ├── ka-GE.ini │ │ │ │ ├── kmr-TR.ini │ │ │ │ ├── ko-KR.ini │ │ │ │ ├── ms-MY.ini │ │ │ │ ├── nb-NO.ini │ │ │ │ ├── nl-NL.ini │ │ │ │ ├── pl-PL.ini │ │ │ │ ├── pt-BR.ini │ │ │ │ ├── pt-PT.ini │ │ │ │ ├── ro-RO.ini │ │ │ │ ├── ru-RU.ini │ │ │ │ ├── si-LK.ini │ │ │ │ ├── sk-SK.ini │ │ │ │ ├── sl-SI.ini │ │ │ │ ├── sv-SE.ini │ │ │ │ ├── tr-TR.ini │ │ │ │ ├── uk-UA.ini │ │ │ │ ├── vi-VN.ini │ │ │ │ ├── zh-CN.ini │ │ │ │ └── zh-TW.ini │ │ └── forms │ │ │ └── output.ui │ ├── decklink-captions │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── .keepme │ │ ├── decklink-captions.cpp │ │ ├── decklink-captions.h │ │ └── forms │ │ │ └── captions.ui │ ├── decklink-output-ui │ │ ├── CMakeLists.txt │ │ ├── DecklinkOutputUI.cpp │ │ ├── DecklinkOutputUI.h │ │ ├── data │ │ │ └── .keepme │ │ ├── decklink-ui-main.cpp │ │ ├── decklink-ui-main.h │ │ └── forms │ │ │ └── output.ui │ └── frontend-tools │ │ ├── CMakeLists.txt │ │ ├── auto-scene-switcher-nix.cpp │ │ ├── auto-scene-switcher-osx.mm │ │ ├── auto-scene-switcher-win.cpp │ │ ├── auto-scene-switcher.cpp │ │ ├── auto-scene-switcher.hpp │ │ ├── captions-handler.cpp │ │ ├── captions-handler.hpp │ │ ├── captions-mssapi-stream.cpp │ │ ├── captions-mssapi-stream.hpp │ │ ├── captions-mssapi.cpp │ │ ├── captions-mssapi.hpp │ │ ├── captions.cpp │ │ ├── captions.hpp │ │ ├── data │ │ ├── locale │ │ │ ├── an-ES.ini │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── eo-UY.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lo-LA.ini │ │ │ ├── lt-LT.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sq-AL.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ └── scripts │ │ │ ├── clock-source.lua │ │ │ ├── clock-source │ │ │ ├── dial.png │ │ │ ├── hour.png │ │ │ ├── minute.png │ │ │ └── second.png │ │ │ ├── countdown.lua │ │ │ ├── instant-replay.lua │ │ │ ├── pause-scene.lua │ │ │ └── url-text.py │ │ ├── forms │ │ ├── auto-scene-switcher.ui │ │ ├── captions.ui │ │ ├── output-timer.ui │ │ └── scripts.ui │ │ ├── frontend-tools-config.h.in │ │ ├── frontend-tools.c │ │ ├── output-timer.cpp │ │ ├── output-timer.hpp │ │ ├── scripts.cpp │ │ ├── scripts.hpp │ │ └── tool-helpers.hpp ├── horizontal-scroll-area.cpp ├── horizontal-scroll-area.hpp ├── hotkey-edit.cpp ├── hotkey-edit.hpp ├── importers │ ├── classic.cpp │ ├── importers.cpp │ ├── importers.hpp │ ├── sl.cpp │ ├── studio.cpp │ └── xsplit.cpp ├── installer │ ├── OBSBanner.bmp │ ├── OBSHeader.bmp │ └── mp-installer.nsi ├── item-widget-helpers.cpp ├── item-widget-helpers.hpp ├── lineedit-autoresize.cpp ├── lineedit-autoresize.hpp ├── locked-checkbox.cpp ├── locked-checkbox.hpp ├── log-viewer.cpp ├── log-viewer.hpp ├── media-controls.cpp ├── media-controls.hpp ├── media-slider.cpp ├── media-slider.hpp ├── menu-button.cpp ├── menu-button.hpp ├── multiview.cpp ├── multiview.hpp ├── mute-checkbox.hpp ├── nix-update │ ├── crypto-helpers-mac.mm │ ├── crypto-helpers-mbedtls.cpp │ ├── crypto-helpers.hpp │ ├── nix-update-helpers.cpp │ ├── nix-update-helpers.hpp │ ├── nix-update.cpp │ └── nix-update.hpp ├── obf.c ├── obf.h ├── obs-app.cpp ├── obs-app.hpp ├── obs-frontend-api │ ├── CMakeLists.txt │ ├── cmake │ │ └── obs-frontend-apiConfig.cmake.in │ ├── obs-frontend-api.cpp │ ├── obs-frontend-api.h │ └── obs-frontend-internal.hpp ├── obs-proxy-style.cpp ├── obs-proxy-style.hpp ├── obs.manifest ├── obs.rc.in ├── plain-text-edit.cpp ├── plain-text-edit.hpp ├── platform-osx.mm ├── platform-windows.cpp ├── platform-x11.cpp ├── platform.hpp ├── properties-view.cpp ├── properties-view.hpp ├── properties-view.moc.hpp ├── qt-display.cpp ├── qt-display.hpp ├── qt-wrappers.cpp ├── qt-wrappers.hpp ├── record-button.cpp ├── record-button.hpp ├── remote-text.cpp ├── remote-text.hpp ├── scene-tree.cpp ├── scene-tree.hpp ├── screenshot-obj.hpp ├── slider-absoluteset-style.cpp ├── slider-absoluteset-style.hpp ├── slider-ignorewheel.cpp ├── slider-ignorewheel.hpp ├── source-label.cpp ├── source-label.hpp ├── source-tree.cpp ├── source-tree.hpp ├── sparkle-updater.mm ├── spinbox-ignorewheel.cpp ├── spinbox-ignorewheel.hpp ├── ui-config.h.in ├── ui-validation.cpp ├── ui-validation.hpp ├── undo-stack-obs.cpp ├── undo-stack-obs.hpp ├── url-push-button.cpp ├── url-push-button.hpp ├── vertical-scroll-area.cpp ├── vertical-scroll-area.hpp ├── visibility-checkbox.cpp ├── visibility-checkbox.hpp ├── visibility-item-widget.cpp ├── visibility-item-widget.hpp ├── volume-control.cpp ├── volume-control.hpp ├── win-update │ ├── update-window.cpp │ ├── update-window.hpp │ ├── updater │ │ ├── CMakeLists.txt │ │ ├── hash.cpp │ │ ├── http.cpp │ │ ├── init-hook-files.c │ │ ├── patch.cpp │ │ ├── resource.h │ │ ├── updater.cpp │ │ ├── updater.hpp │ │ ├── updater.manifest │ │ └── updater.rc │ ├── win-update-helpers.cpp │ ├── win-update-helpers.hpp │ ├── win-update.cpp │ └── win-update.hpp ├── window-basic-about.cpp ├── window-basic-about.hpp ├── window-basic-adv-audio.cpp ├── window-basic-adv-audio.hpp ├── window-basic-auto-config-test.cpp ├── window-basic-auto-config.cpp ├── window-basic-auto-config.hpp ├── window-basic-filters.cpp ├── window-basic-filters.hpp ├── window-basic-interaction.cpp ├── window-basic-interaction.hpp ├── window-basic-main-browser.cpp ├── window-basic-main-dropfiles.cpp ├── window-basic-main-icons.cpp ├── window-basic-main-outputs.cpp ├── window-basic-main-outputs.hpp ├── window-basic-main-profiles.cpp ├── window-basic-main-scene-collections.cpp ├── window-basic-main-screenshot.cpp ├── window-basic-main-transitions.cpp ├── window-basic-main.cpp ├── window-basic-main.hpp ├── window-basic-preview.cpp ├── window-basic-preview.hpp ├── window-basic-properties.cpp ├── window-basic-properties.hpp ├── window-basic-settings-a11y.cpp ├── window-basic-settings-stream.cpp ├── window-basic-settings.cpp ├── window-basic-settings.hpp ├── window-basic-source-select.cpp ├── window-basic-source-select.hpp ├── window-basic-stats.cpp ├── window-basic-stats.hpp ├── window-basic-status-bar.cpp ├── window-basic-status-bar.hpp ├── window-basic-transform.cpp ├── window-basic-transform.hpp ├── window-basic-vcam-config.cpp ├── window-basic-vcam-config.hpp ├── window-dock-browser.cpp ├── window-dock-browser.hpp ├── window-dock.cpp ├── window-dock.hpp ├── window-extra-browsers.cpp ├── window-extra-browsers.hpp ├── window-importer.cpp ├── window-importer.hpp ├── window-log-reply.cpp ├── window-log-reply.hpp ├── window-main.hpp ├── window-missing-files.cpp ├── window-missing-files.hpp ├── window-namedialog.cpp ├── window-namedialog.hpp ├── window-permissions.cpp ├── window-permissions.hpp ├── window-projector.cpp ├── window-projector.hpp ├── window-remux.cpp ├── window-remux.hpp ├── window-youtube-actions.cpp ├── window-youtube-actions.hpp ├── xdg-data │ ├── CMakeLists.txt │ ├── com.obsproject.Studio.appdata.xml.in │ ├── com.obsproject.Studio.desktop │ └── icons │ │ ├── obs-logo-128.png │ │ ├── obs-logo-256.png │ │ ├── obs-logo-512.png │ │ └── obs-logo-scalable.svg ├── youtube-api-wrappers.cpp └── youtube-api-wrappers.hpp ├── additional_install_files ├── .gitignore ├── data │ └── .gitignore ├── exec32 │ └── .gitignore ├── exec32d │ └── .gitignore ├── exec32r │ └── .gitignore ├── exec64 │ └── .gitignore ├── exec64d │ └── .gitignore ├── exec64r │ └── .gitignore ├── libs32 │ └── .gitignore ├── libs32d │ └── .gitignore ├── libs32r │ └── .gitignore ├── libs64 │ └── .gitignore ├── libs64d │ └── .gitignore ├── libs64r │ └── .gitignore └── misc │ └── .gitignore ├── cmake ├── Modules │ ├── CompilerConfig.cmake │ ├── CopyMSVCBins.cmake │ ├── DeprecationHelpers.cmake │ ├── FindCEF.cmake │ ├── FindDetours.cmake │ ├── FindEpoxy.cmake │ ├── FindFFmpeg.cmake │ ├── FindGBM.cmake │ ├── FindGio.cmake │ ├── FindGtk4.cmake │ ├── FindJansson.cmake │ ├── FindLibAJANTV2.cmake │ ├── FindLibadwaita.cmake │ ├── FindLibdrm.cmake │ ├── FindLibfdk.cmake │ ├── FindLibpanel.cmake │ ├── FindLibpci.cmake │ ├── FindLibrist.cmake │ ├── FindLibrnnoise.cmake │ ├── FindLibspeexdsp.cmake │ ├── FindLibsrt.cmake │ ├── FindLibx264.cmake │ ├── FindLuajit.cmake │ ├── FindMbedTLS.cmake │ ├── FindOSS.cmake │ ├── FindPipeWire.cmake │ ├── FindPythonWindows.cmake │ ├── FindRSSDK.cmake │ ├── FindSndio.cmake │ ├── FindSwigWindows.cmake │ ├── FindSysinfo.cmake │ ├── FindUdev.cmake │ ├── FindWayland.cmake │ ├── FindX11_XCB.cmake │ ├── FindXCB.cmake │ ├── FindXkbcommon.cmake │ ├── IDLFileHelper.cmake │ ├── ObsDefaults_Linux.cmake │ ├── ObsDefaults_Windows.cmake │ ├── ObsDefaults_macOS.cmake │ ├── ObsHelpers.cmake │ ├── ObsHelpers_Linux.cmake │ ├── ObsHelpers_Windows.cmake │ ├── ObsHelpers_macOS.cmake │ └── VersionConfig.cmake ├── bundle │ ├── macOS │ │ ├── AppIcon.icns │ │ ├── AppIcon.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_128x128.png │ │ │ │ ├── icon_128x128@2x.png │ │ │ │ ├── icon_16x16.png │ │ │ │ ├── icon_16x16@2x.png │ │ │ │ ├── icon_256x256.png │ │ │ │ ├── icon_256x256@2x.png │ │ │ │ ├── icon_32x32.png │ │ │ │ ├── icon_32x32@2x.png │ │ │ │ ├── icon_512x512.png │ │ │ │ └── icon_512x512@2x.png │ │ │ └── Contents.json │ │ ├── Info.plist.in │ │ ├── OBSPublicDSAKey.pem │ │ ├── Plugin-Info.plist.in │ │ ├── Virtualcam-Info.plist.in │ │ ├── background.tiff │ │ ├── bundleutils.cmake │ │ ├── dylibbundler │ │ ├── entitlements-helper.gpu.plist │ │ ├── entitlements-helper.plist │ │ ├── entitlements-helper.plugin.plist │ │ ├── entitlements-helper.renderer.plist │ │ ├── entitlements.plist │ │ └── package.applescript.in │ └── windows │ │ ├── ALL_BUILD.vcxproj.user.in │ │ ├── obs-module.rc.in │ │ └── obs-studio.ico └── external │ └── ObsPluginHelpers.cmake ├── deps ├── CMakeLists.txt ├── blake2 │ ├── .clang-format │ ├── CMakeLists.txt │ ├── meson.build │ └── src │ │ ├── blake2-impl.h │ │ ├── blake2.h │ │ └── blake2b-ref.c ├── file-updater │ ├── CMakeLists.txt │ ├── file-updater │ │ ├── file-updater.c │ │ └── file-updater.h │ └── meson.build ├── glad │ ├── .clang-format │ ├── CMakeLists.txt │ ├── include │ │ ├── EGL │ │ │ └── eglplatform.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ ├── glad.h │ │ │ ├── glad_egl.h │ │ │ └── glad_wgl.h │ ├── meson.build │ └── src │ │ ├── glad.c │ │ ├── glad_egl.c │ │ └── glad_wgl.c ├── ipc-util │ ├── CMakeLists.txt │ └── ipc-util │ │ ├── pipe-posix.c │ │ ├── pipe-posix.h │ │ ├── pipe-windows.c │ │ ├── pipe-windows.h │ │ └── pipe.h ├── json11 │ ├── .clang-format │ ├── LICENSE.txt │ ├── json11.cpp │ └── json11.hpp ├── libcaption │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── LICENSE.txt │ ├── README.md │ ├── caption │ │ ├── caption.h │ │ ├── cea708.h │ │ ├── dvtcc.h │ │ ├── eia608.h │ │ ├── eia608_charmap.h │ │ ├── mpeg.h │ │ ├── scc.h │ │ ├── srt.h │ │ ├── utf8.h │ │ ├── vtt.h │ │ └── xds.h │ ├── format.sh │ ├── meson.build │ └── src │ │ ├── caption.c │ │ ├── cea708.c │ │ ├── dvtcc.c │ │ ├── eia608.c │ │ ├── eia608_charmap.c │ │ ├── eia608_from_utf8.c │ │ ├── eia608_from_utf8.re2c │ │ ├── mpeg.c │ │ ├── scc.c │ │ ├── srt.c │ │ ├── utf8.c │ │ ├── vtt.c │ │ └── xds.c ├── libff │ ├── .clang-format │ ├── CMakeLists.txt │ └── libff │ │ ├── ff-audio-decoder.c │ │ ├── ff-callbacks.c │ │ ├── ff-callbacks.h │ │ ├── ff-circular-queue.c │ │ ├── ff-circular-queue.h │ │ ├── ff-clock.c │ │ ├── ff-clock.h │ │ ├── ff-compat.h │ │ ├── ff-decoder.c │ │ ├── ff-decoder.h │ │ ├── ff-demuxer.c │ │ ├── ff-demuxer.h │ │ ├── ff-frame.h │ │ ├── ff-packet-queue.c │ │ ├── ff-packet-queue.h │ │ ├── ff-threading-posix.c │ │ ├── ff-threading-windows.c │ │ ├── ff-threading.h │ │ ├── ff-timer.c │ │ ├── ff-timer.h │ │ ├── ff-util.c │ │ ├── ff-util.h │ │ └── ff-video-decoder.c ├── lzma │ ├── .clang-format │ ├── CMakeLists.txt │ ├── common │ │ ├── common_w32res.rc │ │ ├── mythread.h │ │ ├── sysdefs.h │ │ ├── tuklib_common.h │ │ ├── tuklib_config.h │ │ ├── tuklib_cpucores.c │ │ ├── tuklib_cpucores.h │ │ ├── tuklib_exit.c │ │ ├── tuklib_exit.h │ │ ├── tuklib_gettext.h │ │ ├── tuklib_integer.h │ │ ├── tuklib_mbstr.h │ │ ├── tuklib_mbstr_fw.c │ │ ├── tuklib_mbstr_width.c │ │ ├── tuklib_open_stdxxx.c │ │ ├── tuklib_open_stdxxx.h │ │ ├── tuklib_physmem.c │ │ ├── tuklib_physmem.h │ │ ├── tuklib_progname.c │ │ └── tuklib_progname.h │ ├── config.h │ ├── liblzma │ │ ├── api │ │ │ ├── lzma.h │ │ │ └── lzma │ │ │ │ ├── base.h │ │ │ │ ├── bcj.h │ │ │ │ ├── block.h │ │ │ │ ├── check.h │ │ │ │ ├── container.h │ │ │ │ ├── delta.h │ │ │ │ ├── filter.h │ │ │ │ ├── hardware.h │ │ │ │ ├── index.h │ │ │ │ ├── index_hash.h │ │ │ │ ├── lzma.h │ │ │ │ ├── stream_flags.h │ │ │ │ ├── version.h │ │ │ │ └── vli.h │ │ ├── check │ │ │ ├── Makefile.inc │ │ │ ├── check.c │ │ │ ├── check.h │ │ │ ├── crc32_fast.c │ │ │ ├── crc32_small.c │ │ │ ├── crc32_table.c │ │ │ ├── crc32_table_be.h │ │ │ ├── crc32_table_le.h │ │ │ ├── crc32_tablegen.c │ │ │ ├── crc32_x86.S │ │ │ ├── crc64_fast.c │ │ │ ├── crc64_small.c │ │ │ ├── crc64_table.c │ │ │ ├── crc64_table_be.h │ │ │ ├── crc64_table_le.h │ │ │ ├── crc64_tablegen.c │ │ │ ├── crc64_x86.S │ │ │ ├── crc_macros.h │ │ │ └── sha256.c │ │ ├── common │ │ │ ├── alone_decoder.c │ │ │ ├── alone_decoder.h │ │ │ ├── alone_encoder.c │ │ │ ├── auto_decoder.c │ │ │ ├── block_buffer_decoder.c │ │ │ ├── block_buffer_encoder.c │ │ │ ├── block_decoder.c │ │ │ ├── block_decoder.h │ │ │ ├── block_encoder.c │ │ │ ├── block_encoder.h │ │ │ ├── block_header_decoder.c │ │ │ ├── block_header_encoder.c │ │ │ ├── block_util.c │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── easy_buffer_encoder.c │ │ │ ├── easy_decoder_memusage.c │ │ │ ├── easy_encoder.c │ │ │ ├── easy_encoder_memusage.c │ │ │ ├── easy_preset.c │ │ │ ├── easy_preset.h │ │ │ ├── filter_buffer_decoder.c │ │ │ ├── filter_buffer_encoder.c │ │ │ ├── filter_common.c │ │ │ ├── filter_common.h │ │ │ ├── filter_decoder.c │ │ │ ├── filter_decoder.h │ │ │ ├── filter_encoder.c │ │ │ ├── filter_encoder.h │ │ │ ├── filter_flags_decoder.c │ │ │ ├── filter_flags_encoder.c │ │ │ ├── hardware_physmem.c │ │ │ ├── index.c │ │ │ ├── index.h │ │ │ ├── index_decoder.c │ │ │ ├── index_encoder.c │ │ │ ├── index_encoder.h │ │ │ ├── index_hash.c │ │ │ ├── stream_buffer_decoder.c │ │ │ ├── stream_buffer_encoder.c │ │ │ ├── stream_decoder.c │ │ │ ├── stream_decoder.h │ │ │ ├── stream_encoder.c │ │ │ ├── stream_encoder.h │ │ │ ├── stream_flags_common.c │ │ │ ├── stream_flags_common.h │ │ │ ├── stream_flags_decoder.c │ │ │ ├── stream_flags_encoder.c │ │ │ ├── vli_decoder.c │ │ │ ├── vli_encoder.c │ │ │ └── vli_size.c │ │ ├── delta │ │ │ ├── Makefile.inc │ │ │ ├── delta_common.c │ │ │ ├── delta_common.h │ │ │ ├── delta_decoder.c │ │ │ ├── delta_decoder.h │ │ │ ├── delta_encoder.c │ │ │ ├── delta_encoder.h │ │ │ └── delta_private.h │ │ ├── lz │ │ │ ├── Makefile.inc │ │ │ ├── lz_decoder.c │ │ │ ├── lz_decoder.h │ │ │ ├── lz_encoder.c │ │ │ ├── lz_encoder.h │ │ │ ├── lz_encoder_hash.h │ │ │ ├── lz_encoder_hash_table.h │ │ │ └── lz_encoder_mf.c │ │ ├── lzma │ │ │ ├── fastpos.h │ │ │ ├── fastpos_table.c │ │ │ ├── fastpos_tablegen.c │ │ │ ├── lzma2_decoder.c │ │ │ ├── lzma2_decoder.h │ │ │ ├── lzma2_encoder.c │ │ │ ├── lzma2_encoder.h │ │ │ ├── lzma_common.h │ │ │ ├── lzma_decoder.c │ │ │ ├── lzma_decoder.h │ │ │ ├── lzma_encoder.c │ │ │ ├── lzma_encoder.h │ │ │ ├── lzma_encoder_optimum_fast.c │ │ │ ├── lzma_encoder_optimum_normal.c │ │ │ ├── lzma_encoder_presets.c │ │ │ └── lzma_encoder_private.h │ │ ├── rangecoder │ │ │ ├── Makefile.inc │ │ │ ├── price.h │ │ │ ├── price_table.c │ │ │ ├── price_tablegen.c │ │ │ ├── range_common.h │ │ │ ├── range_decoder.h │ │ │ └── range_encoder.h │ │ └── simple │ │ │ ├── Makefile.inc │ │ │ ├── arm.c │ │ │ ├── armthumb.c │ │ │ ├── ia64.c │ │ │ ├── powerpc.c │ │ │ ├── simple_coder.c │ │ │ ├── simple_coder.h │ │ │ ├── simple_decoder.c │ │ │ ├── simple_decoder.h │ │ │ ├── simple_encoder.c │ │ │ ├── simple_encoder.h │ │ │ ├── simple_private.h │ │ │ ├── sparc.c │ │ │ └── x86.c │ └── version.h ├── media-playback │ ├── CMakeLists.txt │ ├── media-playback │ │ ├── closest-format.h │ │ ├── decode.c │ │ ├── decode.h │ │ ├── media.c │ │ └── media.h │ └── meson.build ├── meson.build ├── obs-scripting │ ├── CMakeLists.txt │ ├── cstrcache.cpp │ ├── cstrcache.h │ ├── obs-scripting-callback.h │ ├── obs-scripting-config.h.in │ ├── obs-scripting-internal.h │ ├── obs-scripting-logging.c │ ├── obs-scripting-lua-frontend.c │ ├── obs-scripting-lua-source.c │ ├── obs-scripting-lua.c │ ├── obs-scripting-lua.h │ ├── obs-scripting-python-frontend.c │ ├── obs-scripting-python-import.c │ ├── obs-scripting-python-import.h │ ├── obs-scripting-python.c │ ├── obs-scripting-python.h │ ├── obs-scripting.c │ ├── obs-scripting.h │ ├── obslua │ │ ├── CMakeLists.txt │ │ └── obslua.i │ └── obspython │ │ ├── CMakeLists.txt │ │ └── obspython.i ├── opts-parser │ ├── CMakeLists.txt │ ├── meson.build │ ├── opts-parser.c │ └── opts-parser.h └── w32-pthreads │ ├── .clang-format │ ├── ANNOUNCE │ ├── BUGS │ ├── Bmakefile │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── COPYING │ ├── COPYING.LIB │ ├── ChangeLog │ ├── FAQ │ ├── GNUmakefile │ ├── MAINTAINERS │ ├── Makefile │ ├── NEWS │ ├── Nmakefile │ ├── Nmakefile.tests │ ├── PROGRESS │ ├── README │ ├── README.Borland │ ├── README.CV │ ├── README.NONPORTABLE │ ├── README.Watcom │ ├── README.WinCE │ ├── TODO │ ├── WinCE-PORT │ ├── attr.c │ ├── autostatic.c │ ├── barrier.c │ ├── builddmc.bat │ ├── cancel.c │ ├── cleanup.c │ ├── cmake │ └── w32-pthreadsConfig.cmake.in │ ├── condvar.c │ ├── config.h │ ├── context.h │ ├── create.c │ ├── dll.c │ ├── errno.c │ ├── exit.c │ ├── fork.c │ ├── global.c │ ├── implement.h │ ├── libpthreadGC2.a │ ├── libpthreadGC2.stamp │ ├── manual │ ├── ChangeLog │ ├── PortabilityIssues.html │ ├── index.html │ ├── pthreadCancelableWait.html │ ├── pthread_attr_init.html │ ├── pthread_attr_setstackaddr.html │ ├── pthread_attr_setstacksize.html │ ├── pthread_barrier_init.html │ ├── pthread_barrier_wait.html │ ├── pthread_barrierattr_init.html │ ├── pthread_barrierattr_setpshared.html │ ├── pthread_cancel.html │ ├── pthread_cleanup_push.html │ ├── pthread_cond_init.html │ ├── pthread_condattr_init.html │ ├── pthread_condattr_setpshared.html │ ├── pthread_create.html │ ├── pthread_delay_np.html │ ├── pthread_detach.html │ ├── pthread_equal.html │ ├── pthread_exit.html │ ├── pthread_getunique_np.html │ ├── pthread_getw32threadhandle_np.html │ ├── pthread_join.html │ ├── pthread_key_create.html │ ├── pthread_kill.html │ ├── pthread_mutex_init.html │ ├── pthread_mutexattr_init.html │ ├── pthread_mutexattr_setpshared.html │ ├── pthread_num_processors_np.html │ ├── pthread_once.html │ ├── pthread_rwlock_init.html │ ├── pthread_rwlock_rdlock.html │ ├── pthread_rwlock_timedrdlock.html │ ├── pthread_rwlock_timedwrlock.html │ ├── pthread_rwlock_unlock.html │ ├── pthread_rwlock_wrlock.html │ ├── pthread_rwlockattr_init.html │ ├── pthread_rwlockattr_setpshared.html │ ├── pthread_self.html │ ├── pthread_setcancelstate.html │ ├── pthread_setcanceltype.html │ ├── pthread_setconcurrency.html │ ├── pthread_setschedparam.html │ ├── pthread_spin_init.html │ ├── pthread_spin_lock.html │ ├── pthread_spin_unlock.html │ ├── pthread_timechange_handler_np.html │ ├── pthread_win32_attach_detach_np.html │ ├── pthread_win32_test_features_np.html │ ├── sched_get_priority_max.html │ ├── sched_getscheduler.html │ ├── sched_setscheduler.html │ ├── sched_yield.html │ └── sem_init.html │ ├── misc.c │ ├── mutex.c │ ├── need_errno.h │ ├── nonportable.c │ ├── private.c │ ├── pthread.c │ ├── pthread.dsp │ ├── pthread.dsw │ ├── pthread.h │ ├── pthread.lastbuildstate │ ├── pthread.sln │ ├── pthread.vcxproj │ ├── pthread.vcxproj.filters │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_delay_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getconcurrency.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_getunique_np.c │ ├── pthread_getw32threadhandle_np.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill.c │ ├── pthread_mutex_consistent.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_timedlock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getkind_np.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_getrobust.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setkind_np.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_setrobust.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_num_processors_np.c │ ├── pthread_once.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_timedrdlock.c │ ├── pthread_rwlock_timedwrlock.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setschedparam.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timechange_handler_np.c │ ├── pthread_win32_attach_detach_np.c │ ├── ptw32_MCS_lock.c │ ├── ptw32_OLL_lock.c │ ├── ptw32_callUserDestroyRoutines.c │ ├── ptw32_calloc.c │ ├── ptw32_cond_check_need_init.c │ ├── ptw32_getprocessors.c │ ├── ptw32_is_attr.c │ ├── ptw32_mutex_check_need_init.c │ ├── ptw32_new.c │ ├── ptw32_processInitialize.c │ ├── ptw32_processTerminate.c │ ├── ptw32_relmillisecs.c │ ├── ptw32_reuse.c │ ├── ptw32_rwlock_cancelwrwait.c │ ├── ptw32_rwlock_check_need_init.c │ ├── ptw32_semwait.c │ ├── ptw32_spinlock_check_need_init.c │ ├── ptw32_threadDestroy.c │ ├── ptw32_threadStart.c │ ├── ptw32_throw.c │ ├── ptw32_timespec.c │ ├── ptw32_tkAssocCreate.c │ ├── ptw32_tkAssocDestroy.c │ ├── rwlock.c │ ├── sched.c │ ├── sched.h │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getscheduler.c │ ├── sched_setscheduler.c │ ├── sched_yield.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_post_multiple.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── semaphore.c │ ├── semaphore.h │ ├── signal.c │ ├── spin.c │ ├── sync.c │ ├── tests │ ├── Bmakefile │ ├── ChangeLog │ ├── Debug.dsp │ ├── Debug.dsw │ ├── Debug.plg │ ├── Debug.txt │ ├── GNUmakefile │ ├── Makefile │ ├── README │ ├── README.BENCHTESTS │ ├── SIZES.GC │ ├── SIZES.GCE │ ├── SIZES.VC │ ├── SIZES.VCE │ ├── SIZES.VSE │ ├── Wmakefile │ ├── barrier1.c │ ├── barrier2.c │ ├── barrier3.c │ ├── barrier4.c │ ├── barrier5.c │ ├── barrier6.c │ ├── benchlib.c │ ├── benchtest.h │ ├── benchtest1.c │ ├── benchtest2.c │ ├── benchtest3.c │ ├── benchtest4.c │ ├── benchtest5.c │ ├── cancel1.c │ ├── cancel2.c │ ├── cancel3.c │ ├── cancel4.c │ ├── cancel5.c │ ├── cancel6a.c │ ├── cancel6d.c │ ├── cancel7.c │ ├── cancel8.c │ ├── cancel9.c │ ├── cleanup0.c │ ├── cleanup1.c │ ├── cleanup2.c │ ├── cleanup3.c │ ├── condvar1.c │ ├── condvar1_1.c │ ├── condvar1_2.c │ ├── condvar2.c │ ├── condvar2_1.c │ ├── condvar3.c │ ├── condvar3_1.c │ ├── condvar3_2.c │ ├── condvar3_3.c │ ├── condvar4.c │ ├── condvar5.c │ ├── condvar6.c │ ├── condvar7.c │ ├── condvar8.c │ ├── condvar9.c │ ├── context1.c │ ├── count1.c │ ├── create1.c │ ├── create2.c │ ├── create3.c │ ├── delay1.c │ ├── delay2.c │ ├── detach1.c │ ├── equal1.c │ ├── errno1.c │ ├── exception1.c │ ├── exception2.c │ ├── exception3.c │ ├── exit1.c │ ├── exit2.c │ ├── exit3.c │ ├── exit4.c │ ├── exit5.c │ ├── eyal1.c │ ├── inherit1.c │ ├── join0.c │ ├── join1.c │ ├── join2.c │ ├── join3.c │ ├── kill1.c │ ├── loadfree.c │ ├── mutex1.c │ ├── mutex1e.c │ ├── mutex1n.c │ ├── mutex1r.c │ ├── mutex2.c │ ├── mutex2e.c │ ├── mutex2r.c │ ├── mutex3.c │ ├── mutex3e.c │ ├── mutex3r.c │ ├── mutex4.c │ ├── mutex5.c │ ├── mutex6.c │ ├── mutex6e.c │ ├── mutex6es.c │ ├── mutex6n.c │ ├── mutex6r.c │ ├── mutex6rs.c │ ├── mutex6s.c │ ├── mutex7.c │ ├── mutex7e.c │ ├── mutex7n.c │ ├── mutex7r.c │ ├── mutex8.c │ ├── mutex8e.c │ ├── mutex8n.c │ ├── mutex8r.c │ ├── once1.c │ ├── once2.c │ ├── once3.c │ ├── once4.c │ ├── openmp1.c │ ├── priority1.c │ ├── priority2.c │ ├── reuse1.c │ ├── reuse2.c │ ├── robust1.c │ ├── robust2.c │ ├── robust3.c │ ├── robust4.c │ ├── robust5.c │ ├── rwlock1.c │ ├── rwlock2.c │ ├── rwlock2_t.c │ ├── rwlock3.c │ ├── rwlock3_t.c │ ├── rwlock4.c │ ├── rwlock4_t.c │ ├── rwlock5.c │ ├── rwlock5_t.c │ ├── rwlock6.c │ ├── rwlock6_t.c │ ├── rwlock6_t2.c │ ├── rwlock7.c │ ├── rwlock8.c │ ├── self1.c │ ├── self2.c │ ├── semaphore1.c │ ├── semaphore2.c │ ├── semaphore3.c │ ├── semaphore4.c │ ├── semaphore4t.c │ ├── semaphore5.c │ ├── sequence1.c │ ├── sizes.c │ ├── spin1.c │ ├── spin2.c │ ├── spin3.c │ ├── spin4.c │ ├── stress1.c │ ├── test.h │ ├── tryentercs.c │ ├── tryentercs2.c │ ├── tsd1.c │ ├── tsd2.c │ ├── valid1.c │ └── valid2.c │ ├── tsd.c │ ├── version.rc │ ├── w32-pthreadsConfig.cmake.in │ ├── w32-pthreadsConfigVersion.cmake.in │ └── w32_CancelableWait.c ├── docs └── sphinx │ ├── Makefile │ ├── _build │ └── .gitignore │ ├── _static │ ├── .gitignore │ └── css │ │ └── custom.css │ ├── _templates │ └── .gitignore │ ├── backend-design.rst │ ├── conf.py │ ├── favicon.ico │ ├── frontends.rst │ ├── graphics.rst │ ├── index.rst │ ├── logo.svg │ ├── make.bat │ ├── plugins.rst │ ├── reference-core-objects.rst │ ├── reference-core.rst │ ├── reference-encoders.rst │ ├── reference-frontend-api.rst │ ├── reference-libobs-callback.rst │ ├── reference-libobs-graphics-axisang.rst │ ├── reference-libobs-graphics-effects.rst │ ├── reference-libobs-graphics-graphics.rst │ ├── reference-libobs-graphics-image-file.rst │ ├── reference-libobs-graphics-math.rst │ ├── reference-libobs-graphics-matrix4.rst │ ├── reference-libobs-graphics-quat.rst │ ├── reference-libobs-graphics-vec2.rst │ ├── reference-libobs-graphics-vec3.rst │ ├── reference-libobs-graphics-vec4.rst │ ├── reference-libobs-graphics.rst │ ├── reference-libobs-media-io.rst │ ├── reference-libobs-util-base.rst │ ├── reference-libobs-util-bmem.rst │ ├── reference-libobs-util-circlebuf.rst │ ├── reference-libobs-util-config-file.rst │ ├── reference-libobs-util-darray.rst │ ├── reference-libobs-util-dstr.rst │ ├── reference-libobs-util-platform.rst │ ├── reference-libobs-util-profiler.rst │ ├── reference-libobs-util-serializers.rst │ ├── reference-libobs-util-text-lookup.rst │ ├── reference-libobs-util-threading.rst │ ├── reference-libobs-util.rst │ ├── reference-modules.rst │ ├── reference-outputs.rst │ ├── reference-properties.rst │ ├── reference-scenes.rst │ ├── reference-services.rst │ ├── reference-settings.rst │ ├── reference-sources.rst │ ├── requirements.txt │ └── scripting.rst ├── libobs-d3d11 ├── CMakeLists.txt ├── d3d11-config.h.in ├── d3d11-duplicator.cpp ├── d3d11-indexbuffer.cpp ├── d3d11-rebuild.cpp ├── d3d11-samplerstate.cpp ├── d3d11-shader.cpp ├── d3d11-shaderprocessor.cpp ├── d3d11-shaderprocessor.hpp ├── d3d11-stagesurf.cpp ├── d3d11-subsystem.cpp ├── d3d11-subsystem.hpp ├── d3d11-texture2d.cpp ├── d3d11-texture3d.cpp ├── d3d11-vertexbuffer.cpp └── d3d11-zstencilbuffer.cpp ├── libobs-opengl ├── .gitignore ├── CMakeLists.txt ├── gl-cocoa.m ├── gl-drm.c ├── gl-drm.h ├── gl-egl-common.c ├── gl-egl-common.h ├── gl-helpers.c ├── gl-helpers.h ├── gl-indexbuffer.c ├── gl-nix.c ├── gl-nix.h ├── gl-shader.c ├── gl-shaderparser.c ├── gl-shaderparser.h ├── gl-stagesurf.c ├── gl-subsystem.c ├── gl-subsystem.h ├── gl-texture2d.c ├── gl-texture3d.c ├── gl-texturecube.c ├── gl-vertexbuffer.c ├── gl-wayland-egl.c ├── gl-wayland-egl.h ├── gl-windows.c ├── gl-x11-egl.c ├── gl-x11-egl.h ├── gl-zstencil.c └── meson.build ├── libobs-winrt ├── CMakeLists.txt ├── winrt-capture.cpp ├── winrt-capture.h ├── winrt-dispatch.cpp └── winrt-dispatch.h ├── libobs ├── CMakeLists.txt ├── audio-monitoring │ ├── meson.build │ ├── null │ │ └── null-audio-monitoring.c │ ├── osx │ │ ├── coreaudio-enum-devices.c │ │ ├── coreaudio-monitoring-available.c │ │ ├── coreaudio-output.c │ │ └── mac-helpers.h │ ├── pulse │ │ ├── meson.build │ │ ├── pulseaudio-enum-devices.c │ │ ├── pulseaudio-monitoring-available.c │ │ ├── pulseaudio-output.c │ │ ├── pulseaudio-wrapper.c │ │ └── pulseaudio-wrapper.h │ └── win32 │ │ ├── wasapi-enum-devices.c │ │ ├── wasapi-monitoring-available.c │ │ ├── wasapi-output.c │ │ └── wasapi-output.h ├── callback │ ├── calldata.c │ ├── calldata.h │ ├── decl.c │ ├── decl.h │ ├── meson.build │ ├── proc.c │ ├── proc.h │ ├── signal.c │ └── signal.h ├── cmake │ └── libobsConfig.cmake.in ├── data │ ├── area.effect │ ├── bicubic_scale.effect │ ├── bilinear_lowres_scale.effect │ ├── color.effect │ ├── default.effect │ ├── default_rect.effect │ ├── deinterlace_base.effect │ ├── deinterlace_blend.effect │ ├── deinterlace_blend_2x.effect │ ├── deinterlace_discard.effect │ ├── deinterlace_discard_2x.effect │ ├── deinterlace_linear.effect │ ├── deinterlace_linear_2x.effect │ ├── deinterlace_yadif.effect │ ├── deinterlace_yadif_2x.effect │ ├── format_conversion.effect │ ├── lanczos_scale.effect │ ├── opaque.effect │ ├── premultiplied_alpha.effect │ ├── repeat.effect │ └── solid.effect ├── graphics │ ├── axisang.c │ ├── axisang.h │ ├── basemath.hpp │ ├── bounds.c │ ├── bounds.h │ ├── device-exports.h │ ├── effect-parser.c │ ├── effect-parser.h │ ├── effect.c │ ├── effect.h │ ├── graphics-ffmpeg.c │ ├── graphics-imports.c │ ├── graphics-internal.h │ ├── graphics-magick.c │ ├── graphics.c │ ├── graphics.h │ ├── half.h │ ├── image-file.c │ ├── image-file.h │ ├── input.h │ ├── libnsgif │ │ ├── .clang-format │ │ ├── libnsgif.c │ │ └── libnsgif.h │ ├── math-defs.h │ ├── math-extra.c │ ├── math-extra.h │ ├── matrix3.c │ ├── matrix3.h │ ├── matrix4.c │ ├── matrix4.h │ ├── meson.build │ ├── plane.c │ ├── plane.h │ ├── quat.c │ ├── quat.h │ ├── shader-parser.c │ ├── shader-parser.h │ ├── srgb.h │ ├── texture-render.c │ ├── vec2.c │ ├── vec2.h │ ├── vec3.c │ ├── vec3.h │ ├── vec4.c │ └── vec4.h ├── media-io │ ├── audio-io.c │ ├── audio-io.h │ ├── audio-math.h │ ├── audio-resampler-ffmpeg.c │ ├── audio-resampler.h │ ├── format-conversion.c │ ├── format-conversion.h │ ├── frame-rate.h │ ├── media-io-defs.h │ ├── media-remux.c │ ├── media-remux.h │ ├── meson.build │ ├── video-fourcc.c │ ├── video-frame.c │ ├── video-frame.h │ ├── video-io.c │ ├── video-io.h │ ├── video-matrices.c │ ├── video-scaler-ffmpeg.c │ └── video-scaler.h ├── meson.build ├── obs-audio-controls.c ├── obs-audio-controls.h ├── obs-audio.c ├── obs-avc.c ├── obs-avc.h ├── obs-cocoa.m ├── obs-config.h ├── obs-data.c ├── obs-data.h ├── obs-defs.h ├── obs-display.c ├── obs-encoder.c ├── obs-encoder.h ├── obs-ffmpeg-compat.h ├── obs-hevc.c ├── obs-hevc.h ├── obs-hotkey-name-map.c ├── obs-hotkey.c ├── obs-hotkey.h ├── obs-hotkeys.h ├── obs-interaction.h ├── obs-internal.h ├── obs-missing-files.c ├── obs-missing-files.h ├── obs-module.c ├── obs-module.h ├── obs-nal.c ├── obs-nal.h ├── obs-nix-drm.c ├── obs-nix-drm.h ├── obs-nix-platform.c ├── obs-nix-platform.h ├── obs-nix-wayland.c ├── obs-nix-wayland.h ├── obs-nix-x11.c ├── obs-nix-x11.h ├── obs-nix.c ├── obs-nix.h ├── obs-output-delay.c ├── obs-output.c ├── obs-output.h ├── obs-properties.c ├── obs-properties.h ├── obs-scene.c ├── obs-scene.h ├── obs-service.c ├── obs-service.h ├── obs-source-deinterlace.c ├── obs-source-transition.c ├── obs-source.c ├── obs-source.h ├── obs-ui.h ├── obs-video-gpu-encode.c ├── obs-video.c ├── obs-view.c ├── obs-win-crash-handler.c ├── obs-windows.c ├── obs.c ├── obs.h ├── obs.hpp ├── obsconfig.h.in ├── pkgconfig │ └── libobs.pc.in └── util │ ├── AlignedNew.hpp │ ├── apple │ └── cfstring-utils.h │ ├── array-serializer.c │ ├── array-serializer.h │ ├── base.c │ ├── base.h │ ├── bitstream.c │ ├── bitstream.h │ ├── bmem.c │ ├── bmem.h │ ├── c99defs.h │ ├── cf-lexer.c │ ├── cf-lexer.h │ ├── cf-parser.c │ ├── cf-parser.h │ ├── circlebuf.h │ ├── config-file.c │ ├── config-file.h │ ├── crc32.c │ ├── crc32.h │ ├── curl │ └── curl-helper.h │ ├── darray.h │ ├── dstr.c │ ├── dstr.h │ ├── dstr.hpp │ ├── file-serializer.c │ ├── file-serializer.h │ ├── lexer.c │ ├── lexer.h │ ├── meson.build │ ├── pipe-posix.c │ ├── pipe-windows.c │ ├── pipe.h │ ├── platform-cocoa.m │ ├── platform-nix-dbus.c │ ├── platform-nix-portal.c │ ├── platform-nix.c │ ├── platform-windows.c │ ├── platform.c │ ├── platform.h │ ├── profiler.c │ ├── profiler.h │ ├── profiler.hpp │ ├── serializer.h │ ├── simde │ ├── .clang-format │ ├── README.libobs │ ├── check.h │ ├── debug-trap.h │ ├── hedley.h │ ├── simde-align.h │ ├── simde-arch.h │ ├── simde-common.h │ ├── simde-constify.h │ ├── simde-detect-clang.h │ ├── simde-diagnostic.h │ ├── simde-features.h │ ├── simde-math.h │ └── x86 │ │ ├── mmx.h │ │ ├── sse.h │ │ └── sse2.h │ ├── sse-intrin.h │ ├── task.c │ ├── task.h │ ├── text-lookup.c │ ├── text-lookup.h │ ├── threading-posix.c │ ├── threading-posix.h │ ├── threading-windows.c │ ├── threading-windows.h │ ├── threading.h │ ├── utf8.c │ ├── utf8.h │ ├── util.hpp │ ├── util_uint128.h │ ├── util_uint64.h │ └── windows │ ├── CoTaskMemPtr.hpp │ ├── ComPtr.hpp │ ├── HRError.hpp │ ├── WinHandle.hpp │ ├── obfuscate.c │ ├── obfuscate.h │ ├── win-registry.h │ ├── win-version.h │ ├── window-helpers.c │ └── window-helpers.h ├── meson.build ├── meson_options.txt ├── plugins ├── CMakeLists.txt ├── aja │ ├── CMakeLists.txt │ ├── README.md │ ├── aja-card-manager.cpp │ ├── aja-card-manager.hpp │ ├── aja-common.cpp │ ├── aja-common.hpp │ ├── aja-enums.hpp │ ├── aja-output.cpp │ ├── aja-output.hpp │ ├── aja-presets.cpp │ ├── aja-presets.hpp │ ├── aja-props.cpp │ ├── aja-props.hpp │ ├── aja-routing.cpp │ ├── aja-routing.hpp │ ├── aja-source.cpp │ ├── aja-source.hpp │ ├── aja-ui-props.hpp │ ├── aja-vpid-data.cpp │ ├── aja-vpid-data.hpp │ ├── aja-widget-io.cpp │ ├── aja-widget-io.hpp │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── bg-BG.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── th-TH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── main.cpp │ └── meson.build ├── coreaudio-encoder │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── an-ES.ini │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── eo-UY.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sq-AL.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── encoder.cpp │ └── windows-imports.h ├── decklink │ ├── CMakeLists.txt │ ├── DecklinkBase.cpp │ ├── DecklinkBase.h │ ├── DecklinkInput.cpp │ ├── DecklinkInput.hpp │ ├── DecklinkOutput.cpp │ ├── DecklinkOutput.hpp │ ├── OBSVideoFrame.cpp │ ├── OBSVideoFrame.h │ ├── audio-repack.c │ ├── audio-repack.h │ ├── audio-repack.hpp │ ├── const.h │ ├── data │ │ └── locale │ │ │ ├── an-ES.ini │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── eo-UY.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lt-LT.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sq-AL.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── decklink-device-discovery.cpp │ ├── decklink-device-discovery.hpp │ ├── decklink-device-instance.cpp │ ├── decklink-device-instance.hpp │ ├── decklink-device-mode.cpp │ ├── decklink-device-mode.hpp │ ├── decklink-device.cpp │ ├── decklink-device.hpp │ ├── decklink-devices.cpp │ ├── decklink-devices.hpp │ ├── decklink-output.cpp │ ├── decklink-source.cpp │ ├── linux │ │ ├── decklink-sdk │ │ │ ├── .clang-format │ │ │ ├── DeckLinkAPI.h │ │ │ ├── DeckLinkAPIConfiguration.h │ │ │ ├── DeckLinkAPIConfiguration_v10_11.h │ │ │ ├── DeckLinkAPIConfiguration_v10_2.h │ │ │ ├── DeckLinkAPIConfiguration_v10_4.h │ │ │ ├── DeckLinkAPIConfiguration_v10_5.h │ │ │ ├── DeckLinkAPIConfiguration_v10_9.h │ │ │ ├── DeckLinkAPIDeckControl.h │ │ │ ├── DeckLinkAPIDiscovery.h │ │ │ ├── DeckLinkAPIDispatch.cpp │ │ │ ├── DeckLinkAPIDispatch_v10_11.cpp │ │ │ ├── DeckLinkAPIDispatch_v10_8.cpp │ │ │ ├── DeckLinkAPIDispatch_v7_6.cpp │ │ │ ├── DeckLinkAPIDispatch_v8_0.cpp │ │ │ ├── DeckLinkAPIModes.h │ │ │ ├── DeckLinkAPITypes.h │ │ │ ├── DeckLinkAPIVersion.h │ │ │ ├── DeckLinkAPIVideoEncoderInput_v10_11.h │ │ │ ├── DeckLinkAPIVideoInput_v10_11.h │ │ │ ├── DeckLinkAPIVideoInput_v11_4.h │ │ │ ├── DeckLinkAPIVideoInput_v11_5_1.h │ │ │ ├── DeckLinkAPIVideoOutput_v10_11.h │ │ │ ├── DeckLinkAPIVideoOutput_v11_4.h │ │ │ ├── DeckLinkAPI_v10_11.h │ │ │ ├── DeckLinkAPI_v10_2.h │ │ │ ├── DeckLinkAPI_v10_4.h │ │ │ ├── DeckLinkAPI_v10_5.h │ │ │ ├── DeckLinkAPI_v10_6.h │ │ │ ├── DeckLinkAPI_v10_9.h │ │ │ ├── DeckLinkAPI_v11_5.h │ │ │ ├── DeckLinkAPI_v11_5_1.h │ │ │ ├── DeckLinkAPI_v7_1.h │ │ │ ├── DeckLinkAPI_v7_3.h │ │ │ ├── DeckLinkAPI_v7_6.h │ │ │ ├── DeckLinkAPI_v7_9.h │ │ │ ├── DeckLinkAPI_v8_0.h │ │ │ ├── DeckLinkAPI_v8_1.h │ │ │ ├── DeckLinkAPI_v9_2.h │ │ │ ├── DeckLinkAPI_v9_9.h │ │ │ └── LinuxCOM.h │ │ └── platform.cpp │ ├── mac │ │ ├── decklink-sdk │ │ │ ├── .clang-format │ │ │ ├── DeckLinkAPI.h │ │ │ ├── DeckLinkAPIConfiguration.h │ │ │ ├── DeckLinkAPIConfiguration_v10_11.h │ │ │ ├── DeckLinkAPIConfiguration_v10_2.h │ │ │ ├── DeckLinkAPIConfiguration_v10_4.h │ │ │ ├── DeckLinkAPIConfiguration_v10_5.h │ │ │ ├── DeckLinkAPIConfiguration_v10_9.h │ │ │ ├── DeckLinkAPIDeckControl.h │ │ │ ├── DeckLinkAPIDiscovery.h │ │ │ ├── DeckLinkAPIDispatch.cpp │ │ │ ├── DeckLinkAPIDispatch_v10_11.cpp │ │ │ ├── DeckLinkAPIDispatch_v10_8.cpp │ │ │ ├── DeckLinkAPIDispatch_v7_6.cpp │ │ │ ├── DeckLinkAPIDispatch_v8_0.cpp │ │ │ ├── DeckLinkAPIModes.h │ │ │ ├── DeckLinkAPIStreaming.h │ │ │ ├── DeckLinkAPIStreaming_v10_11.h │ │ │ ├── DeckLinkAPITypes.h │ │ │ ├── DeckLinkAPIVersion.h │ │ │ ├── DeckLinkAPIVideoEncoderInput_v10_11.h │ │ │ ├── DeckLinkAPIVideoInput_v10_11.h │ │ │ ├── DeckLinkAPIVideoInput_v11_4.h │ │ │ ├── DeckLinkAPIVideoInput_v11_5_1.h │ │ │ ├── DeckLinkAPIVideoOutput_v10_11.h │ │ │ ├── DeckLinkAPIVideoOutput_v11_4.h │ │ │ ├── DeckLinkAPI_v10_11.h │ │ │ ├── DeckLinkAPI_v10_2.h │ │ │ ├── DeckLinkAPI_v10_4.h │ │ │ ├── DeckLinkAPI_v10_5.h │ │ │ ├── DeckLinkAPI_v10_6.h │ │ │ ├── DeckLinkAPI_v10_9.h │ │ │ ├── DeckLinkAPI_v11_5.h │ │ │ ├── DeckLinkAPI_v11_5_1.h │ │ │ ├── DeckLinkAPI_v7_1.h │ │ │ ├── DeckLinkAPI_v7_3.h │ │ │ ├── DeckLinkAPI_v7_6.h │ │ │ ├── DeckLinkAPI_v7_9.h │ │ │ ├── DeckLinkAPI_v8_0.h │ │ │ ├── DeckLinkAPI_v8_1.h │ │ │ ├── DeckLinkAPI_v9_2.h │ │ │ └── DeckLinkAPI_v9_9.h │ │ └── platform.cpp │ ├── meson.build │ ├── platform.hpp │ ├── plugin-main.cpp │ ├── util.cpp │ ├── util.hpp │ └── win │ │ ├── decklink-sdk │ │ ├── DeckLinkAPI.idl │ │ ├── DeckLinkAPIConfiguration.idl │ │ ├── DeckLinkAPIDeckControl.idl │ │ ├── DeckLinkAPIDiscovery.idl │ │ ├── DeckLinkAPIModes.idl │ │ ├── DeckLinkAPIStreaming.idl │ │ ├── DeckLinkAPIStreaming_v10_8.idl │ │ ├── DeckLinkAPITypes.idl │ │ ├── DeckLinkAPIVersion.h │ │ ├── DeckLinkAPI_v10_11.idl │ │ ├── DeckLinkAPI_v10_2.idl │ │ ├── DeckLinkAPI_v10_4.idl │ │ ├── DeckLinkAPI_v10_5.idl │ │ ├── DeckLinkAPI_v10_6.idl │ │ ├── DeckLinkAPI_v10_8.idl │ │ ├── DeckLinkAPI_v10_9.idl │ │ ├── DeckLinkAPI_v11_4.idl │ │ ├── DeckLinkAPI_v11_5.idl │ │ ├── DeckLinkAPI_v11_5_1.idl │ │ ├── DeckLinkAPI_v7_1.idl │ │ ├── DeckLinkAPI_v7_3.idl │ │ ├── DeckLinkAPI_v7_6.idl │ │ ├── DeckLinkAPI_v7_9.idl │ │ ├── DeckLinkAPI_v8_0.idl │ │ ├── DeckLinkAPI_v8_1.idl │ │ ├── DeckLinkAPI_v9_2.idl │ │ └── DeckLinkAPI_v9_9.idl │ │ └── platform.cpp ├── image-source │ ├── CMakeLists.txt │ ├── color-source.c │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lo-LA.ini │ │ │ ├── lt-LT.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pa-IN.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── image-source.c │ ├── meson.build │ └── obs-slideshow.c ├── linux-pipewire │ ├── CMakeLists.txt │ ├── data │ │ ├── .gitkeep │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── linux-pipewire.c │ ├── meson.build │ ├── pipewire.c │ ├── pipewire.h │ ├── portal.c │ ├── portal.h │ ├── screencast-portal.c │ └── screencast-portal.h ├── linux-pulseaudio │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── linux-pulseaudio.c │ ├── meson.build │ ├── pulse-input.c │ ├── pulse-wrapper.c │ └── pulse-wrapper.h ├── mac-avcapture │ ├── CMakeLists.txt │ ├── av-capture.mm │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lo-LA.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── left-right.hpp │ └── scope-guard.hpp ├── mac-capture │ ├── CMakeLists.txt │ ├── audio-device-enum.c │ ├── audio-device-enum.h │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lo-LA.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── mac-audio.c │ ├── mac-display-capture.m │ ├── mac-screen-capture.m │ ├── mac-window-capture.m │ ├── plugin-main.c │ ├── window-utils.h │ └── window-utils.m ├── mac-videotoolbox │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lt-LT.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ └── encoder.c ├── mac-virtualcam │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ └── en-US.ini │ └── src │ │ ├── common │ │ └── MachProtocol.h │ │ ├── dal-plugin │ │ ├── CMSampleBufferUtils.h │ │ ├── CMSampleBufferUtils.mm │ │ ├── CMakeLists.txt │ │ ├── Defines.h │ │ ├── Info.plist │ │ ├── Logging.h │ │ ├── OBSDALDevice.h │ │ ├── OBSDALDevice.mm │ │ ├── OBSDALMachClient.h │ │ ├── OBSDALMachClient.mm │ │ ├── OBSDALObjectStore.h │ │ ├── OBSDALObjectStore.mm │ │ ├── OBSDALPlugIn.h │ │ ├── OBSDALPlugIn.mm │ │ ├── OBSDALPlugInInterface.h │ │ ├── OBSDALPlugInInterface.mm │ │ ├── OBSDALPlugInMain.mm │ │ ├── OBSDALStream.h │ │ ├── OBSDALStream.mm │ │ └── placeholder.png │ │ └── obs-plugin │ │ ├── CMakeLists.txt │ │ ├── Defines.h │ │ ├── OBSDALMachServer.h │ │ ├── OBSDALMachServer.mm │ │ ├── data │ │ └── locale │ │ │ ├── an-ES.ini │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── be-BY.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ └── plugin-main.mm ├── meson.build ├── obs-ffmpeg │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── external │ │ ├── .clang-format │ │ ├── AMF │ │ │ └── include │ │ │ │ ├── components │ │ │ │ ├── Ambisonic2SRenderer.h │ │ │ │ ├── AudioCapture.h │ │ │ │ ├── Capture.h │ │ │ │ ├── ChromaKey.h │ │ │ │ ├── ColorSpace.h │ │ │ │ ├── Component.h │ │ │ │ ├── ComponentCaps.h │ │ │ │ ├── CursorCapture.h │ │ │ │ ├── DisplayCapture.h │ │ │ │ ├── FFMPEGAudioConverter.h │ │ │ │ ├── FFMPEGAudioDecoder.h │ │ │ │ ├── FFMPEGAudioEncoder.h │ │ │ │ ├── FFMPEGComponents.h │ │ │ │ ├── FFMPEGFileDemuxer.h │ │ │ │ ├── FFMPEGFileMuxer.h │ │ │ │ ├── FFMPEGVideoDecoder.h │ │ │ │ ├── HQScaler.h │ │ │ │ ├── MediaSource.h │ │ │ │ ├── PreAnalysis.h │ │ │ │ ├── PreProcessing.h │ │ │ │ ├── VideoCapture.h │ │ │ │ ├── VideoConverter.h │ │ │ │ ├── VideoDecoderUVD.h │ │ │ │ ├── VideoEncoderHEVC.h │ │ │ │ ├── VideoEncoderVCE.h │ │ │ │ ├── VideoStitch.h │ │ │ │ └── ZCamLiveStream.h │ │ │ │ └── core │ │ │ │ ├── AudioBuffer.h │ │ │ │ ├── Buffer.h │ │ │ │ ├── Compute.h │ │ │ │ ├── ComputeFactory.h │ │ │ │ ├── Context.h │ │ │ │ ├── CurrentTime.h │ │ │ │ ├── D3D12AMF.h │ │ │ │ ├── Data.h │ │ │ │ ├── Debug.h │ │ │ │ ├── Dump.h │ │ │ │ ├── Factory.h │ │ │ │ ├── Interface.h │ │ │ │ ├── Plane.h │ │ │ │ ├── Platform.h │ │ │ │ ├── PropertyStorage.h │ │ │ │ ├── PropertyStorageEx.h │ │ │ │ ├── Result.h │ │ │ │ ├── Surface.h │ │ │ │ ├── Trace.h │ │ │ │ ├── Variant.h │ │ │ │ ├── Version.h │ │ │ │ └── VulkanAMF.h │ │ ├── dynlink_cuda.h │ │ └── nvEncodeAPI.h │ ├── ffmpeg-mux │ │ ├── CMakeLists.txt │ │ ├── ffmpeg-mux.c │ │ ├── ffmpeg-mux.h │ │ └── meson.build │ ├── jim-nvenc-helpers.c │ ├── jim-nvenc.c │ ├── jim-nvenc.h │ ├── meson.build │ ├── obs-amf-test │ │ ├── CMakeLists.txt │ │ └── obs-amf-test.cpp │ ├── obs-ffmpeg-audio-encoders.c │ ├── obs-ffmpeg-av1.c │ ├── obs-ffmpeg-compat.h │ ├── obs-ffmpeg-config.h.in │ ├── obs-ffmpeg-formats.h │ ├── obs-ffmpeg-hls-mux.c │ ├── obs-ffmpeg-logging.c │ ├── obs-ffmpeg-mpegts.c │ ├── obs-ffmpeg-mux.c │ ├── obs-ffmpeg-mux.h │ ├── obs-ffmpeg-nvenc.c │ ├── obs-ffmpeg-output.c │ ├── obs-ffmpeg-output.h │ ├── obs-ffmpeg-rist.h │ ├── obs-ffmpeg-source.c │ ├── obs-ffmpeg-srt.h │ ├── obs-ffmpeg-url.h │ ├── obs-ffmpeg-vaapi.c │ ├── obs-ffmpeg-video-encoders.c │ ├── obs-ffmpeg-video-encoders.h │ ├── obs-ffmpeg.c │ ├── texture-amf-opts.hpp │ └── texture-amf.cpp ├── obs-filters │ ├── CMakeLists.txt │ ├── async-delay-filter.c │ ├── chroma-key-filter.c │ ├── color-correction-filter.c │ ├── color-grade-filter.c │ ├── color-key-filter.c │ ├── compressor-filter.c │ ├── crop-filter.c │ ├── data │ │ ├── LUTs │ │ │ ├── black_and_white.png │ │ │ ├── grayscale.cube │ │ │ ├── grayscale.png │ │ │ ├── original.cube │ │ │ ├── original.png │ │ │ ├── posterize.png │ │ │ ├── red_isolated.png │ │ │ └── teal_lows_orange_highs.png │ │ ├── blend_add_filter.effect │ │ ├── blend_mul_filter.effect │ │ ├── blend_sub_filter.effect │ │ ├── chroma_key_filter.effect │ │ ├── chroma_key_filter_v2.effect │ │ ├── color.effect │ │ ├── color_correction_filter.effect │ │ ├── color_grade_filter.effect │ │ ├── color_key_filter.effect │ │ ├── color_key_filter_v2.effect │ │ ├── crop_filter.effect │ │ ├── hdr_tonemap_filter.effect │ │ ├── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── eo-UY.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ ├── luma_key_filter.effect │ │ ├── luma_key_filter_v2.effect │ │ ├── mask_alpha_filter.effect │ │ ├── mask_color_filter.effect │ │ ├── rtx_greenscreen.effect │ │ └── sharpness.effect │ ├── expander-filter.c │ ├── gain-filter.c │ ├── gpu-delay.c │ ├── hdr-tonemap-filter.c │ ├── invert-audio-polarity.c │ ├── limiter-filter.c │ ├── luma-key-filter.c │ ├── mask-filter.c │ ├── meson.build │ ├── noise-gate-filter.c │ ├── noise-suppress-filter.c │ ├── nvafx-load.h │ ├── nvidia-greenscreen-filter.c │ ├── nvvfx-load.h │ ├── obs-filters-config.h.in │ ├── obs-filters.c │ ├── rnnoise │ │ ├── .clang-format │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── README │ │ ├── include │ │ │ └── rnnoise.h │ │ └── src │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── celt_lpc.c │ │ │ ├── celt_lpc.h │ │ │ ├── common.h │ │ │ ├── compile.sh │ │ │ ├── denoise.c │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── opus_types.h │ │ │ ├── pitch.c │ │ │ ├── pitch.h │ │ │ ├── rnn.c │ │ │ ├── rnn.h │ │ │ ├── rnn_data.c │ │ │ ├── rnn_data.h │ │ │ ├── rnn_reader.c │ │ │ ├── rnn_train.py │ │ │ └── tansig_table.h │ ├── scale-filter.c │ ├── scroll-filter.c │ └── sharpness-filter.c ├── obs-libfdk │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── meson.build │ └── obs-libfdk.c ├── obs-outputs │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── flv-mux.c │ ├── flv-mux.h │ ├── flv-output.c │ ├── ftl-stream.c │ ├── librtmp │ │ ├── .clang-format │ │ ├── COPYING │ │ ├── amf.c │ │ ├── amf.h │ │ ├── bytes.h │ │ ├── cencode.c │ │ ├── cencode.h │ │ ├── handshake.h │ │ ├── hashswf.c │ │ ├── http.h │ │ ├── log.c │ │ ├── log.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── parseurl.c │ │ ├── rtmp.c │ │ ├── rtmp.h │ │ └── rtmp_sys.h │ ├── meson.build │ ├── net-if.c │ ├── net-if.h │ ├── null-output.c │ ├── obs-output-ver.h │ ├── obs-outputs.c │ ├── rtmp-helpers.h │ ├── rtmp-stream.c │ ├── rtmp-stream.h │ └── rtmp-windows.c ├── obs-qsv11 │ ├── CMakeLists.txt │ ├── QSV11-License-Clarification-Email.txt │ ├── QSV_Encoder.cpp │ ├── QSV_Encoder.h │ ├── QSV_Encoder_Internal.cpp │ ├── QSV_Encoder_Internal.h │ ├── bits │ │ ├── .clang-format │ │ ├── linux_defs.h │ │ └── windows_defs.h │ ├── common_directx11.cpp │ ├── common_directx11.h │ ├── common_directx9.cpp │ ├── common_directx9.h │ ├── common_utils.cpp │ ├── common_utils.h │ ├── common_utils_windows.cpp │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── device_directx9.cpp │ ├── device_directx9.h │ ├── libmfx │ │ ├── .clang-format │ │ ├── include │ │ │ ├── mfx_critical_section.h │ │ │ ├── mfx_dispatcher.h │ │ │ ├── mfx_dispatcher_defs.h │ │ │ ├── mfx_dispatcher_log.h │ │ │ ├── mfx_driver_store_loader.h │ │ │ ├── mfx_dxva2_device.h │ │ │ ├── mfx_exposed_functions_list.h │ │ │ ├── mfx_library_iterator.h │ │ │ ├── mfx_load_dll.h │ │ │ ├── mfx_load_plugin.h │ │ │ ├── mfx_plugin_hive.h │ │ │ ├── mfx_vector.h │ │ │ ├── mfx_win_reg_key.h │ │ │ ├── mfxaudio_exposed_functions_list.h │ │ │ └── msdk │ │ │ │ └── include │ │ │ │ ├── mfxadapter.h │ │ │ │ ├── mfxastructures.h │ │ │ │ ├── mfxaudio++.h │ │ │ │ ├── mfxaudio.h │ │ │ │ ├── mfxcommon.h │ │ │ │ ├── mfxdefs.h │ │ │ │ ├── mfxenc.h │ │ │ │ ├── mfxjpeg.h │ │ │ │ ├── mfxmvc.h │ │ │ │ ├── mfxpak.h │ │ │ │ ├── mfxplugin++.h │ │ │ │ ├── mfxplugin.h │ │ │ │ ├── mfxsession.h │ │ │ │ ├── mfxstructures.h │ │ │ │ ├── mfxvideo++.h │ │ │ │ ├── mfxvideo.h │ │ │ │ └── mfxvstructures.h │ │ └── src │ │ │ ├── main.cpp │ │ │ ├── mfx_critical_section.cpp │ │ │ ├── mfx_dispatcher.cpp │ │ │ ├── mfx_dispatcher_log.cpp │ │ │ ├── mfx_driver_store_loader.cpp │ │ │ ├── mfx_dxva2_device.cpp │ │ │ ├── mfx_function_table.cpp │ │ │ ├── mfx_library_iterator.cpp │ │ │ ├── mfx_load_dll.cpp │ │ │ ├── mfx_load_plugin.cpp │ │ │ ├── mfx_plugin_hive.cpp │ │ │ └── mfx_win_reg_key.cpp │ ├── obs-qsv11-plugin-main.c │ └── obs-qsv11.c ├── obs-text │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lo-LA.ini │ │ │ ├── lt-LT.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ └── gdiplus │ │ └── obs-text.cpp ├── obs-transitions │ ├── CMakeLists.txt │ ├── data │ │ ├── fade_to_color_transition.effect │ │ ├── fade_transition.effect │ │ ├── locale │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ ├── luma_wipe_transition.effect │ │ ├── luma_wipes │ │ │ ├── barndoor-botleft.png │ │ │ ├── barndoor-h.png │ │ │ ├── barndoor-topleft.png │ │ │ ├── barndoor-v.png │ │ │ ├── blinds-h.png │ │ │ ├── box-botleft.png │ │ │ ├── box-botright.png │ │ │ ├── box-topleft.png │ │ │ ├── box-topright.png │ │ │ ├── burst.png │ │ │ ├── checkerboard-small.png │ │ │ ├── circles.png │ │ │ ├── clock.png │ │ │ ├── cloud.png │ │ │ ├── curtain.png │ │ │ ├── fan.png │ │ │ ├── fractal.png │ │ │ ├── iris.png │ │ │ ├── linear-h.png │ │ │ ├── linear-topleft.png │ │ │ ├── linear-topright.png │ │ │ ├── linear-v.png │ │ │ ├── parallel-zigzag-h.png │ │ │ ├── parallel-zigzag-v.png │ │ │ ├── sinus9.png │ │ │ ├── spiral.png │ │ │ ├── square.png │ │ │ ├── squares.png │ │ │ ├── stripes.png │ │ │ ├── strips-h.png │ │ │ ├── strips-v.png │ │ │ ├── watercolor.png │ │ │ ├── wipes.json │ │ │ ├── zigzag-h.png │ │ │ └── zigzag-v.png │ │ ├── slide_transition.effect │ │ ├── stinger_matte_transition.effect │ │ └── swipe_transition.effect │ ├── easings.h │ ├── meson.build │ ├── obs-transitions.c │ ├── transition-cut.c │ ├── transition-fade-to-color.c │ ├── transition-fade.c │ ├── transition-luma-wipe.c │ ├── transition-slide.c │ ├── transition-stinger.c │ └── transition-swipe.c ├── obs-vst │ ├── CMakeLists.txt │ ├── EditorWidget.cpp │ ├── VSTPlugin.cpp │ ├── data │ │ └── locale │ │ │ ├── an-ES.ini │ │ │ ├── ar-SA.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── headers │ │ ├── EditorWidget.h │ │ ├── VSTPlugin.h │ │ └── vst-plugin-callbacks.hpp │ ├── linux │ │ ├── EditorWidget-linux.cpp │ │ └── VSTPlugin-linux.cpp │ ├── mac │ │ ├── EditorWidget-osx.mm │ │ └── VSTPlugin-osx.mm │ ├── obs-vst.cpp │ ├── vst_header │ │ ├── .clang-format │ │ └── aeffectx.h │ └── win │ │ ├── EditorWidget-win.cpp │ │ └── VSTPlugin-win.cpp ├── obs-x264 │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lv-LV.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── meson.build │ ├── obs-x264-plugin-main.c │ ├── obs-x264-test.c │ └── obs-x264.c ├── oss-audio │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── oss-audio.c │ ├── oss-input.c │ └── oss-platform.h.in ├── rtmp-services │ ├── CMakeLists.txt │ ├── data │ │ ├── locale │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ ├── package.json │ │ ├── schema │ │ │ ├── package-schema.json │ │ │ └── service-schema-v3.json │ │ └── services.json │ ├── lookup-config.h.in │ ├── meson.build │ ├── rtmp-common.c │ ├── rtmp-custom.c │ ├── rtmp-format-ver.h │ ├── rtmp-services-main.c │ └── service-specific │ │ ├── dacast.c │ │ ├── dacast.h │ │ ├── nimotv.c │ │ ├── nimotv.h │ │ ├── showroom.c │ │ ├── showroom.h │ │ ├── twitch.c │ │ ├── twitch.h │ │ ├── younow.c │ │ └── younow.h ├── sndio │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── be-BY.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── meson.build │ ├── sndio-input.c │ ├── sndio-input.h │ └── sndio.c ├── text-freetype2 │ ├── CMakeLists.txt │ ├── data │ │ ├── locale │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ └── text_default.effect │ ├── find-font-cocoa.m │ ├── find-font-iconv.c │ ├── find-font-unix.c │ ├── find-font-windows.c │ ├── find-font.c │ ├── find-font.h │ ├── meson.build │ ├── obs-convenience.c │ ├── obs-convenience.h │ ├── text-freetype2.c │ ├── text-freetype2.h │ └── text-functionality.c ├── win-capture │ ├── CMakeLists.txt │ ├── app-helpers.c │ ├── app-helpers.h │ ├── cursor-capture.c │ ├── cursor-capture.h │ ├── d3d8-api │ │ ├── .clang-format │ │ ├── d3d8.h │ │ ├── d3d8caps.h │ │ └── d3d8types.h │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lo-LA.ini │ │ │ ├── lt-LT.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── dc-capture.c │ ├── dc-capture.h │ ├── duplicator-monitor-capture.c │ ├── game-capture-file-init.c │ ├── game-capture.c │ ├── get-graphics-offsets │ │ ├── CMakeLists.txt │ │ ├── d3d8-offsets.cpp │ │ ├── d3d9-offsets.cpp │ │ ├── ddraw-offsets.cpp │ │ ├── dxgi-offsets.cpp │ │ ├── get-graphics-offsets.c │ │ └── get-graphics-offsets.h │ ├── graphics-hook-info.h │ ├── graphics-hook-ver.h │ ├── graphics-hook │ │ ├── CMakeLists.txt │ │ ├── d3d10-capture.cpp │ │ ├── d3d11-capture.cpp │ │ ├── d3d12-capture.cpp │ │ ├── d3d8-capture.cpp │ │ ├── d3d9-capture.cpp │ │ ├── d3d9-patches.hpp │ │ ├── dxgi-capture.cpp │ │ ├── dxgi-helpers.hpp │ │ ├── gl-capture.c │ │ ├── gl-decs.h │ │ ├── graphics-hook-config.h.in │ │ ├── graphics-hook.c │ │ ├── graphics-hook.h │ │ ├── graphics-hook.rc │ │ ├── obs-vulkan32.json │ │ ├── obs-vulkan64.json │ │ ├── vulkan-capture.c │ │ └── vulkan-capture.h │ ├── hook-helpers.h │ ├── inject-helper │ │ ├── CMakeLists.txt │ │ └── inject-helper.c │ ├── inject-library.c │ ├── inject-library.h │ ├── load-graphics-offsets.c │ ├── monitor-capture.c │ ├── nt-stuff.c │ ├── nt-stuff.h │ ├── plugin-main.c │ └── window-capture.c ├── win-dshow │ ├── CMakeLists.txt │ ├── data │ │ ├── locale │ │ │ ├── an-ES.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ └── placeholder.png │ ├── dshow-plugin.cpp │ ├── encode-dstr.hpp │ ├── ffmpeg-decode.c │ ├── ffmpeg-decode.h │ ├── shared-memory-queue.c │ ├── shared-memory-queue.h │ ├── tiny-nv12-scale.c │ ├── tiny-nv12-scale.h │ ├── virtualcam-guid.h.in │ ├── virtualcam-install.bat.in │ ├── virtualcam-module │ │ ├── CMakeLists.txt │ │ ├── placeholder.cpp │ │ ├── sleepto.c │ │ ├── sleepto.h │ │ ├── virtualcam-filter.cpp │ │ ├── virtualcam-filter.hpp │ │ ├── virtualcam-module.cpp │ │ └── virtualcam-module.def.in │ ├── virtualcam-uninstall.bat.in │ ├── virtualcam.c │ ├── win-dshow-encoder.cpp │ └── win-dshow.cpp └── win-wasapi │ ├── CMakeLists.txt │ ├── data │ └── locale │ │ ├── an-ES.ini │ │ ├── ar-SA.ini │ │ ├── ba-RU.ini │ │ ├── be-BY.ini │ │ ├── bg-BG.ini │ │ ├── bn-BD.ini │ │ ├── ca-ES.ini │ │ ├── cs-CZ.ini │ │ ├── da-DK.ini │ │ ├── de-DE.ini │ │ ├── el-GR.ini │ │ ├── en-US.ini │ │ ├── es-ES.ini │ │ ├── et-EE.ini │ │ ├── eu-ES.ini │ │ ├── fa-IR.ini │ │ ├── fi-FI.ini │ │ ├── fil-PH.ini │ │ ├── fr-FR.ini │ │ ├── gd-GB.ini │ │ ├── gl-ES.ini │ │ ├── he-IL.ini │ │ ├── hi-IN.ini │ │ ├── hr-HR.ini │ │ ├── hu-HU.ini │ │ ├── hy-AM.ini │ │ ├── id-ID.ini │ │ ├── it-IT.ini │ │ ├── ja-JP.ini │ │ ├── ka-GE.ini │ │ ├── kab-KAB.ini │ │ ├── kmr-TR.ini │ │ ├── ko-KR.ini │ │ ├── lt-LT.ini │ │ ├── mn-MN.ini │ │ ├── ms-MY.ini │ │ ├── nb-NO.ini │ │ ├── nl-NL.ini │ │ ├── nn-NO.ini │ │ ├── pl-PL.ini │ │ ├── pt-BR.ini │ │ ├── pt-PT.ini │ │ ├── ro-RO.ini │ │ ├── ru-RU.ini │ │ ├── si-LK.ini │ │ ├── sk-SK.ini │ │ ├── sl-SI.ini │ │ ├── sr-CS.ini │ │ ├── sr-SP.ini │ │ ├── sv-SE.ini │ │ ├── szl-PL.ini │ │ ├── ta-IN.ini │ │ ├── th-TH.ini │ │ ├── tl-PH.ini │ │ ├── tr-TR.ini │ │ ├── uk-UA.ini │ │ ├── ur-PK.ini │ │ ├── vi-VN.ini │ │ ├── zh-CN.ini │ │ └── zh-TW.ini │ ├── enum-wasapi.cpp │ ├── enum-wasapi.hpp │ ├── plugin-main.cpp │ └── win-wasapi.cpp ├── src ├── CMakeLists.txt ├── assets │ ├── collection-templates │ │ └── empty.svg │ └── projects.svg ├── audio │ ├── obs-audio-device-controls.c │ ├── obs-audio-device-controls.h │ ├── obs-audio-device-controls.ui │ ├── obs-audio-peak-tracker.c │ ├── obs-audio-peak-tracker.h │ ├── obs-volume-bar.c │ └── obs-volume-bar.h ├── collections │ ├── obs-collection-template-icon.c │ ├── obs-collection-template-icon.h │ ├── obs-collection-template-icon.ui │ ├── obs-new-collection-dialog.c │ ├── obs-new-collection-dialog.h │ └── obs-new-collection-dialog.ui ├── data │ ├── com.obsproject.Studio.GTK4.desktop.in │ ├── icons │ │ └── hicolor │ │ │ └── scalable │ │ │ └── apps │ │ │ └── com.obsproject.Studio.GTK4.svg │ └── meson.build ├── icons │ ├── align-tool-symbolic.svg │ ├── axes-one-quadrant-symbolic.svg │ ├── blend-tool-symbolic.svg │ ├── bottom-symbolic.svg │ ├── chat-symbolic.svg │ ├── down-symbolic.svg │ ├── explore2-large-symbolic.svg │ ├── flap-symbolic.svg │ ├── general-properties-symbolic.svg │ ├── group-symbolic.svg │ ├── media-record-symbolic.svg │ ├── music-queue-symbolic.svg │ ├── network-cellular-symbolic.svg │ ├── sound-wave-symbolic.svg │ ├── system-monitor-symbolic.svg │ ├── top-symbolic.svg │ ├── ungroup-symbolic.svg │ └── up-symbolic.svg ├── main.c ├── meson.build ├── mockups │ ├── activities.svg │ └── empty-page.svg ├── obs-activities-page.c ├── obs-activities-page.h ├── obs-activities-page.ui ├── obs-application.c ├── obs-application.h ├── obs-audio-controller.c ├── obs-audio-controller.h ├── obs-audio-device.c ├── obs-audio-device.h ├── obs-collection-template.c ├── obs-collection-template.h ├── obs-collection.c ├── obs-collection.h ├── obs-collections-page.c ├── obs-collections-page.h ├── obs-collections-page.ui ├── obs-config-manager.c ├── obs-config-manager.h ├── obs-debug.h.in ├── obs-display-renderer.c ├── obs-display-renderer.h ├── obs-display-widget.c ├── obs-display-widget.h ├── obs-log.c ├── obs-log.h ├── obs-mixer-page.c ├── obs-mixer-page.h ├── obs-mixer-page.ui ├── obs-scene-editor.c ├── obs-scene-editor.h ├── obs-scene-editor.ui ├── obs-style-manager.c ├── obs-style-manager.h ├── obs-templates-manager.c ├── obs-templates-manager.h ├── obs-types.h ├── obs-utils.c ├── obs-utils.h ├── obs-window.c ├── obs-window.h ├── obs-window.ui ├── obs.gresources.xml ├── preferences │ ├── obs-appearance-page.c │ ├── obs-appearance-page.h │ ├── obs-appearance-page.ui │ ├── obs-preferences-dialog.c │ ├── obs-preferences-dialog.h │ ├── obs-preferences-dialog.ui │ ├── obs-theme-card.c │ ├── obs-theme-card.h │ └── obs-theme-card.ui ├── profiles │ ├── obs-profiles-dialog.c │ ├── obs-profiles-dialog.h │ └── obs-profiles-dialog.ui ├── style-dark.css ├── style.css └── styles │ ├── default │ ├── style-dark.css │ └── style.css │ └── sakura │ ├── style-dark.css │ └── style.css ├── subprojects └── jansson.wrap └── test ├── CMakeLists.txt ├── cmocka ├── CMakeLists.txt ├── test_bitstream.c ├── test_darray.c └── test_serializer.c ├── osx ├── CMakeLists.txt └── test.mm ├── test-input ├── CMakeLists.txt ├── data │ ├── draw.effect │ └── test.effect ├── sync-async-source.c ├── sync-audio-buffering.c ├── sync-pair-aud.c ├── sync-pair-vid.c ├── test-filter.c ├── test-input.c ├── test-random.c └── test-sinewave.c └── win ├── CMakeLists.txt └── test.cpp /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.clang-format -------------------------------------------------------------------------------- /.cmake-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.cmake-format.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | f53df7da64d2dfc542c24656720b2f47c8957164 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/.mailmap -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/AUTHORS -------------------------------------------------------------------------------- /CI/build-freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/build-freebsd.sh -------------------------------------------------------------------------------- /CI/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/build-linux.sh -------------------------------------------------------------------------------- /CI/build-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/build-macos.sh -------------------------------------------------------------------------------- /CI/build-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/build-windows.ps1 -------------------------------------------------------------------------------- /CI/check-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/check-changes.sh -------------------------------------------------------------------------------- /CI/check-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/check-cmake.sh -------------------------------------------------------------------------------- /CI/check-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/check-format.sh -------------------------------------------------------------------------------- /CI/check-jsonschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/check-jsonschema.py -------------------------------------------------------------------------------- /CI/check-services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/check-services.py -------------------------------------------------------------------------------- /CI/freebsd/02_build_obs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/freebsd/02_build_obs.sh -------------------------------------------------------------------------------- /CI/freebsd/03_package_obs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/freebsd/03_package_obs.sh -------------------------------------------------------------------------------- /CI/include/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/include/Brewfile -------------------------------------------------------------------------------- /CI/include/Wingetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/include/Wingetfile -------------------------------------------------------------------------------- /CI/include/build_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/include/build_support.sh -------------------------------------------------------------------------------- /CI/linux/02_build_obs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/linux/02_build_obs.sh -------------------------------------------------------------------------------- /CI/linux/03_package_obs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/linux/03_package_obs.sh -------------------------------------------------------------------------------- /CI/macos/02_build_obs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/macos/02_build_obs.sh -------------------------------------------------------------------------------- /CI/macos/03_package_obs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/macos/03_package_obs.sh -------------------------------------------------------------------------------- /CI/steam/obs_build.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/steam/obs_build.vdf -------------------------------------------------------------------------------- /CI/windows/02_build_obs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/windows/02_build_obs.ps1 -------------------------------------------------------------------------------- /CI/windows/03_package_obs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CI/windows/03_package_obs.ps1 -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/COC.rst -------------------------------------------------------------------------------- /COMMITMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/COMMITMENT -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/INSTALL -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/README.rst -------------------------------------------------------------------------------- /UI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/CMakeLists.txt -------------------------------------------------------------------------------- /UI/adv-audio-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/adv-audio-control.cpp -------------------------------------------------------------------------------- /UI/adv-audio-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/adv-audio-control.hpp -------------------------------------------------------------------------------- /UI/api-interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/api-interface.cpp -------------------------------------------------------------------------------- /UI/audio-encoders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/audio-encoders.cpp -------------------------------------------------------------------------------- /UI/audio-encoders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/audio-encoders.hpp -------------------------------------------------------------------------------- /UI/auth-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-base.cpp -------------------------------------------------------------------------------- /UI/auth-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-base.hpp -------------------------------------------------------------------------------- /UI/auth-listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-listener.cpp -------------------------------------------------------------------------------- /UI/auth-listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-listener.hpp -------------------------------------------------------------------------------- /UI/auth-oauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-oauth.cpp -------------------------------------------------------------------------------- /UI/auth-oauth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-oauth.hpp -------------------------------------------------------------------------------- /UI/auth-restream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-restream.cpp -------------------------------------------------------------------------------- /UI/auth-restream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-restream.hpp -------------------------------------------------------------------------------- /UI/auth-twitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-twitch.cpp -------------------------------------------------------------------------------- /UI/auth-twitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-twitch.hpp -------------------------------------------------------------------------------- /UI/auth-youtube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-youtube.cpp -------------------------------------------------------------------------------- /UI/auth-youtube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/auth-youtube.hpp -------------------------------------------------------------------------------- /UI/balance-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/balance-slider.hpp -------------------------------------------------------------------------------- /UI/clickable-label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/clickable-label.hpp -------------------------------------------------------------------------------- /UI/context-bar-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/context-bar-controls.cpp -------------------------------------------------------------------------------- /UI/context-bar-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/context-bar-controls.hpp -------------------------------------------------------------------------------- /UI/crash-report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/crash-report.cpp -------------------------------------------------------------------------------- /UI/crash-report.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/crash-report.hpp -------------------------------------------------------------------------------- /UI/data/OBSPublicRSAKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/OBSPublicRSAKey.pem -------------------------------------------------------------------------------- /UI/data/images/overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/images/overflow.png -------------------------------------------------------------------------------- /UI/data/license/gplv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/license/gplv2.txt -------------------------------------------------------------------------------- /UI/data/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale.ini -------------------------------------------------------------------------------- /UI/data/locale/an-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/an-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/ar-SA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ar-SA.ini -------------------------------------------------------------------------------- /UI/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/az-AZ.ini -------------------------------------------------------------------------------- /UI/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ba-RU.ini -------------------------------------------------------------------------------- /UI/data/locale/be-BY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/be-BY.ini -------------------------------------------------------------------------------- /UI/data/locale/bem-ZM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/bem-ZM.ini -------------------------------------------------------------------------------- /UI/data/locale/bg-BG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/bg-BG.ini -------------------------------------------------------------------------------- /UI/data/locale/bn-BD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/bn-BD.ini -------------------------------------------------------------------------------- /UI/data/locale/ca-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ca-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/cs-CZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/cs-CZ.ini -------------------------------------------------------------------------------- /UI/data/locale/da-DK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/da-DK.ini -------------------------------------------------------------------------------- /UI/data/locale/de-DE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/de-DE.ini -------------------------------------------------------------------------------- /UI/data/locale/el-GR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/el-GR.ini -------------------------------------------------------------------------------- /UI/data/locale/en-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/en-GB.ini -------------------------------------------------------------------------------- /UI/data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/en-US.ini -------------------------------------------------------------------------------- /UI/data/locale/eo-UY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/eo-UY.ini -------------------------------------------------------------------------------- /UI/data/locale/es-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/es-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/et-EE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/et-EE.ini -------------------------------------------------------------------------------- /UI/data/locale/eu-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/eu-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/fa-IR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/fa-IR.ini -------------------------------------------------------------------------------- /UI/data/locale/fi-FI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/fi-FI.ini -------------------------------------------------------------------------------- /UI/data/locale/fil-PH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/fil-PH.ini -------------------------------------------------------------------------------- /UI/data/locale/fr-FR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/fr-FR.ini -------------------------------------------------------------------------------- /UI/data/locale/gd-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/gd-GB.ini -------------------------------------------------------------------------------- /UI/data/locale/gl-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/gl-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/he-IL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/he-IL.ini -------------------------------------------------------------------------------- /UI/data/locale/hi-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/hi-IN.ini -------------------------------------------------------------------------------- /UI/data/locale/hr-HR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/hr-HR.ini -------------------------------------------------------------------------------- /UI/data/locale/hu-HU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/hu-HU.ini -------------------------------------------------------------------------------- /UI/data/locale/hy-AM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/hy-AM.ini -------------------------------------------------------------------------------- /UI/data/locale/id-ID.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/id-ID.ini -------------------------------------------------------------------------------- /UI/data/locale/it-IT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/it-IT.ini -------------------------------------------------------------------------------- /UI/data/locale/ja-JP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ja-JP.ini -------------------------------------------------------------------------------- /UI/data/locale/ka-GE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ka-GE.ini -------------------------------------------------------------------------------- /UI/data/locale/kab-KAB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/kab-KAB.ini -------------------------------------------------------------------------------- /UI/data/locale/kmr-TR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/kmr-TR.ini -------------------------------------------------------------------------------- /UI/data/locale/ko-KR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ko-KR.ini -------------------------------------------------------------------------------- /UI/data/locale/lo-LA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/lo-LA.ini -------------------------------------------------------------------------------- /UI/data/locale/lt-LT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/lt-LT.ini -------------------------------------------------------------------------------- /UI/data/locale/lv-LV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/lv-LV.ini -------------------------------------------------------------------------------- /UI/data/locale/mn-MN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/mn-MN.ini -------------------------------------------------------------------------------- /UI/data/locale/ms-MY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ms-MY.ini -------------------------------------------------------------------------------- /UI/data/locale/nb-NO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/nb-NO.ini -------------------------------------------------------------------------------- /UI/data/locale/nl-NL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/nl-NL.ini -------------------------------------------------------------------------------- /UI/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/nn-NO.ini -------------------------------------------------------------------------------- /UI/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/oc-FR.ini -------------------------------------------------------------------------------- /UI/data/locale/pa-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/pa-IN.ini -------------------------------------------------------------------------------- /UI/data/locale/pl-PL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/pl-PL.ini -------------------------------------------------------------------------------- /UI/data/locale/pt-BR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/pt-BR.ini -------------------------------------------------------------------------------- /UI/data/locale/pt-PT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/pt-PT.ini -------------------------------------------------------------------------------- /UI/data/locale/ro-RO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ro-RO.ini -------------------------------------------------------------------------------- /UI/data/locale/ru-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ru-RU.ini -------------------------------------------------------------------------------- /UI/data/locale/si-LK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/si-LK.ini -------------------------------------------------------------------------------- /UI/data/locale/sk-SK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/sk-SK.ini -------------------------------------------------------------------------------- /UI/data/locale/sl-SI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/sl-SI.ini -------------------------------------------------------------------------------- /UI/data/locale/sq-AL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/sq-AL.ini -------------------------------------------------------------------------------- /UI/data/locale/sr-CS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/sr-CS.ini -------------------------------------------------------------------------------- /UI/data/locale/sr-SP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/sr-SP.ini -------------------------------------------------------------------------------- /UI/data/locale/sv-SE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/sv-SE.ini -------------------------------------------------------------------------------- /UI/data/locale/szl-PL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/szl-PL.ini -------------------------------------------------------------------------------- /UI/data/locale/ta-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ta-IN.ini -------------------------------------------------------------------------------- /UI/data/locale/te-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/te-IN.ini -------------------------------------------------------------------------------- /UI/data/locale/th-TH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/th-TH.ini -------------------------------------------------------------------------------- /UI/data/locale/tl-PH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/tl-PH.ini -------------------------------------------------------------------------------- /UI/data/locale/tr-TR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/tr-TR.ini -------------------------------------------------------------------------------- /UI/data/locale/uk-UA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/uk-UA.ini -------------------------------------------------------------------------------- /UI/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/ur-PK.ini -------------------------------------------------------------------------------- /UI/data/locale/vi-VN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/vi-VN.ini -------------------------------------------------------------------------------- /UI/data/locale/zh-CN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/zh-CN.ini -------------------------------------------------------------------------------- /UI/data/locale/zh-TW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/locale/zh-TW.ini -------------------------------------------------------------------------------- /UI/data/themes/Acri.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Acri.qss -------------------------------------------------------------------------------- /UI/data/themes/Dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark.qss -------------------------------------------------------------------------------- /UI/data/themes/Dark/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/alert.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/close.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/cogs.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/dots.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/down.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/left.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/minus.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/mute.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/plus.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/right.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/save.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/trash.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Dark/up.svg -------------------------------------------------------------------------------- /UI/data/themes/Grey.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Grey.qss -------------------------------------------------------------------------------- /UI/data/themes/Light.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light.qss -------------------------------------------------------------------------------- /UI/data/themes/Light/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light/cogs.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light/dots.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light/down.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light/left.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light/mute.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light/plus.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light/save.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Light/up.svg -------------------------------------------------------------------------------- /UI/data/themes/Rachni.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Rachni.qss -------------------------------------------------------------------------------- /UI/data/themes/System.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/System.qss -------------------------------------------------------------------------------- /UI/data/themes/Yami.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/data/themes/Yami.qss -------------------------------------------------------------------------------- /UI/display-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/display-helpers.hpp -------------------------------------------------------------------------------- /UI/double-slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/double-slider.cpp -------------------------------------------------------------------------------- /UI/double-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/double-slider.hpp -------------------------------------------------------------------------------- /UI/expand-checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/expand-checkbox.hpp -------------------------------------------------------------------------------- /UI/focus-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/focus-list.cpp -------------------------------------------------------------------------------- /UI/focus-list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/focus-list.hpp -------------------------------------------------------------------------------- /UI/forms/ColorSelect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/ColorSelect.ui -------------------------------------------------------------------------------- /UI/forms/OBSAbout.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSAbout.ui -------------------------------------------------------------------------------- /UI/forms/OBSAdvAudio.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSAdvAudio.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasic.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSBasic.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicFilters.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSBasicFilters.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSBasicSettings.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicTransform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSBasicTransform.ui -------------------------------------------------------------------------------- /UI/forms/OBSExtraBrowsers.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSExtraBrowsers.ui -------------------------------------------------------------------------------- /UI/forms/OBSImporter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSImporter.ui -------------------------------------------------------------------------------- /UI/forms/OBSLogReply.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSLogReply.ui -------------------------------------------------------------------------------- /UI/forms/OBSLogViewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSLogViewer.ui -------------------------------------------------------------------------------- /UI/forms/OBSMissingFiles.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSMissingFiles.ui -------------------------------------------------------------------------------- /UI/forms/OBSPermissions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSPermissions.ui -------------------------------------------------------------------------------- /UI/forms/OBSRemux.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSRemux.ui -------------------------------------------------------------------------------- /UI/forms/OBSUpdate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSUpdate.ui -------------------------------------------------------------------------------- /UI/forms/OBSYoutubeActions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/OBSYoutubeActions.ui -------------------------------------------------------------------------------- /UI/forms/images/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/active.png -------------------------------------------------------------------------------- /UI/forms/images/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/alert.svg -------------------------------------------------------------------------------- /UI/forms/images/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/cogs.svg -------------------------------------------------------------------------------- /UI/forms/images/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/collapse.svg -------------------------------------------------------------------------------- /UI/forms/images/dots-vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/dots-vert.svg -------------------------------------------------------------------------------- /UI/forms/images/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/dots.svg -------------------------------------------------------------------------------- /UI/forms/images/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/down.svg -------------------------------------------------------------------------------- /UI/forms/images/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/expand.svg -------------------------------------------------------------------------------- /UI/forms/images/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/filter.svg -------------------------------------------------------------------------------- /UI/forms/images/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/help.svg -------------------------------------------------------------------------------- /UI/forms/images/interact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/interact.svg -------------------------------------------------------------------------------- /UI/forms/images/invisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/invisible.svg -------------------------------------------------------------------------------- /UI/forms/images/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/locked.svg -------------------------------------------------------------------------------- /UI/forms/images/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/minus.svg -------------------------------------------------------------------------------- /UI/forms/images/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/mute.svg -------------------------------------------------------------------------------- /UI/forms/images/obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/obs.png -------------------------------------------------------------------------------- /UI/forms/images/obs_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/obs_macos.png -------------------------------------------------------------------------------- /UI/forms/images/obs_macos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/obs_macos.svg -------------------------------------------------------------------------------- /UI/forms/images/paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/paused.png -------------------------------------------------------------------------------- /UI/forms/images/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/plus.svg -------------------------------------------------------------------------------- /UI/forms/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/refresh.svg -------------------------------------------------------------------------------- /UI/forms/images/revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/revert.svg -------------------------------------------------------------------------------- /UI/forms/images/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/right.svg -------------------------------------------------------------------------------- /UI/forms/images/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/save.svg -------------------------------------------------------------------------------- /UI/forms/images/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/unlocked.svg -------------------------------------------------------------------------------- /UI/forms/images/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/up.svg -------------------------------------------------------------------------------- /UI/forms/images/visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/visible.svg -------------------------------------------------------------------------------- /UI/forms/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/images/warning.svg -------------------------------------------------------------------------------- /UI/forms/obs.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/forms/obs.qrc -------------------------------------------------------------------------------- /UI/frontend-plugins/decklink-captions/data/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UI/frontend-plugins/decklink-output-ui/data/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UI/frontend-plugins/frontend-tools/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Captions.AudioSource="Font àudio" 2 | -------------------------------------------------------------------------------- /UI/horizontal-scroll-area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/horizontal-scroll-area.cpp -------------------------------------------------------------------------------- /UI/horizontal-scroll-area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/horizontal-scroll-area.hpp -------------------------------------------------------------------------------- /UI/hotkey-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/hotkey-edit.cpp -------------------------------------------------------------------------------- /UI/hotkey-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/hotkey-edit.hpp -------------------------------------------------------------------------------- /UI/importers/classic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/importers/classic.cpp -------------------------------------------------------------------------------- /UI/importers/importers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/importers/importers.cpp -------------------------------------------------------------------------------- /UI/importers/importers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/importers/importers.hpp -------------------------------------------------------------------------------- /UI/importers/sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/importers/sl.cpp -------------------------------------------------------------------------------- /UI/importers/studio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/importers/studio.cpp -------------------------------------------------------------------------------- /UI/importers/xsplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/importers/xsplit.cpp -------------------------------------------------------------------------------- /UI/installer/OBSBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/installer/OBSBanner.bmp -------------------------------------------------------------------------------- /UI/installer/OBSHeader.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/installer/OBSHeader.bmp -------------------------------------------------------------------------------- /UI/installer/mp-installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/installer/mp-installer.nsi -------------------------------------------------------------------------------- /UI/item-widget-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/item-widget-helpers.cpp -------------------------------------------------------------------------------- /UI/item-widget-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/item-widget-helpers.hpp -------------------------------------------------------------------------------- /UI/lineedit-autoresize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/lineedit-autoresize.cpp -------------------------------------------------------------------------------- /UI/lineedit-autoresize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/lineedit-autoresize.hpp -------------------------------------------------------------------------------- /UI/locked-checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/locked-checkbox.cpp -------------------------------------------------------------------------------- /UI/locked-checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/locked-checkbox.hpp -------------------------------------------------------------------------------- /UI/log-viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/log-viewer.cpp -------------------------------------------------------------------------------- /UI/log-viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/log-viewer.hpp -------------------------------------------------------------------------------- /UI/media-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/media-controls.cpp -------------------------------------------------------------------------------- /UI/media-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/media-controls.hpp -------------------------------------------------------------------------------- /UI/media-slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/media-slider.cpp -------------------------------------------------------------------------------- /UI/media-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/media-slider.hpp -------------------------------------------------------------------------------- /UI/menu-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/menu-button.cpp -------------------------------------------------------------------------------- /UI/menu-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/menu-button.hpp -------------------------------------------------------------------------------- /UI/multiview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/multiview.cpp -------------------------------------------------------------------------------- /UI/multiview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/multiview.hpp -------------------------------------------------------------------------------- /UI/mute-checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/mute-checkbox.hpp -------------------------------------------------------------------------------- /UI/nix-update/nix-update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/nix-update/nix-update.cpp -------------------------------------------------------------------------------- /UI/nix-update/nix-update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/nix-update/nix-update.hpp -------------------------------------------------------------------------------- /UI/obf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/obf.c -------------------------------------------------------------------------------- /UI/obf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/obf.h -------------------------------------------------------------------------------- /UI/obs-app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/obs-app.cpp -------------------------------------------------------------------------------- /UI/obs-app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/obs-app.hpp -------------------------------------------------------------------------------- /UI/obs-proxy-style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/obs-proxy-style.cpp -------------------------------------------------------------------------------- /UI/obs-proxy-style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/obs-proxy-style.hpp -------------------------------------------------------------------------------- /UI/obs.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/obs.manifest -------------------------------------------------------------------------------- /UI/obs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/obs.rc.in -------------------------------------------------------------------------------- /UI/plain-text-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/plain-text-edit.cpp -------------------------------------------------------------------------------- /UI/plain-text-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/plain-text-edit.hpp -------------------------------------------------------------------------------- /UI/platform-osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/platform-osx.mm -------------------------------------------------------------------------------- /UI/platform-windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/platform-windows.cpp -------------------------------------------------------------------------------- /UI/platform-x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/platform-x11.cpp -------------------------------------------------------------------------------- /UI/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/platform.hpp -------------------------------------------------------------------------------- /UI/properties-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/properties-view.cpp -------------------------------------------------------------------------------- /UI/properties-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/properties-view.hpp -------------------------------------------------------------------------------- /UI/properties-view.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/properties-view.moc.hpp -------------------------------------------------------------------------------- /UI/qt-display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/qt-display.cpp -------------------------------------------------------------------------------- /UI/qt-display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/qt-display.hpp -------------------------------------------------------------------------------- /UI/qt-wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/qt-wrappers.cpp -------------------------------------------------------------------------------- /UI/qt-wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/qt-wrappers.hpp -------------------------------------------------------------------------------- /UI/record-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/record-button.cpp -------------------------------------------------------------------------------- /UI/record-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/record-button.hpp -------------------------------------------------------------------------------- /UI/remote-text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/remote-text.cpp -------------------------------------------------------------------------------- /UI/remote-text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/remote-text.hpp -------------------------------------------------------------------------------- /UI/scene-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/scene-tree.cpp -------------------------------------------------------------------------------- /UI/scene-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/scene-tree.hpp -------------------------------------------------------------------------------- /UI/screenshot-obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/screenshot-obj.hpp -------------------------------------------------------------------------------- /UI/slider-ignorewheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/slider-ignorewheel.cpp -------------------------------------------------------------------------------- /UI/slider-ignorewheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/slider-ignorewheel.hpp -------------------------------------------------------------------------------- /UI/source-label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/source-label.cpp -------------------------------------------------------------------------------- /UI/source-label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/source-label.hpp -------------------------------------------------------------------------------- /UI/source-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/source-tree.cpp -------------------------------------------------------------------------------- /UI/source-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/source-tree.hpp -------------------------------------------------------------------------------- /UI/sparkle-updater.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/sparkle-updater.mm -------------------------------------------------------------------------------- /UI/spinbox-ignorewheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/spinbox-ignorewheel.cpp -------------------------------------------------------------------------------- /UI/spinbox-ignorewheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/spinbox-ignorewheel.hpp -------------------------------------------------------------------------------- /UI/ui-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/ui-config.h.in -------------------------------------------------------------------------------- /UI/ui-validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/ui-validation.cpp -------------------------------------------------------------------------------- /UI/ui-validation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/ui-validation.hpp -------------------------------------------------------------------------------- /UI/undo-stack-obs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/undo-stack-obs.cpp -------------------------------------------------------------------------------- /UI/undo-stack-obs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/undo-stack-obs.hpp -------------------------------------------------------------------------------- /UI/url-push-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/url-push-button.cpp -------------------------------------------------------------------------------- /UI/url-push-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/url-push-button.hpp -------------------------------------------------------------------------------- /UI/vertical-scroll-area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/vertical-scroll-area.cpp -------------------------------------------------------------------------------- /UI/vertical-scroll-area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/vertical-scroll-area.hpp -------------------------------------------------------------------------------- /UI/visibility-checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/visibility-checkbox.cpp -------------------------------------------------------------------------------- /UI/visibility-checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/visibility-checkbox.hpp -------------------------------------------------------------------------------- /UI/visibility-item-widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/visibility-item-widget.cpp -------------------------------------------------------------------------------- /UI/visibility-item-widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/visibility-item-widget.hpp -------------------------------------------------------------------------------- /UI/volume-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/volume-control.cpp -------------------------------------------------------------------------------- /UI/volume-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/volume-control.hpp -------------------------------------------------------------------------------- /UI/win-update/win-update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/win-update/win-update.cpp -------------------------------------------------------------------------------- /UI/win-update/win-update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/win-update/win-update.hpp -------------------------------------------------------------------------------- /UI/window-basic-about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-about.cpp -------------------------------------------------------------------------------- /UI/window-basic-about.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-about.hpp -------------------------------------------------------------------------------- /UI/window-basic-adv-audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-adv-audio.cpp -------------------------------------------------------------------------------- /UI/window-basic-adv-audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-adv-audio.hpp -------------------------------------------------------------------------------- /UI/window-basic-filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-filters.cpp -------------------------------------------------------------------------------- /UI/window-basic-filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-filters.hpp -------------------------------------------------------------------------------- /UI/window-basic-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-main.cpp -------------------------------------------------------------------------------- /UI/window-basic-main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-main.hpp -------------------------------------------------------------------------------- /UI/window-basic-preview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-preview.cpp -------------------------------------------------------------------------------- /UI/window-basic-preview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-preview.hpp -------------------------------------------------------------------------------- /UI/window-basic-settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-settings.cpp -------------------------------------------------------------------------------- /UI/window-basic-settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-settings.hpp -------------------------------------------------------------------------------- /UI/window-basic-stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-stats.cpp -------------------------------------------------------------------------------- /UI/window-basic-stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-stats.hpp -------------------------------------------------------------------------------- /UI/window-basic-transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-transform.cpp -------------------------------------------------------------------------------- /UI/window-basic-transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-basic-transform.hpp -------------------------------------------------------------------------------- /UI/window-dock-browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-dock-browser.cpp -------------------------------------------------------------------------------- /UI/window-dock-browser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-dock-browser.hpp -------------------------------------------------------------------------------- /UI/window-dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-dock.cpp -------------------------------------------------------------------------------- /UI/window-dock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-dock.hpp -------------------------------------------------------------------------------- /UI/window-extra-browsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-extra-browsers.cpp -------------------------------------------------------------------------------- /UI/window-extra-browsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-extra-browsers.hpp -------------------------------------------------------------------------------- /UI/window-importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-importer.cpp -------------------------------------------------------------------------------- /UI/window-importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-importer.hpp -------------------------------------------------------------------------------- /UI/window-log-reply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-log-reply.cpp -------------------------------------------------------------------------------- /UI/window-log-reply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-log-reply.hpp -------------------------------------------------------------------------------- /UI/window-main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-main.hpp -------------------------------------------------------------------------------- /UI/window-missing-files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-missing-files.cpp -------------------------------------------------------------------------------- /UI/window-missing-files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-missing-files.hpp -------------------------------------------------------------------------------- /UI/window-namedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-namedialog.cpp -------------------------------------------------------------------------------- /UI/window-namedialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-namedialog.hpp -------------------------------------------------------------------------------- /UI/window-permissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-permissions.cpp -------------------------------------------------------------------------------- /UI/window-permissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-permissions.hpp -------------------------------------------------------------------------------- /UI/window-projector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-projector.cpp -------------------------------------------------------------------------------- /UI/window-projector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-projector.hpp -------------------------------------------------------------------------------- /UI/window-remux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-remux.cpp -------------------------------------------------------------------------------- /UI/window-remux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-remux.hpp -------------------------------------------------------------------------------- /UI/window-youtube-actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-youtube-actions.cpp -------------------------------------------------------------------------------- /UI/window-youtube-actions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/window-youtube-actions.hpp -------------------------------------------------------------------------------- /UI/xdg-data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/xdg-data/CMakeLists.txt -------------------------------------------------------------------------------- /UI/youtube-api-wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/youtube-api-wrappers.cpp -------------------------------------------------------------------------------- /UI/youtube-api-wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/UI/youtube-api-wrappers.hpp -------------------------------------------------------------------------------- /additional_install_files/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec32/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec32d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec32r/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec64/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec64d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec64r/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs32/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs32d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs32r/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs64/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs64d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs64r/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/misc/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /cmake/Modules/FindCEF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindCEF.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindEpoxy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindEpoxy.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindGBM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindGBM.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindGio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindGio.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindGtk4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindGtk4.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindOSS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindOSS.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindRSSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindRSSDK.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSndio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindSndio.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindUdev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindUdev.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/cmake/Modules/FindXCB.cmake -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/blake2/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/blake2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/blake2/CMakeLists.txt -------------------------------------------------------------------------------- /deps/blake2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/blake2/meson.build -------------------------------------------------------------------------------- /deps/blake2/src/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/blake2/src/blake2-impl.h -------------------------------------------------------------------------------- /deps/blake2/src/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/blake2/src/blake2.h -------------------------------------------------------------------------------- /deps/blake2/src/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/blake2/src/blake2b-ref.c -------------------------------------------------------------------------------- /deps/file-updater/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/file-updater/meson.build -------------------------------------------------------------------------------- /deps/glad/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/glad/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/glad/include/glad/glad.h -------------------------------------------------------------------------------- /deps/glad/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/glad/meson.build -------------------------------------------------------------------------------- /deps/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/glad/src/glad.c -------------------------------------------------------------------------------- /deps/glad/src/glad_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/glad/src/glad_egl.c -------------------------------------------------------------------------------- /deps/glad/src/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/glad/src/glad_wgl.c -------------------------------------------------------------------------------- /deps/ipc-util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/ipc-util/CMakeLists.txt -------------------------------------------------------------------------------- /deps/ipc-util/ipc-util/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/ipc-util/ipc-util/pipe.h -------------------------------------------------------------------------------- /deps/json11/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/json11/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/json11/LICENSE.txt -------------------------------------------------------------------------------- /deps/json11/json11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/json11/json11.cpp -------------------------------------------------------------------------------- /deps/json11/json11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/json11/json11.hpp -------------------------------------------------------------------------------- /deps/libcaption/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/libcaption/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/.gitignore -------------------------------------------------------------------------------- /deps/libcaption/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/Doxyfile.in -------------------------------------------------------------------------------- /deps/libcaption/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/LICENSE.txt -------------------------------------------------------------------------------- /deps/libcaption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/README.md -------------------------------------------------------------------------------- /deps/libcaption/caption/scc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/caption/scc.h -------------------------------------------------------------------------------- /deps/libcaption/caption/srt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/caption/srt.h -------------------------------------------------------------------------------- /deps/libcaption/caption/vtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/caption/vtt.h -------------------------------------------------------------------------------- /deps/libcaption/caption/xds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/caption/xds.h -------------------------------------------------------------------------------- /deps/libcaption/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/format.sh -------------------------------------------------------------------------------- /deps/libcaption/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/meson.build -------------------------------------------------------------------------------- /deps/libcaption/src/caption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/caption.c -------------------------------------------------------------------------------- /deps/libcaption/src/cea708.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/cea708.c -------------------------------------------------------------------------------- /deps/libcaption/src/dvtcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/dvtcc.c -------------------------------------------------------------------------------- /deps/libcaption/src/eia608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/eia608.c -------------------------------------------------------------------------------- /deps/libcaption/src/mpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/mpeg.c -------------------------------------------------------------------------------- /deps/libcaption/src/scc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/scc.c -------------------------------------------------------------------------------- /deps/libcaption/src/srt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/srt.c -------------------------------------------------------------------------------- /deps/libcaption/src/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/utf8.c -------------------------------------------------------------------------------- /deps/libcaption/src/vtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/vtt.c -------------------------------------------------------------------------------- /deps/libcaption/src/xds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libcaption/src/xds.c -------------------------------------------------------------------------------- /deps/libff/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/libff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libff/libff/ff-clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-clock.c -------------------------------------------------------------------------------- /deps/libff/libff/ff-clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-clock.h -------------------------------------------------------------------------------- /deps/libff/libff/ff-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-compat.h -------------------------------------------------------------------------------- /deps/libff/libff/ff-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-decoder.c -------------------------------------------------------------------------------- /deps/libff/libff/ff-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-decoder.h -------------------------------------------------------------------------------- /deps/libff/libff/ff-demuxer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-demuxer.c -------------------------------------------------------------------------------- /deps/libff/libff/ff-demuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-demuxer.h -------------------------------------------------------------------------------- /deps/libff/libff/ff-frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-frame.h -------------------------------------------------------------------------------- /deps/libff/libff/ff-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-timer.c -------------------------------------------------------------------------------- /deps/libff/libff/ff-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-timer.h -------------------------------------------------------------------------------- /deps/libff/libff/ff-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-util.c -------------------------------------------------------------------------------- /deps/libff/libff/ff-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/libff/libff/ff-util.h -------------------------------------------------------------------------------- /deps/lzma/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/lzma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/lzma/CMakeLists.txt -------------------------------------------------------------------------------- /deps/lzma/common/mythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/lzma/common/mythread.h -------------------------------------------------------------------------------- /deps/lzma/common/sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/lzma/common/sysdefs.h -------------------------------------------------------------------------------- /deps/lzma/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/lzma/config.h -------------------------------------------------------------------------------- /deps/lzma/liblzma/api/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/lzma/liblzma/api/lzma.h -------------------------------------------------------------------------------- /deps/lzma/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/lzma/version.h -------------------------------------------------------------------------------- /deps/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/meson.build -------------------------------------------------------------------------------- /deps/opts-parser/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/opts-parser/meson.build -------------------------------------------------------------------------------- /deps/w32-pthreads/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/w32-pthreads/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/ANNOUNCE -------------------------------------------------------------------------------- /deps/w32-pthreads/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/BUGS -------------------------------------------------------------------------------- /deps/w32-pthreads/Bmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/Bmakefile -------------------------------------------------------------------------------- /deps/w32-pthreads/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/COPYING -------------------------------------------------------------------------------- /deps/w32-pthreads/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/COPYING.LIB -------------------------------------------------------------------------------- /deps/w32-pthreads/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/ChangeLog -------------------------------------------------------------------------------- /deps/w32-pthreads/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/FAQ -------------------------------------------------------------------------------- /deps/w32-pthreads/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/GNUmakefile -------------------------------------------------------------------------------- /deps/w32-pthreads/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/MAINTAINERS -------------------------------------------------------------------------------- /deps/w32-pthreads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/Makefile -------------------------------------------------------------------------------- /deps/w32-pthreads/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/NEWS -------------------------------------------------------------------------------- /deps/w32-pthreads/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/Nmakefile -------------------------------------------------------------------------------- /deps/w32-pthreads/PROGRESS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/PROGRESS -------------------------------------------------------------------------------- /deps/w32-pthreads/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/README -------------------------------------------------------------------------------- /deps/w32-pthreads/README.CV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/README.CV -------------------------------------------------------------------------------- /deps/w32-pthreads/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/TODO -------------------------------------------------------------------------------- /deps/w32-pthreads/WinCE-PORT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/WinCE-PORT -------------------------------------------------------------------------------- /deps/w32-pthreads/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/attr.c -------------------------------------------------------------------------------- /deps/w32-pthreads/barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/barrier.c -------------------------------------------------------------------------------- /deps/w32-pthreads/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/cancel.c -------------------------------------------------------------------------------- /deps/w32-pthreads/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/cleanup.c -------------------------------------------------------------------------------- /deps/w32-pthreads/condvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/condvar.c -------------------------------------------------------------------------------- /deps/w32-pthreads/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/config.h -------------------------------------------------------------------------------- /deps/w32-pthreads/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/context.h -------------------------------------------------------------------------------- /deps/w32-pthreads/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/create.c -------------------------------------------------------------------------------- /deps/w32-pthreads/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/dll.c -------------------------------------------------------------------------------- /deps/w32-pthreads/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/errno.c -------------------------------------------------------------------------------- /deps/w32-pthreads/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/exit.c -------------------------------------------------------------------------------- /deps/w32-pthreads/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/fork.c -------------------------------------------------------------------------------- /deps/w32-pthreads/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/global.c -------------------------------------------------------------------------------- /deps/w32-pthreads/implement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/implement.h -------------------------------------------------------------------------------- /deps/w32-pthreads/libpthreadGC2.stamp: -------------------------------------------------------------------------------- 1 | touched 2 | -------------------------------------------------------------------------------- /deps/w32-pthreads/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/misc.c -------------------------------------------------------------------------------- /deps/w32-pthreads/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/mutex.c -------------------------------------------------------------------------------- /deps/w32-pthreads/private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/private.c -------------------------------------------------------------------------------- /deps/w32-pthreads/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/pthread.c -------------------------------------------------------------------------------- /deps/w32-pthreads/pthread.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/pthread.dsp -------------------------------------------------------------------------------- /deps/w32-pthreads/pthread.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/pthread.dsw -------------------------------------------------------------------------------- /deps/w32-pthreads/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/pthread.h -------------------------------------------------------------------------------- /deps/w32-pthreads/pthread.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/pthread.sln -------------------------------------------------------------------------------- /deps/w32-pthreads/ptw32_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/ptw32_new.c -------------------------------------------------------------------------------- /deps/w32-pthreads/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/rwlock.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/sched.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/sched.h -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/sem_close.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/sem_init.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/sem_open.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/sem_post.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/sem_wait.c -------------------------------------------------------------------------------- /deps/w32-pthreads/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/semaphore.c -------------------------------------------------------------------------------- /deps/w32-pthreads/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/semaphore.h -------------------------------------------------------------------------------- /deps/w32-pthreads/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/signal.c -------------------------------------------------------------------------------- /deps/w32-pthreads/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/spin.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/sync.c -------------------------------------------------------------------------------- /deps/w32-pthreads/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/tsd.c -------------------------------------------------------------------------------- /deps/w32-pthreads/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/deps/w32-pthreads/version.rc -------------------------------------------------------------------------------- /deps/w32-pthreads/w32-pthreadsConfigVersion.cmake.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/Makefile -------------------------------------------------------------------------------- /docs/sphinx/_build/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/sphinx/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/sphinx/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/conf.py -------------------------------------------------------------------------------- /docs/sphinx/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/favicon.ico -------------------------------------------------------------------------------- /docs/sphinx/frontends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/frontends.rst -------------------------------------------------------------------------------- /docs/sphinx/graphics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/graphics.rst -------------------------------------------------------------------------------- /docs/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/index.rst -------------------------------------------------------------------------------- /docs/sphinx/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/logo.svg -------------------------------------------------------------------------------- /docs/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/make.bat -------------------------------------------------------------------------------- /docs/sphinx/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/plugins.rst -------------------------------------------------------------------------------- /docs/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/requirements.txt -------------------------------------------------------------------------------- /docs/sphinx/scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/docs/sphinx/scripting.rst -------------------------------------------------------------------------------- /libobs-d3d11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-d3d11/CMakeLists.txt -------------------------------------------------------------------------------- /libobs-d3d11/d3d11-shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-d3d11/d3d11-shader.cpp -------------------------------------------------------------------------------- /libobs-opengl/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libobs-opengl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/CMakeLists.txt -------------------------------------------------------------------------------- /libobs-opengl/gl-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-cocoa.m -------------------------------------------------------------------------------- /libobs-opengl/gl-drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-drm.c -------------------------------------------------------------------------------- /libobs-opengl/gl-drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-drm.h -------------------------------------------------------------------------------- /libobs-opengl/gl-egl-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-egl-common.c -------------------------------------------------------------------------------- /libobs-opengl/gl-egl-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-egl-common.h -------------------------------------------------------------------------------- /libobs-opengl/gl-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-helpers.c -------------------------------------------------------------------------------- /libobs-opengl/gl-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-helpers.h -------------------------------------------------------------------------------- /libobs-opengl/gl-nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-nix.c -------------------------------------------------------------------------------- /libobs-opengl/gl-nix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-nix.h -------------------------------------------------------------------------------- /libobs-opengl/gl-shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-shader.c -------------------------------------------------------------------------------- /libobs-opengl/gl-stagesurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-stagesurf.c -------------------------------------------------------------------------------- /libobs-opengl/gl-subsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-subsystem.c -------------------------------------------------------------------------------- /libobs-opengl/gl-subsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-subsystem.h -------------------------------------------------------------------------------- /libobs-opengl/gl-texture2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-texture2d.c -------------------------------------------------------------------------------- /libobs-opengl/gl-texture3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-texture3d.c -------------------------------------------------------------------------------- /libobs-opengl/gl-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-windows.c -------------------------------------------------------------------------------- /libobs-opengl/gl-x11-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-x11-egl.c -------------------------------------------------------------------------------- /libobs-opengl/gl-x11-egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-x11-egl.h -------------------------------------------------------------------------------- /libobs-opengl/gl-zstencil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/gl-zstencil.c -------------------------------------------------------------------------------- /libobs-opengl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-opengl/meson.build -------------------------------------------------------------------------------- /libobs-winrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-winrt/CMakeLists.txt -------------------------------------------------------------------------------- /libobs-winrt/winrt-capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-winrt/winrt-capture.h -------------------------------------------------------------------------------- /libobs-winrt/winrt-dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs-winrt/winrt-dispatch.h -------------------------------------------------------------------------------- /libobs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/CMakeLists.txt -------------------------------------------------------------------------------- /libobs/callback/calldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/calldata.c -------------------------------------------------------------------------------- /libobs/callback/calldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/calldata.h -------------------------------------------------------------------------------- /libobs/callback/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/decl.c -------------------------------------------------------------------------------- /libobs/callback/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/decl.h -------------------------------------------------------------------------------- /libobs/callback/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/meson.build -------------------------------------------------------------------------------- /libobs/callback/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/proc.c -------------------------------------------------------------------------------- /libobs/callback/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/proc.h -------------------------------------------------------------------------------- /libobs/callback/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/signal.c -------------------------------------------------------------------------------- /libobs/callback/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/callback/signal.h -------------------------------------------------------------------------------- /libobs/data/area.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/data/area.effect -------------------------------------------------------------------------------- /libobs/data/color.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/data/color.effect -------------------------------------------------------------------------------- /libobs/data/default.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/data/default.effect -------------------------------------------------------------------------------- /libobs/data/opaque.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/data/opaque.effect -------------------------------------------------------------------------------- /libobs/data/repeat.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/data/repeat.effect -------------------------------------------------------------------------------- /libobs/data/solid.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/data/solid.effect -------------------------------------------------------------------------------- /libobs/graphics/axisang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/axisang.c -------------------------------------------------------------------------------- /libobs/graphics/axisang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/axisang.h -------------------------------------------------------------------------------- /libobs/graphics/basemath.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | /* TODO: C++ math wrappers */ 4 | -------------------------------------------------------------------------------- /libobs/graphics/bounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/bounds.c -------------------------------------------------------------------------------- /libobs/graphics/bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/bounds.h -------------------------------------------------------------------------------- /libobs/graphics/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/effect.c -------------------------------------------------------------------------------- /libobs/graphics/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/effect.h -------------------------------------------------------------------------------- /libobs/graphics/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/graphics.c -------------------------------------------------------------------------------- /libobs/graphics/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/graphics.h -------------------------------------------------------------------------------- /libobs/graphics/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/half.h -------------------------------------------------------------------------------- /libobs/graphics/image-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/image-file.c -------------------------------------------------------------------------------- /libobs/graphics/image-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/image-file.h -------------------------------------------------------------------------------- /libobs/graphics/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/input.h -------------------------------------------------------------------------------- /libobs/graphics/libnsgif/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /libobs/graphics/math-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/math-defs.h -------------------------------------------------------------------------------- /libobs/graphics/math-extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/math-extra.c -------------------------------------------------------------------------------- /libobs/graphics/math-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/math-extra.h -------------------------------------------------------------------------------- /libobs/graphics/matrix3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/matrix3.c -------------------------------------------------------------------------------- /libobs/graphics/matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/matrix3.h -------------------------------------------------------------------------------- /libobs/graphics/matrix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/matrix4.c -------------------------------------------------------------------------------- /libobs/graphics/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/matrix4.h -------------------------------------------------------------------------------- /libobs/graphics/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/meson.build -------------------------------------------------------------------------------- /libobs/graphics/plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/plane.c -------------------------------------------------------------------------------- /libobs/graphics/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/plane.h -------------------------------------------------------------------------------- /libobs/graphics/quat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/quat.c -------------------------------------------------------------------------------- /libobs/graphics/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/quat.h -------------------------------------------------------------------------------- /libobs/graphics/srgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/srgb.h -------------------------------------------------------------------------------- /libobs/graphics/vec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/vec2.c -------------------------------------------------------------------------------- /libobs/graphics/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/vec2.h -------------------------------------------------------------------------------- /libobs/graphics/vec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/vec3.c -------------------------------------------------------------------------------- /libobs/graphics/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/vec3.h -------------------------------------------------------------------------------- /libobs/graphics/vec4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/vec4.c -------------------------------------------------------------------------------- /libobs/graphics/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/graphics/vec4.h -------------------------------------------------------------------------------- /libobs/media-io/audio-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/audio-io.c -------------------------------------------------------------------------------- /libobs/media-io/audio-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/audio-io.h -------------------------------------------------------------------------------- /libobs/media-io/audio-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/audio-math.h -------------------------------------------------------------------------------- /libobs/media-io/frame-rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/frame-rate.h -------------------------------------------------------------------------------- /libobs/media-io/media-remux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/media-remux.c -------------------------------------------------------------------------------- /libobs/media-io/media-remux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/media-remux.h -------------------------------------------------------------------------------- /libobs/media-io/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/meson.build -------------------------------------------------------------------------------- /libobs/media-io/video-frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/video-frame.c -------------------------------------------------------------------------------- /libobs/media-io/video-frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/video-frame.h -------------------------------------------------------------------------------- /libobs/media-io/video-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/video-io.c -------------------------------------------------------------------------------- /libobs/media-io/video-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/media-io/video-io.h -------------------------------------------------------------------------------- /libobs/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/meson.build -------------------------------------------------------------------------------- /libobs/obs-audio-controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-audio-controls.c -------------------------------------------------------------------------------- /libobs/obs-audio-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-audio-controls.h -------------------------------------------------------------------------------- /libobs/obs-audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-audio.c -------------------------------------------------------------------------------- /libobs/obs-avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-avc.c -------------------------------------------------------------------------------- /libobs/obs-avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-avc.h -------------------------------------------------------------------------------- /libobs/obs-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-cocoa.m -------------------------------------------------------------------------------- /libobs/obs-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-config.h -------------------------------------------------------------------------------- /libobs/obs-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-data.c -------------------------------------------------------------------------------- /libobs/obs-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-data.h -------------------------------------------------------------------------------- /libobs/obs-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-defs.h -------------------------------------------------------------------------------- /libobs/obs-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-display.c -------------------------------------------------------------------------------- /libobs/obs-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-encoder.c -------------------------------------------------------------------------------- /libobs/obs-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-encoder.h -------------------------------------------------------------------------------- /libobs/obs-ffmpeg-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-ffmpeg-compat.h -------------------------------------------------------------------------------- /libobs/obs-hevc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-hevc.c -------------------------------------------------------------------------------- /libobs/obs-hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-hevc.h -------------------------------------------------------------------------------- /libobs/obs-hotkey-name-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-hotkey-name-map.c -------------------------------------------------------------------------------- /libobs/obs-hotkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-hotkey.c -------------------------------------------------------------------------------- /libobs/obs-hotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-hotkey.h -------------------------------------------------------------------------------- /libobs/obs-hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-hotkeys.h -------------------------------------------------------------------------------- /libobs/obs-interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-interaction.h -------------------------------------------------------------------------------- /libobs/obs-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-internal.h -------------------------------------------------------------------------------- /libobs/obs-missing-files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-missing-files.c -------------------------------------------------------------------------------- /libobs/obs-missing-files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-missing-files.h -------------------------------------------------------------------------------- /libobs/obs-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-module.c -------------------------------------------------------------------------------- /libobs/obs-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-module.h -------------------------------------------------------------------------------- /libobs/obs-nal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nal.c -------------------------------------------------------------------------------- /libobs/obs-nal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nal.h -------------------------------------------------------------------------------- /libobs/obs-nix-drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix-drm.c -------------------------------------------------------------------------------- /libobs/obs-nix-drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix-drm.h -------------------------------------------------------------------------------- /libobs/obs-nix-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix-platform.c -------------------------------------------------------------------------------- /libobs/obs-nix-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix-platform.h -------------------------------------------------------------------------------- /libobs/obs-nix-wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix-wayland.c -------------------------------------------------------------------------------- /libobs/obs-nix-wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix-wayland.h -------------------------------------------------------------------------------- /libobs/obs-nix-x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix-x11.c -------------------------------------------------------------------------------- /libobs/obs-nix-x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix-x11.h -------------------------------------------------------------------------------- /libobs/obs-nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix.c -------------------------------------------------------------------------------- /libobs/obs-nix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-nix.h -------------------------------------------------------------------------------- /libobs/obs-output-delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-output-delay.c -------------------------------------------------------------------------------- /libobs/obs-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-output.c -------------------------------------------------------------------------------- /libobs/obs-output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-output.h -------------------------------------------------------------------------------- /libobs/obs-properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-properties.c -------------------------------------------------------------------------------- /libobs/obs-properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-properties.h -------------------------------------------------------------------------------- /libobs/obs-scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-scene.c -------------------------------------------------------------------------------- /libobs/obs-scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-scene.h -------------------------------------------------------------------------------- /libobs/obs-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-service.c -------------------------------------------------------------------------------- /libobs/obs-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-service.h -------------------------------------------------------------------------------- /libobs/obs-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-source.c -------------------------------------------------------------------------------- /libobs/obs-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-source.h -------------------------------------------------------------------------------- /libobs/obs-ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-ui.h -------------------------------------------------------------------------------- /libobs/obs-video-gpu-encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-video-gpu-encode.c -------------------------------------------------------------------------------- /libobs/obs-video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-video.c -------------------------------------------------------------------------------- /libobs/obs-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-view.c -------------------------------------------------------------------------------- /libobs/obs-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs-windows.c -------------------------------------------------------------------------------- /libobs/obs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs.c -------------------------------------------------------------------------------- /libobs/obs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs.h -------------------------------------------------------------------------------- /libobs/obs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obs.hpp -------------------------------------------------------------------------------- /libobs/obsconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/obsconfig.h.in -------------------------------------------------------------------------------- /libobs/pkgconfig/libobs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/pkgconfig/libobs.pc.in -------------------------------------------------------------------------------- /libobs/util/AlignedNew.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/AlignedNew.hpp -------------------------------------------------------------------------------- /libobs/util/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/base.c -------------------------------------------------------------------------------- /libobs/util/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/base.h -------------------------------------------------------------------------------- /libobs/util/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/bitstream.c -------------------------------------------------------------------------------- /libobs/util/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/bitstream.h -------------------------------------------------------------------------------- /libobs/util/bmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/bmem.c -------------------------------------------------------------------------------- /libobs/util/bmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/bmem.h -------------------------------------------------------------------------------- /libobs/util/c99defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/c99defs.h -------------------------------------------------------------------------------- /libobs/util/cf-lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/cf-lexer.c -------------------------------------------------------------------------------- /libobs/util/cf-lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/cf-lexer.h -------------------------------------------------------------------------------- /libobs/util/cf-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/cf-parser.c -------------------------------------------------------------------------------- /libobs/util/cf-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/cf-parser.h -------------------------------------------------------------------------------- /libobs/util/circlebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/circlebuf.h -------------------------------------------------------------------------------- /libobs/util/config-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/config-file.c -------------------------------------------------------------------------------- /libobs/util/config-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/config-file.h -------------------------------------------------------------------------------- /libobs/util/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/crc32.c -------------------------------------------------------------------------------- /libobs/util/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/crc32.h -------------------------------------------------------------------------------- /libobs/util/darray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/darray.h -------------------------------------------------------------------------------- /libobs/util/dstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/dstr.c -------------------------------------------------------------------------------- /libobs/util/dstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/dstr.h -------------------------------------------------------------------------------- /libobs/util/dstr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/dstr.hpp -------------------------------------------------------------------------------- /libobs/util/file-serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/file-serializer.c -------------------------------------------------------------------------------- /libobs/util/file-serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/file-serializer.h -------------------------------------------------------------------------------- /libobs/util/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/lexer.c -------------------------------------------------------------------------------- /libobs/util/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/lexer.h -------------------------------------------------------------------------------- /libobs/util/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/meson.build -------------------------------------------------------------------------------- /libobs/util/pipe-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/pipe-posix.c -------------------------------------------------------------------------------- /libobs/util/pipe-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/pipe-windows.c -------------------------------------------------------------------------------- /libobs/util/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/pipe.h -------------------------------------------------------------------------------- /libobs/util/platform-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/platform-cocoa.m -------------------------------------------------------------------------------- /libobs/util/platform-nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/platform-nix.c -------------------------------------------------------------------------------- /libobs/util/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/platform.c -------------------------------------------------------------------------------- /libobs/util/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/platform.h -------------------------------------------------------------------------------- /libobs/util/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/profiler.c -------------------------------------------------------------------------------- /libobs/util/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/profiler.h -------------------------------------------------------------------------------- /libobs/util/profiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/profiler.hpp -------------------------------------------------------------------------------- /libobs/util/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/serializer.h -------------------------------------------------------------------------------- /libobs/util/simde/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /libobs/util/simde/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/simde/check.h -------------------------------------------------------------------------------- /libobs/util/simde/hedley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/simde/hedley.h -------------------------------------------------------------------------------- /libobs/util/simde/x86/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/simde/x86/mmx.h -------------------------------------------------------------------------------- /libobs/util/simde/x86/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/simde/x86/sse.h -------------------------------------------------------------------------------- /libobs/util/simde/x86/sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/simde/x86/sse2.h -------------------------------------------------------------------------------- /libobs/util/sse-intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/sse-intrin.h -------------------------------------------------------------------------------- /libobs/util/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/task.c -------------------------------------------------------------------------------- /libobs/util/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/task.h -------------------------------------------------------------------------------- /libobs/util/text-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/text-lookup.c -------------------------------------------------------------------------------- /libobs/util/text-lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/text-lookup.h -------------------------------------------------------------------------------- /libobs/util/threading-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/threading-posix.c -------------------------------------------------------------------------------- /libobs/util/threading-posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/threading-posix.h -------------------------------------------------------------------------------- /libobs/util/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/threading.h -------------------------------------------------------------------------------- /libobs/util/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/utf8.c -------------------------------------------------------------------------------- /libobs/util/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/utf8.h -------------------------------------------------------------------------------- /libobs/util/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/util.hpp -------------------------------------------------------------------------------- /libobs/util/util_uint128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/util_uint128.h -------------------------------------------------------------------------------- /libobs/util/util_uint64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/libobs/util/util_uint64.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/meson_options.txt -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/aja/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/aja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/README.md -------------------------------------------------------------------------------- /plugins/aja/aja-common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-common.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-common.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-enums.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-output.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-output.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-presets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-presets.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-presets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-presets.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-props.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-props.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-routing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-routing.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-routing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-routing.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-source.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-source.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-ui-props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-ui-props.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-vpid-data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-vpid-data.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-vpid-data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-vpid-data.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-widget-io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-widget-io.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-widget-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/aja-widget-io.hpp -------------------------------------------------------------------------------- /plugins/aja/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/main.cpp -------------------------------------------------------------------------------- /plugins/aja/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/aja/meson.build -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Битрейт" 2 | AllowHEAAC="HE-AAC рөхсәт итеү" 3 | -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | AllowHEAAC="Tillat HE-AAC" 2 | -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/sq-AL.ini: -------------------------------------------------------------------------------- 1 | AllowHEAAC="Lejo HE-ACC" 2 | -------------------------------------------------------------------------------- /plugins/decklink/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/decklink/const.h -------------------------------------------------------------------------------- /plugins/decklink/linux/decklink-sdk/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/decklink/mac/decklink-sdk/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/decklink/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/decklink/meson.build -------------------------------------------------------------------------------- /plugins/decklink/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/decklink/platform.hpp -------------------------------------------------------------------------------- /plugins/decklink/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/decklink/util.cpp -------------------------------------------------------------------------------- /plugins/decklink/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/decklink/util.hpp -------------------------------------------------------------------------------- /plugins/image-source/data/locale/pa-IN.ini: -------------------------------------------------------------------------------- 1 | ImageInput="ਤਸਵੀਰ" 2 | -------------------------------------------------------------------------------- /plugins/image-source/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | ImageInput="فوٹو" 2 | -------------------------------------------------------------------------------- /plugins/linux-pipewire/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Device="Яйланма" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Device="Eining" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Device="Periferic" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/si-LK.ini: -------------------------------------------------------------------------------- 1 | Device="උපාංගය" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/ta-IN.ini: -------------------------------------------------------------------------------- 1 | Device="சாதனம்" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/th-TH.ini: -------------------------------------------------------------------------------- 1 | Device="อุปกรณ์" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | PulseInput="مدخل صوت پکڑنا (PulseAudio)" 2 | -------------------------------------------------------------------------------- /plugins/mac-avcapture/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Device="Eining" 2 | -------------------------------------------------------------------------------- /plugins/mac-capture/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | CoreAudio.InputCapture="مدخل صوت پکڑنا" 2 | -------------------------------------------------------------------------------- /plugins/mac-videotoolbox/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Profile="Perfil" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/data/locale/en-US.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/an-ES.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Camera web virtual de macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS Əyani Veb Kamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/be-BY.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS віртуальная вэб-камера" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/ca-ES.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Càmera web virtual del macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/cs-CZ.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS virtuální webkamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/de-DE.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Virtuelle Kamera für macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/en-US.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS Virtual Webcam" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/es-ES.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Cámara Web Virtual macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/et-EE.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS virtuaalne veebikaamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/eu-ES.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS webcam birtuala" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/fa-IR.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="وبکم مجازی سیستم عامل مک" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/fi-FI.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS:n virtuaalinen web-kamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/fil-PH.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Kamarang Birtuwal macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/fr-FR.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Webcam virtuelle macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/gd-GB.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Camara-lìn biortail macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/gl-ES.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Cámara Web Virtual do macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/hi-IN.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS आभासी वेबकैम" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/hr-HR.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS Virtualna web kamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/hu-HU.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS virtuális webkamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/hy-AM.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS-ի վիրտուալ վեբ-տեսախցիկ" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/id-ID.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Kamera Virtual Web macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/it-IT.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Webcam Virtuale macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/ja-JP.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS仮想ウェブカメラ" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/kab-KAB.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="takamiṛat tuhlist macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/ko-KR.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS 가상 웹캠" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/ms-MY.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Kamera Sesawang Maya macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/nb-NO.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS Virtuelt nettkamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/pl-PL.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Wirtualna kamera macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/pt-BR.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Webcam Virtual do macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/pt-PT.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Webcam virtual do macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/ro-RO.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Webcam virtual macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/ru-RU.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Виртуальная веб-камера macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/sk-SK.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS Virtuálna Webkamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/sv-SE.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS virtuell webbkamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/szl-PL.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Wirtualno kamera macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/tr-TR.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS Sanal Web Kamerası" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/uk-UA.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Віртуальна вебкамера macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/vi-VN.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Webcam ảo macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/zh-CN.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS 虚拟摄像头" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/zh-TW.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS 虛擬網路攝影機" 2 | -------------------------------------------------------------------------------- /plugins/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/meson.build -------------------------------------------------------------------------------- /plugins/obs-ffmpeg/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Profile="Perfil" 2 | -------------------------------------------------------------------------------- /plugins/obs-ffmpeg/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | Input="ادخال" 2 | -------------------------------------------------------------------------------- /plugins/obs-ffmpeg/external/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-filters/rnnoise/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Битрейт" 2 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/si-LK.ini: -------------------------------------------------------------------------------- 1 | LibFDK="libfdk AAC ආකේතකය" 2 | Bitrate="බිටුඅනුපා." 3 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | FLVOutput.FilePath="Файл юлы" 2 | Default="Ғәҙәти" 3 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/mn-MN.ini: -------------------------------------------------------------------------------- 1 | Default="Үндсэн" 2 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Default="Standard" 2 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/th-TH.ini: -------------------------------------------------------------------------------- 1 | FLVOutput.FilePath="ตำแหน่งไฟล์" 2 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | RTMPStream="RTMP نشر" 2 | -------------------------------------------------------------------------------- /plugins/obs-outputs/flv-mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/obs-outputs/flv-mux.c -------------------------------------------------------------------------------- /plugins/obs-outputs/flv-mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/obs-outputs/flv-mux.h -------------------------------------------------------------------------------- /plugins/obs-outputs/librtmp/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-outputs/net-if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/obs-outputs/net-if.c -------------------------------------------------------------------------------- /plugins/obs-outputs/net-if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/obs-outputs/net-if.h -------------------------------------------------------------------------------- /plugins/obs-outputs/obs-output-ver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define MODULE_NAME "obs-output module" 4 | -------------------------------------------------------------------------------- /plugins/obs-qsv11/bits/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-qsv11/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Profile="Perfil" 2 | -------------------------------------------------------------------------------- /plugins/obs-qsv11/libmfx/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-text/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- 1 | Transform.None="Heç biri" 2 | -------------------------------------------------------------------------------- /plugins/obs-vst/vst_header/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-x264/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- 1 | None="(Heç biri)" 2 | -------------------------------------------------------------------------------- /plugins/obs-x264/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Profile="Perfil" 2 | -------------------------------------------------------------------------------- /plugins/obs-x264/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | Bitrate="بٹریٹ" 2 | -------------------------------------------------------------------------------- /plugins/oss-audio/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Channels="Kanalar" 2 | Default="Standard" 3 | -------------------------------------------------------------------------------- /plugins/oss-audio/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | OSSInput="مدخل صوت پکڑنا (OSS)" 2 | -------------------------------------------------------------------------------- /plugins/oss-audio/oss-platform.h.in: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include <@OSS_HEADER_NAME@> 4 | -------------------------------------------------------------------------------- /plugins/rtmp-services/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | StreamingServices="نشر سہولیات" 2 | -------------------------------------------------------------------------------- /plugins/rtmp-services/rtmp-format-ver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define RTMP_SERVICES_FORMAT_VERSION 3 4 | -------------------------------------------------------------------------------- /plugins/sndio/data/locale/nl-NL.ini: -------------------------------------------------------------------------------- 1 | Channels="Aantal kanalen" 2 | Device="Apparaat" 3 | -------------------------------------------------------------------------------- /plugins/sndio/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Channels="Antal kanalar" 2 | Device="Eining" 3 | -------------------------------------------------------------------------------- /plugins/sndio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/sndio/meson.build -------------------------------------------------------------------------------- /plugins/sndio/sndio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/plugins/sndio/sndio.c -------------------------------------------------------------------------------- /plugins/win-capture/d3d8-api/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/win-capture/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Monitor="Экран" 2 | Mode="Үтәмлек" 3 | -------------------------------------------------------------------------------- /plugins/win-capture/get-graphics-offsets/ddraw-offsets.cpp: -------------------------------------------------------------------------------- 1 | /* TODO */ 2 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Device="Яйланма" 2 | Default="Ғәҙәти" 3 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/lt-LT.ini: -------------------------------------------------------------------------------- 1 | Device="Įrenginys" 2 | Default="Numatytas" 3 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Device="Eining" 2 | Default="Standard" 3 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | AudioInput="مدخل صوت پکڑنا" 2 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/assets/projects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/assets/projects.svg -------------------------------------------------------------------------------- /src/audio/obs-volume-bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/audio/obs-volume-bar.c -------------------------------------------------------------------------------- /src/audio/obs-volume-bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/audio/obs-volume-bar.h -------------------------------------------------------------------------------- /src/data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/data/meson.build -------------------------------------------------------------------------------- /src/icons/top-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/icons/top-symbolic.svg -------------------------------------------------------------------------------- /src/icons/up-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/icons/up-symbolic.svg -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/main.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/mockups/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/mockups/activities.svg -------------------------------------------------------------------------------- /src/mockups/empty-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/mockups/empty-page.svg -------------------------------------------------------------------------------- /src/obs-activities-page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-activities-page.c -------------------------------------------------------------------------------- /src/obs-activities-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-activities-page.h -------------------------------------------------------------------------------- /src/obs-activities-page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-activities-page.ui -------------------------------------------------------------------------------- /src/obs-application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-application.c -------------------------------------------------------------------------------- /src/obs-application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-application.h -------------------------------------------------------------------------------- /src/obs-audio-controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-audio-controller.c -------------------------------------------------------------------------------- /src/obs-audio-controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-audio-controller.h -------------------------------------------------------------------------------- /src/obs-audio-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-audio-device.c -------------------------------------------------------------------------------- /src/obs-audio-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-audio-device.h -------------------------------------------------------------------------------- /src/obs-collection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-collection.c -------------------------------------------------------------------------------- /src/obs-collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-collection.h -------------------------------------------------------------------------------- /src/obs-collections-page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-collections-page.c -------------------------------------------------------------------------------- /src/obs-collections-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-collections-page.h -------------------------------------------------------------------------------- /src/obs-config-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-config-manager.c -------------------------------------------------------------------------------- /src/obs-config-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-config-manager.h -------------------------------------------------------------------------------- /src/obs-debug.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-debug.h.in -------------------------------------------------------------------------------- /src/obs-display-renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-display-renderer.c -------------------------------------------------------------------------------- /src/obs-display-renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-display-renderer.h -------------------------------------------------------------------------------- /src/obs-display-widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-display-widget.c -------------------------------------------------------------------------------- /src/obs-display-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-display-widget.h -------------------------------------------------------------------------------- /src/obs-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-log.c -------------------------------------------------------------------------------- /src/obs-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-log.h -------------------------------------------------------------------------------- /src/obs-mixer-page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-mixer-page.c -------------------------------------------------------------------------------- /src/obs-mixer-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-mixer-page.h -------------------------------------------------------------------------------- /src/obs-mixer-page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-mixer-page.ui -------------------------------------------------------------------------------- /src/obs-scene-editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-scene-editor.c -------------------------------------------------------------------------------- /src/obs-scene-editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-scene-editor.h -------------------------------------------------------------------------------- /src/obs-scene-editor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-scene-editor.ui -------------------------------------------------------------------------------- /src/obs-style-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-style-manager.c -------------------------------------------------------------------------------- /src/obs-style-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-style-manager.h -------------------------------------------------------------------------------- /src/obs-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-types.h -------------------------------------------------------------------------------- /src/obs-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-utils.c -------------------------------------------------------------------------------- /src/obs-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-utils.h -------------------------------------------------------------------------------- /src/obs-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-window.c -------------------------------------------------------------------------------- /src/obs-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-window.h -------------------------------------------------------------------------------- /src/obs-window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs-window.ui -------------------------------------------------------------------------------- /src/obs.gresources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/obs.gresources.xml -------------------------------------------------------------------------------- /src/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/style-dark.css -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/src/style.css -------------------------------------------------------------------------------- /subprojects/jansson.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/subprojects/jansson.wrap -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmocka/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/test/cmocka/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmocka/test_darray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/test/cmocka/test_darray.c -------------------------------------------------------------------------------- /test/osx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/test/osx/CMakeLists.txt -------------------------------------------------------------------------------- /test/osx/test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/test/osx/test.mm -------------------------------------------------------------------------------- /test/win/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/test/win/CMakeLists.txt -------------------------------------------------------------------------------- /test/win/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgesStavracas/obs-gtk/HEAD/test/win/test.cpp --------------------------------------------------------------------------------