├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── obs_plugin ├── CMakeLists.txt ├── libs │ ├── osx │ │ ├── libobs.dylib │ │ └── obs-frontend-api.dylib │ └── x64 │ │ ├── obs-frontend-api.dll │ │ ├── obs-frontend-api.exp │ │ ├── obs-frontend-api.lib │ │ ├── obs.dll │ │ ├── obs.exp │ │ └── obs.lib └── src │ ├── obs_plugin.cpp │ └── obs_plugin.hpp └── other └── obs-studio ├── AUTHORS ├── COPYING ├── README.rst ├── UI ├── CMakeLists.txt ├── absolute-slider.cpp ├── absolute-slider.hpp ├── 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 ├── basic-controls.cpp ├── basic-controls.hpp ├── clickable-label.hpp ├── cmake │ ├── feature-browserpanels.cmake │ ├── feature-importers.cmake │ ├── feature-macos-update.cmake │ ├── feature-restream.cmake │ ├── feature-sparkle.cmake │ ├── feature-twitch.cmake │ ├── feature-whatsnew.cmake │ ├── feature-youtube.cmake │ ├── legacy.cmake │ ├── linux │ │ ├── com.obsproject.Studio.desktop │ │ ├── com.obsproject.Studio.metainfo.xml.in │ │ └── icons │ │ │ ├── obs-logo-128.png │ │ │ ├── obs-logo-256.png │ │ │ ├── obs-logo-512.png │ │ │ └── obs-logo-scalable.svg │ ├── macos │ │ ├── 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 │ │ ├── entitlements-extension.plist │ │ ├── entitlements.plist │ │ ├── exportOptions-extension.plist.in │ │ ├── exportOptions.plist.in │ │ └── qt.conf │ ├── os-freebsd.cmake │ ├── os-linux.cmake │ ├── os-macos.cmake │ ├── os-windows.cmake │ ├── ui-elements.cmake │ ├── ui-qt.cmake │ ├── ui-windows.cmake │ └── windows │ │ ├── obs-studio.ico │ │ ├── obs.manifest │ │ └── obs.rc.in ├── context-bar-controls.cpp ├── context-bar-controls.hpp ├── data │ ├── OBSPublicRSAKey.pem │ ├── images │ │ └── overflow.png │ ├── license │ │ └── gplv2.txt │ ├── locale.ini │ ├── locale │ │ ├── af-ZA.ini │ │ ├── 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 │ │ ├── is-IS.ini │ │ ├── it-IT.ini │ │ ├── ja-JP.ini │ │ ├── ka-GE.ini │ │ ├── kaa.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 │ │ ├── tt-RU.ini │ │ ├── ug-CN.ini │ │ ├── uk-UA.ini │ │ ├── ur-PK.ini │ │ ├── vi-VN.ini │ │ ├── zh-CN.ini │ │ └── zh-TW.ini │ └── themes │ │ ├── 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 │ │ ├── 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 │ │ ├── network-disconnected.svg │ │ ├── network-inactive.svg │ │ ├── no_sources.svg │ │ ├── plus.svg │ │ ├── popout.svg │ │ ├── recording-inactive.svg │ │ ├── recording-pause-inactive.svg │ │ ├── refresh.svg │ │ ├── revert.svg │ │ ├── right.svg │ │ ├── save.svg │ │ ├── settings │ │ │ ├── accessibility.svg │ │ │ ├── advanced.svg │ │ │ ├── appearance.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-inactive.svg │ │ ├── trash.svg │ │ ├── unassigned.svg │ │ ├── up.svg │ │ ├── updown.svg │ │ └── visible.svg │ │ ├── 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 │ │ │ ├── appearance.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 │ │ ├── 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.obt │ │ ├── Yami.obt │ │ ├── Yami │ │ ├── checkbox_checked.svg │ │ ├── checkbox_checked_disabled.svg │ │ ├── checkbox_checked_focus.svg │ │ ├── checkbox_unchecked.svg │ │ ├── checkbox_unchecked_disabled.svg │ │ └── checkbox_unchecked_focus.svg │ │ ├── Yami_Acri.ovt │ │ ├── Yami_Classic.ovt │ │ ├── Yami_Default.ovt │ │ ├── Yami_Grey.ovt │ │ ├── Yami_Light.ovt │ │ └── Yami_Rachni.ovt ├── display-helpers.hpp ├── ffmpeg-utils.cpp ├── ffmpeg-utils.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 │ ├── OBSBasicControls.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 │ ├── StatusBarWidget.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 │ │ ├── network-bad.svg │ │ ├── network-disconnected.svg │ │ ├── network-excellent.svg │ │ ├── network-good.svg │ │ ├── network-inactive.svg │ │ ├── network-mediocre.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 │ │ │ ├── appearance.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 │ │ ├── cmake │ │ │ ├── legacy.cmake │ │ │ └── windows │ │ │ │ └── obs-module.rc.in │ │ ├── data │ │ │ └── locale │ │ │ │ ├── af-ZA.ini │ │ │ │ ├── ar-SA.ini │ │ │ │ ├── be-BY.ini │ │ │ │ ├── bg-BG.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 │ │ │ │ ├── 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 │ │ │ │ ├── kaa.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 │ │ │ │ ├── tt-RU.ini │ │ │ │ ├── ug-CN.ini │ │ │ │ ├── uk-UA.ini │ │ │ │ ├── ur-PK.ini │ │ │ │ ├── vi-VN.ini │ │ │ │ ├── zh-CN.ini │ │ │ │ └── zh-TW.ini │ │ └── forms │ │ │ └── output.ui │ ├── decklink-captions │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ ├── legacy.cmake │ │ │ └── windows │ │ │ │ └── obs-module.rc.in │ │ ├── data │ │ │ └── .keepme │ │ ├── decklink-captions.cpp │ │ ├── decklink-captions.h │ │ └── forms │ │ │ └── captions.ui │ ├── decklink-output-ui │ │ ├── CMakeLists.txt │ │ ├── DecklinkOutputUI.cpp │ │ ├── DecklinkOutputUI.h │ │ ├── cmake │ │ │ ├── legacy.cmake │ │ │ └── windows │ │ │ │ └── obs-module.rc.in │ │ ├── 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 │ │ ├── cmake │ │ ├── legacy.cmake │ │ └── windows │ │ │ └── obs-module.rc.in │ │ ├── data │ │ ├── locale │ │ │ ├── af-ZA.ini │ │ │ ├── an-ES.ini │ │ │ ├── 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-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 │ │ │ ├── is-IS.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.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 │ │ │ ├── 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 │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.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 ├── goliveapi-censoredjson.cpp ├── goliveapi-censoredjson.hpp ├── goliveapi-network.cpp ├── goliveapi-network.hpp ├── goliveapi-postdata.cpp ├── goliveapi-postdata.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 ├── item-widget-helpers.cpp ├── item-widget-helpers.hpp ├── lineedit-autoresize.cpp ├── lineedit-autoresize.hpp ├── log-viewer.cpp ├── log-viewer.hpp ├── media-controls.cpp ├── media-controls.hpp ├── menu-button.cpp ├── menu-button.hpp ├── models │ └── multitrack-video.hpp ├── multitrack-video-error.cpp ├── multitrack-video-error.hpp ├── multitrack-video-output.cpp ├── multitrack-video-output.hpp ├── multiview.cpp ├── multiview.hpp ├── mute-checkbox.hpp ├── noncheckable-button.hpp ├── obf.c ├── obf.h ├── obs-app-theming.cpp ├── obs-app-theming.hpp ├── obs-app.cpp ├── obs-app.hpp ├── obs-frontend-api │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ ├── linux │ │ │ └── obs-frontend-api.pc.in │ │ ├── obs-frontend-apiConfig.cmake.in │ │ └── windows │ │ │ └── obs-module.rc.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 ├── platform-osx.mm ├── platform-windows.cpp ├── platform-x11.cpp ├── platform.hpp ├── qt-display.cpp ├── qt-display.hpp ├── remote-text.cpp ├── remote-text.hpp ├── scene-tree.cpp ├── scene-tree.hpp ├── screenshot-obj.hpp ├── source-label.cpp ├── source-label.hpp ├── source-tree.cpp ├── source-tree.hpp ├── system-info-macos.mm ├── system-info-posix.cpp ├── system-info-windows.cpp ├── system-info.hpp ├── ui-config.h.in ├── ui-validation.cpp ├── ui-validation.hpp ├── undo-stack-obs.cpp ├── undo-stack-obs.hpp ├── update │ ├── crypto-helpers-mac.mm │ ├── crypto-helpers-mbedtls.cpp │ ├── crypto-helpers.hpp │ ├── mac-update.cpp │ ├── mac-update.hpp │ ├── models │ │ ├── branches.hpp │ │ └── whatsnew.hpp │ ├── shared-update.cpp │ ├── shared-update.hpp │ ├── sparkle-updater.mm │ ├── update-helpers.cpp │ ├── update-helpers.hpp │ ├── update-window.cpp │ ├── update-window.hpp │ ├── win-update.cpp │ └── win-update.hpp ├── url-push-button.cpp ├── url-push-button.hpp ├── visibility-item-widget.cpp ├── visibility-item-widget.hpp ├── volume-control.cpp ├── volume-control.hpp ├── win-dll-blocklist.c ├── win-update │ └── updater │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── legacy.cmake │ │ ├── hash.cpp │ │ ├── helpers.cpp │ │ ├── helpers.hpp │ │ ├── http.cpp │ │ ├── init-hook-files.c │ │ ├── manifest.hpp │ │ ├── patch.cpp │ │ ├── resource.h │ │ ├── updater.cpp │ │ ├── updater.hpp │ │ ├── updater.manifest │ │ └── updater.rc ├── 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-appearance.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-basic-vcam.hpp ├── window-dock-browser.cpp ├── window-dock-browser.hpp ├── window-dock-youtube-app.cpp ├── window-dock-youtube-app.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.desktop │ ├── com.obsproject.Studio.metainfo.xml.in │ └── 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 └── libobs ├── CMakeLists.txt ├── audio-monitoring ├── null │ └── null-audio-monitoring.c ├── osx │ ├── coreaudio-enum-devices.c │ ├── coreaudio-monitoring-available.c │ ├── coreaudio-output.c │ └── mac-helpers.h ├── pulse │ ├── 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 ├── proc.c ├── proc.h ├── signal.c └── signal.h ├── cmake ├── 32bit-build.cmake ├── legacy.cmake ├── libobsConfig.cmake.in ├── linux │ └── libobs.pc.in ├── macos │ └── entitlements.plist ├── obs-version.cmake ├── os-freebsd.cmake ├── os-linux.cmake ├── os-macos.cmake ├── os-windows.cmake └── windows │ └── obs-module.rc.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 │ ├── LICENSE.libnsgif │ ├── libnsgif.c │ └── libnsgif.h ├── math-defs.h ├── math-extra.c ├── math-extra.h ├── matrix3.c ├── matrix3.h ├── matrix4.c ├── matrix4.h ├── 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 ├── 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 ├── obs-audio-controls.c ├── obs-audio-controls.h ├── obs-audio.c ├── obs-av1.c ├── obs-av1.h ├── 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-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-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 ├── obsversion.c.in ├── obsversion.h ├── pkgconfig └── libobs.pc.in └── util ├── apple └── cfstring-utils.h ├── array-serializer.c ├── array-serializer.h ├── base.c ├── base.h ├── bitstream.c ├── bitstream.h ├── bmem.c ├── bmem.h ├── buffered-file-serializer.c ├── buffered-file-serializer.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 ├── deque.h ├── dstr.c ├── dstr.h ├── dstr.hpp ├── file-serializer.c ├── file-serializer.h ├── lexer.c ├── lexer.h ├── pipe-posix.c ├── pipe-windows.c ├── pipe.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 ├── LICENSE.simde ├── 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 ├── uthash.h ├── util.hpp ├── util_uint128.h ├── util_uint64.h └── windows ├── CoTaskMemPtr.hpp ├── ComPtr.hpp ├── HRError.hpp ├── WinHandle.hpp ├── device-enum.c ├── device-enum.h ├── obfuscate.c ├── obfuscate.h ├── win-registry.h ├── win-version.h ├── window-helpers.c └── window-helpers.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/README.md -------------------------------------------------------------------------------- /obs_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /obs_plugin/libs/osx/libobs.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/libs/osx/libobs.dylib -------------------------------------------------------------------------------- /obs_plugin/libs/osx/obs-frontend-api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/libs/osx/obs-frontend-api.dylib -------------------------------------------------------------------------------- /obs_plugin/libs/x64/obs-frontend-api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/libs/x64/obs-frontend-api.dll -------------------------------------------------------------------------------- /obs_plugin/libs/x64/obs-frontend-api.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/libs/x64/obs-frontend-api.exp -------------------------------------------------------------------------------- /obs_plugin/libs/x64/obs-frontend-api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/libs/x64/obs-frontend-api.lib -------------------------------------------------------------------------------- /obs_plugin/libs/x64/obs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/libs/x64/obs.dll -------------------------------------------------------------------------------- /obs_plugin/libs/x64/obs.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/libs/x64/obs.exp -------------------------------------------------------------------------------- /obs_plugin/libs/x64/obs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/libs/x64/obs.lib -------------------------------------------------------------------------------- /obs_plugin/src/obs_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/src/obs_plugin.cpp -------------------------------------------------------------------------------- /obs_plugin/src/obs_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/obs_plugin/src/obs_plugin.hpp -------------------------------------------------------------------------------- /other/obs-studio/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/AUTHORS -------------------------------------------------------------------------------- /other/obs-studio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/COPYING -------------------------------------------------------------------------------- /other/obs-studio/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/README.rst -------------------------------------------------------------------------------- /other/obs-studio/UI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/CMakeLists.txt -------------------------------------------------------------------------------- /other/obs-studio/UI/absolute-slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/absolute-slider.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/absolute-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/absolute-slider.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/adv-audio-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/adv-audio-control.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/adv-audio-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/adv-audio-control.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/api-interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/api-interface.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/audio-encoders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/audio-encoders.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/audio-encoders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/audio-encoders.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-base.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-base.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-listener.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-listener.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-oauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-oauth.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-oauth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-oauth.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-restream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-restream.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-restream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-restream.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-twitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-twitch.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-twitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-twitch.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-youtube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-youtube.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/auth-youtube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/auth-youtube.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/balance-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/balance-slider.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/basic-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/basic-controls.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/basic-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/basic-controls.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/clickable-label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/clickable-label.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/feature-browserpanels.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/feature-browserpanels.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/feature-importers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/feature-importers.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/feature-macos-update.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/feature-macos-update.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/feature-restream.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/feature-restream.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/feature-sparkle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/feature-sparkle.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/feature-twitch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/feature-twitch.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/feature-whatsnew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/feature-whatsnew.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/feature-youtube.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/feature-youtube.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/legacy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/legacy.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/linux/icons/obs-logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/linux/icons/obs-logo-128.png -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/linux/icons/obs-logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/linux/icons/obs-logo-256.png -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/linux/icons/obs-logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/linux/icons/obs-logo-512.png -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/macos/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/macos/Info.plist.in -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/macos/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/macos/entitlements.plist -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/macos/exportOptions.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/macos/exportOptions.plist.in -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/macos/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/macos/qt.conf -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/os-freebsd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/os-freebsd.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/os-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/os-linux.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/os-macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/os-macos.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/os-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/os-windows.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/ui-elements.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/ui-elements.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/ui-qt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/ui-qt.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/ui-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/ui-windows.cmake -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/windows/obs-studio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/windows/obs-studio.ico -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/windows/obs.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/windows/obs.manifest -------------------------------------------------------------------------------- /other/obs-studio/UI/cmake/windows/obs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/cmake/windows/obs.rc.in -------------------------------------------------------------------------------- /other/obs-studio/UI/context-bar-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/context-bar-controls.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/context-bar-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/context-bar-controls.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/data/OBSPublicRSAKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/OBSPublicRSAKey.pem -------------------------------------------------------------------------------- /other/obs-studio/UI/data/images/overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/images/overflow.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/license/gplv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/license/gplv2.txt -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/af-ZA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/af-ZA.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/an-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/an-ES.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ar-SA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ar-SA.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/az-AZ.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ba-RU.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/be-BY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/be-BY.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/bem-ZM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/bem-ZM.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/bg-BG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/bg-BG.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/bn-BD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/bn-BD.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ca-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ca-ES.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/cs-CZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/cs-CZ.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/da-DK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/da-DK.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/de-DE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/de-DE.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/el-GR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/el-GR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/en-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/en-GB.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/en-US.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/eo-UY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/eo-UY.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/es-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/es-ES.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/et-EE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/et-EE.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/eu-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/eu-ES.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/fa-IR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/fa-IR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/fi-FI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/fi-FI.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/fil-PH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/fil-PH.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/fr-FR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/fr-FR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/gd-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/gd-GB.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/gl-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/gl-ES.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/he-IL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/he-IL.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/hi-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/hi-IN.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/hr-HR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/hr-HR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/hu-HU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/hu-HU.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/hy-AM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/hy-AM.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/id-ID.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/id-ID.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/is-IS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/is-IS.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/it-IT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/it-IT.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ja-JP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ja-JP.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ka-GE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ka-GE.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/kaa.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/kaa.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/kab-KAB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/kab-KAB.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/kmr-TR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/kmr-TR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ko-KR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ko-KR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/lo-LA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/lo-LA.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/lt-LT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/lt-LT.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/lv-LV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/lv-LV.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/mn-MN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/mn-MN.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ms-MY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ms-MY.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/nb-NO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/nb-NO.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/nl-NL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/nl-NL.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/nn-NO.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/oc-FR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/pa-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/pa-IN.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/pl-PL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/pl-PL.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/pt-BR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/pt-BR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/pt-PT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/pt-PT.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ro-RO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ro-RO.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ru-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ru-RU.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/si-LK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/si-LK.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/sk-SK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/sk-SK.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/sl-SI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/sl-SI.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/sq-AL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/sq-AL.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/sr-CS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/sr-CS.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/sr-SP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/sr-SP.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/sv-SE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/sv-SE.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/szl-PL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/szl-PL.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ta-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ta-IN.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/te-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/te-IN.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/th-TH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/th-TH.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/tl-PH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/tl-PH.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/tr-TR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/tr-TR.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/tt-RU.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ug-CN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ug-CN.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/uk-UA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/uk-UA.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/ur-PK.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/vi-VN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/vi-VN.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/zh-CN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/zh-CN.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/locale/zh-TW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/locale/zh-TW.ini -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Acri/bot_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Acri/bot_hook.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Acri/bot_hook2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Acri/bot_hook2.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Acri/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Acri/radio_checked.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Acri/radio_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Acri/radio_unchecked.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Acri/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Acri/sizegrip.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Acri/top_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Acri/top_hook.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/alert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/close.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/cogs.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/collapse.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/dots-vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/dots-vert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/dots.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/down.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/entry-clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/entry-clear.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/expand.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/filter.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/interact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/interact.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/left.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/locked.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/media-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/media-pause.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/minus.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/mute.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/no_sources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/no_sources.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/plus.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/popout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/popout.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/refresh.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/revert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/right.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/save.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/settings/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/settings/audio.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/settings/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/settings/output.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/settings/stream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/settings/stream.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/settings/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/settings/video.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/brush.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/camera.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/default.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/gamepad.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/globe.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/group.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/image.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/media.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/scene.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/scene.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/text.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/sources/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/sources/window.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/trash.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/unassigned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/unassigned.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/up.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/updown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/updown.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Dark/visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Dark/visible.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/alert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/close.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/cogs.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/collapse.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/dots-vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/dots-vert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/dots.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/down.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/entry-clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/entry-clear.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/expand.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/filter.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/interact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/interact.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/left.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/locked.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/media-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/media-pause.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/minus.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/mute.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/no_sources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/no_sources.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/plus.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/popout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/popout.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/refresh.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/revert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/right.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/save.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/settings/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/settings/audio.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/settings/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/settings/video.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/sources/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/sources/brush.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/sources/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/sources/camera.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/sources/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/sources/globe.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/sources/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/sources/text.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/trash.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/up.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/updown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/updown.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Light/visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Light/visible.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Rachni/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Rachni/down_arrow.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Rachni/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Rachni/left_arrow.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Rachni/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Rachni/right_arrow.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Rachni/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Rachni/sizegrip.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Rachni/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Rachni/up_arrow.png -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/System.obt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/System.obt -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Yami.obt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Yami.obt -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Yami_Acri.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Yami_Acri.ovt -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Yami_Classic.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Yami_Classic.ovt -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Yami_Default.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Yami_Default.ovt -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Yami_Grey.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Yami_Grey.ovt -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Yami_Light.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Yami_Light.ovt -------------------------------------------------------------------------------- /other/obs-studio/UI/data/themes/Yami_Rachni.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/data/themes/Yami_Rachni.ovt -------------------------------------------------------------------------------- /other/obs-studio/UI/display-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/display-helpers.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/ffmpeg-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/ffmpeg-utils.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/ffmpeg-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/ffmpeg-utils.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/focus-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/focus-list.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/focus-list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/focus-list.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/AutoConfigFinishPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/AutoConfigFinishPage.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/AutoConfigStartPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/AutoConfigStartPage.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/AutoConfigStreamPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/AutoConfigStreamPage.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/AutoConfigTestPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/AutoConfigTestPage.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/AutoConfigVideoPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/AutoConfigVideoPage.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/ColorSelect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/ColorSelect.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSAbout.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSAbout.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSAdvAudio.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSAdvAudio.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasic.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasic.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasicControls.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasicControls.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasicFilters.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasicFilters.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasicInteraction.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasicInteraction.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasicProperties.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasicProperties.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasicSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasicSettings.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasicSourceSelect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasicSourceSelect.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasicTransform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasicTransform.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSBasicVCamConfig.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSBasicVCamConfig.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSExtraBrowsers.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSExtraBrowsers.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSImporter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSImporter.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSLogReply.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSLogReply.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSLogViewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSLogViewer.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSMissingFiles.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSMissingFiles.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSPermissions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSPermissions.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSRemux.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSRemux.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSUpdate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSUpdate.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/OBSYoutubeActions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/OBSYoutubeActions.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/StatusBarWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/StatusBarWidget.ui -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/XML-Schema-Qt5.15.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/XML-Schema-Qt5.15.xsd -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/active.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/active_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/active_mac.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/alert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/cogs.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/collapse.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/dots-vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/dots-vert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/dots.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/down.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/entry-clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/entry-clear.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/expand.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/filter.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/help.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/help_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/help_light.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/interact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/interact.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/invisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/invisible.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/locked.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/media-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/media-pause.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/media/media_next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/media/media_next.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/media/media_pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/media/media_pause.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/media/media_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/media/media_play.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/media/media_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/media/media_stop.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/minus.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/mute.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/network-bad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/network-bad.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/network-excellent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/network-excellent.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/network-good.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/network-good.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/network-inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/network-inactive.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/network-mediocre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/network-mediocre.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/no_sources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/no_sources.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/obs.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/obs_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/obs_256x256.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/obs_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/obs_macos.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/obs_macos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/obs_macos.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/obs_paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/obs_paused.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/obs_paused_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/obs_paused_macos.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/obs_paused_macos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/obs_paused_macos.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/paused.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/paused_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/paused_mac.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/plus.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/recording-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/recording-active.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/recording-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/recording-pause.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/refresh.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/revert.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/right.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/save.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/settings/advanced.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/settings/advanced.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/settings/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/settings/audio.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/settings/general.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/settings/general.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/settings/hotkeys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/settings/hotkeys.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/settings/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/settings/output.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/settings/stream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/settings/stream.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/settings/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/settings/video.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/brush.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/camera.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/default.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/gamepad.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/globe.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/group.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/image.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/media.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/scene.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/scene.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/slideshow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/slideshow.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/text.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/sources/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/sources/window.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/streaming-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/streaming-active.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/tray_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/tray_active.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/tray_active_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/tray_active_macos.png -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/tray_active_macos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/tray_active_macos.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/unlocked.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/up.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/visible.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/images/warning.svg -------------------------------------------------------------------------------- /other/obs-studio/UI/forms/obs.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/forms/obs.qrc -------------------------------------------------------------------------------- /other/obs-studio/UI/frontend-plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/frontend-plugins/CMakeLists.txt -------------------------------------------------------------------------------- /other/obs-studio/UI/frontend-plugins/aja-output-ui/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /other/obs-studio/UI/frontend-plugins/decklink-captions/data/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/obs-studio/UI/frontend-plugins/decklink-output-ui/data/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/obs-studio/UI/frontend-plugins/frontend-tools/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /other/obs-studio/UI/frontend-plugins/frontend-tools/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Captions.AudioSource="Font àudio" 2 | -------------------------------------------------------------------------------- /other/obs-studio/UI/goliveapi-censoredjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/goliveapi-censoredjson.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/goliveapi-censoredjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/goliveapi-censoredjson.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/goliveapi-network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/goliveapi-network.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/goliveapi-network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/goliveapi-network.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/goliveapi-postdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/goliveapi-postdata.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/goliveapi-postdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/goliveapi-postdata.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/horizontal-scroll-area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/horizontal-scroll-area.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/horizontal-scroll-area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/horizontal-scroll-area.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/hotkey-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/hotkey-edit.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/hotkey-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/hotkey-edit.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/importers/classic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/importers/classic.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/importers/importers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/importers/importers.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/importers/importers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/importers/importers.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/importers/sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/importers/sl.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/importers/studio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/importers/studio.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/importers/xsplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/importers/xsplit.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/item-widget-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/item-widget-helpers.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/item-widget-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/item-widget-helpers.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/lineedit-autoresize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/lineedit-autoresize.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/lineedit-autoresize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/lineedit-autoresize.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/log-viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/log-viewer.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/log-viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/log-viewer.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/media-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/media-controls.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/media-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/media-controls.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/menu-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/menu-button.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/menu-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/menu-button.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/models/multitrack-video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/models/multitrack-video.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/multitrack-video-error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/multitrack-video-error.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/multitrack-video-error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/multitrack-video-error.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/multitrack-video-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/multitrack-video-output.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/multitrack-video-output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/multitrack-video-output.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/multiview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/multiview.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/multiview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/multiview.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/mute-checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/mute-checkbox.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/noncheckable-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/noncheckable-button.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/obf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obf.c -------------------------------------------------------------------------------- /other/obs-studio/UI/obf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obf.h -------------------------------------------------------------------------------- /other/obs-studio/UI/obs-app-theming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs-app-theming.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/obs-app-theming.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs-app-theming.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/obs-app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs-app.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/obs-app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs-app.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/obs-frontend-api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs-frontend-api/CMakeLists.txt -------------------------------------------------------------------------------- /other/obs-studio/UI/obs-proxy-style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs-proxy-style.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/obs-proxy-style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs-proxy-style.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/obs.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs.manifest -------------------------------------------------------------------------------- /other/obs-studio/UI/obs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/obs.rc.in -------------------------------------------------------------------------------- /other/obs-studio/UI/platform-osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/platform-osx.mm -------------------------------------------------------------------------------- /other/obs-studio/UI/platform-windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/platform-windows.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/platform-x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/platform-x11.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/platform.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/qt-display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/qt-display.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/qt-display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/qt-display.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/remote-text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/remote-text.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/remote-text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/remote-text.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/scene-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/scene-tree.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/scene-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/scene-tree.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/screenshot-obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/screenshot-obj.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/source-label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/source-label.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/source-label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/source-label.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/source-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/source-tree.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/source-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/source-tree.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/system-info-macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/system-info-macos.mm -------------------------------------------------------------------------------- /other/obs-studio/UI/system-info-posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/system-info-posix.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/system-info-windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/system-info-windows.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/system-info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/system-info.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/ui-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/ui-config.h.in -------------------------------------------------------------------------------- /other/obs-studio/UI/ui-validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/ui-validation.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/ui-validation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/ui-validation.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/undo-stack-obs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/undo-stack-obs.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/undo-stack-obs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/undo-stack-obs.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/crypto-helpers-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/crypto-helpers-mac.mm -------------------------------------------------------------------------------- /other/obs-studio/UI/update/crypto-helpers-mbedtls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/crypto-helpers-mbedtls.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/crypto-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/crypto-helpers.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/mac-update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/mac-update.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/mac-update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/mac-update.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/models/branches.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/models/branches.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/models/whatsnew.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/models/whatsnew.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/shared-update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/shared-update.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/shared-update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/shared-update.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/sparkle-updater.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/sparkle-updater.mm -------------------------------------------------------------------------------- /other/obs-studio/UI/update/update-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/update-helpers.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/update-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/update-helpers.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/update-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/update-window.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/update-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/update-window.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/win-update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/win-update.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/update/win-update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/update/win-update.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/url-push-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/url-push-button.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/url-push-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/url-push-button.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/visibility-item-widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/visibility-item-widget.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/visibility-item-widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/visibility-item-widget.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/volume-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/volume-control.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/volume-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/volume-control.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-dll-blocklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-dll-blocklist.c -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/CMakeLists.txt -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/hash.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/helpers.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/helpers.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/http.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/manifest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/manifest.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/patch.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/resource.h -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/updater.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/updater.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/win-update/updater/updater.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/win-update/updater/updater.rc -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-about.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-about.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-about.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-adv-audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-adv-audio.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-adv-audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-adv-audio.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-auto-config-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-auto-config-test.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-auto-config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-auto-config.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-auto-config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-auto-config.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-filters.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-filters.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-interaction.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-interaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-interaction.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main-browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main-browser.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main-dropfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main-dropfiles.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main-icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main-icons.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main-outputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main-outputs.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main-outputs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main-outputs.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main-profiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main-profiles.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main-screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main-screenshot.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main-transitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main-transitions.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-main.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-preview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-preview.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-preview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-preview.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-properties.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-properties.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-settings-a11y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-settings-a11y.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-settings-stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-settings-stream.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-settings.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-settings.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-source-select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-source-select.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-source-select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-source-select.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-stats.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-stats.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-status-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-status-bar.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-status-bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-status-bar.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-transform.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-transform.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-vcam-config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-vcam-config.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-vcam-config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-vcam-config.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-basic-vcam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-basic-vcam.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-dock-browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-dock-browser.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-dock-browser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-dock-browser.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-dock-youtube-app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-dock-youtube-app.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-dock-youtube-app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-dock-youtube-app.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-dock.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-dock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-dock.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-extra-browsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-extra-browsers.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-extra-browsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-extra-browsers.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-importer.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-importer.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-log-reply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-log-reply.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-log-reply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-log-reply.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-main.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-missing-files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-missing-files.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-missing-files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-missing-files.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-namedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-namedialog.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-namedialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-namedialog.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-permissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-permissions.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-permissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-permissions.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-projector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-projector.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-projector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-projector.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-remux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-remux.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-remux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-remux.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-youtube-actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-youtube-actions.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/window-youtube-actions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/window-youtube-actions.hpp -------------------------------------------------------------------------------- /other/obs-studio/UI/xdg-data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/xdg-data/CMakeLists.txt -------------------------------------------------------------------------------- /other/obs-studio/UI/xdg-data/icons/obs-logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/xdg-data/icons/obs-logo-128.png -------------------------------------------------------------------------------- /other/obs-studio/UI/xdg-data/icons/obs-logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/xdg-data/icons/obs-logo-256.png -------------------------------------------------------------------------------- /other/obs-studio/UI/xdg-data/icons/obs-logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/xdg-data/icons/obs-logo-512.png -------------------------------------------------------------------------------- /other/obs-studio/UI/youtube-api-wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/youtube-api-wrappers.cpp -------------------------------------------------------------------------------- /other/obs-studio/UI/youtube-api-wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/UI/youtube-api-wrappers.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/CMakeLists.txt -------------------------------------------------------------------------------- /other/obs-studio/libobs/callback/calldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/callback/calldata.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/callback/calldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/callback/calldata.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/callback/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/callback/decl.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/callback/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/callback/decl.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/callback/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/callback/proc.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/callback/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/callback/proc.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/callback/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/callback/signal.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/callback/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/callback/signal.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/32bit-build.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/32bit-build.cmake -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/legacy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/legacy.cmake -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/libobsConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/libobsConfig.cmake.in -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/linux/libobs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/linux/libobs.pc.in -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/macos/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/macos/entitlements.plist -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/obs-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/obs-version.cmake -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/os-freebsd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/os-freebsd.cmake -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/os-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/os-linux.cmake -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/os-macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/os-macos.cmake -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/os-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/os-windows.cmake -------------------------------------------------------------------------------- /other/obs-studio/libobs/cmake/windows/obs-module.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/cmake/windows/obs-module.rc.in -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/area.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/area.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/bicubic_scale.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/bicubic_scale.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/color.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/color.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/default.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/default.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/default_rect.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/default_rect.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/deinterlace_base.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/deinterlace_base.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/deinterlace_blend.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/deinterlace_blend.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/deinterlace_linear.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/deinterlace_linear.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/deinterlace_yadif.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/deinterlace_yadif.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/format_conversion.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/format_conversion.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/lanczos_scale.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/lanczos_scale.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/opaque.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/opaque.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/repeat.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/repeat.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/data/solid.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/data/solid.effect -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/axisang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/axisang.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/axisang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/axisang.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/basemath.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | /* TODO: C++ math wrappers */ 4 | -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/bounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/bounds.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/bounds.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/device-exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/device-exports.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/effect-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/effect-parser.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/effect-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/effect-parser.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/effect.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/effect.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/graphics-ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/graphics-ffmpeg.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/graphics-imports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/graphics-imports.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/graphics-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/graphics-internal.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/graphics-magick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/graphics-magick.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/graphics.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/graphics.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/half.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/image-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/image-file.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/image-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/image-file.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/input.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/libnsgif/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/libnsgif/libnsgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/libnsgif/libnsgif.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/libnsgif/libnsgif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/libnsgif/libnsgif.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/math-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/math-defs.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/math-extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/math-extra.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/math-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/math-extra.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/matrix3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/matrix3.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/matrix3.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/matrix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/matrix4.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/matrix4.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/plane.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/plane.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/quat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/quat.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/quat.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/shader-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/shader-parser.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/shader-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/shader-parser.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/srgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/srgb.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/texture-render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/texture-render.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/vec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/vec2.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/vec2.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/vec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/vec3.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/vec3.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/vec4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/vec4.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/graphics/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/graphics/vec4.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/audio-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/audio-io.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/audio-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/audio-io.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/audio-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/audio-math.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/audio-resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/audio-resampler.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/format-conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/format-conversion.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/format-conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/format-conversion.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/frame-rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/frame-rate.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/media-io-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/media-io-defs.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/media-remux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/media-remux.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/media-remux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/media-remux.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/video-fourcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/video-fourcc.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/video-frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/video-frame.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/video-frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/video-frame.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/video-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/video-io.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/video-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/video-io.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/video-matrices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/video-matrices.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/video-scaler-ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/video-scaler-ffmpeg.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/media-io/video-scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/media-io/video-scaler.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-audio-controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-audio-controls.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-audio-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-audio-controls.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-audio.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-av1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-av1.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-av1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-av1.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-avc.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-avc.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-cocoa.m -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-config.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-data.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-data.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-defs.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-display.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-encoder.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-encoder.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-ffmpeg-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-ffmpeg-compat.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-hevc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-hevc.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-hevc.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-hotkey-name-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-hotkey-name-map.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-hotkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-hotkey.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-hotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-hotkey.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-hotkeys.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-interaction.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-internal.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-missing-files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-missing-files.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-missing-files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-missing-files.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-module.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-module.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nal.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nal.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nix-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nix-platform.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nix-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nix-platform.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nix-wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nix-wayland.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nix-wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nix-wayland.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nix-x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nix-x11.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nix-x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nix-x11.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nix.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-nix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-nix.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-output-delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-output-delay.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-output.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-output.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-properties.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-properties.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-scene.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-scene.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-service.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-service.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-source-deinterlace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-source-deinterlace.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-source-transition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-source-transition.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-source.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-source.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-video-gpu-encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-video-gpu-encode.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-video.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-view.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-win-crash-handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-win-crash-handler.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs-windows.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/obs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obs.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/obsconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obsconfig.h.in -------------------------------------------------------------------------------- /other/obs-studio/libobs/obsversion.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obsversion.c.in -------------------------------------------------------------------------------- /other/obs-studio/libobs/obsversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/obsversion.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/pkgconfig/libobs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/pkgconfig/libobs.pc.in -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/apple/cfstring-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/apple/cfstring-utils.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/array-serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/array-serializer.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/array-serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/array-serializer.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/base.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/base.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/bitstream.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/bitstream.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/bmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/bmem.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/bmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/bmem.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/c99defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/c99defs.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/cf-lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/cf-lexer.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/cf-lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/cf-lexer.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/cf-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/cf-parser.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/cf-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/cf-parser.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/circlebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/circlebuf.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/config-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/config-file.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/config-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/config-file.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/crc32.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/crc32.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/curl/curl-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/curl/curl-helper.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/darray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/darray.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/deque.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/dstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/dstr.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/dstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/dstr.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/dstr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/dstr.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/file-serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/file-serializer.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/file-serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/file-serializer.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/lexer.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/lexer.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/pipe-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/pipe-posix.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/pipe-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/pipe-windows.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/pipe.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/pipe.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/platform-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/platform-cocoa.m -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/platform-nix-dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/platform-nix-dbus.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/platform-nix-portal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/platform-nix-portal.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/platform-nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/platform-nix.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/platform-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/platform-windows.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/platform.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/platform.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/profiler.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/profiler.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/profiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/profiler.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/serializer.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/LICENSE.simde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/LICENSE.simde -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/README.libobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/README.libobs -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/check.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/debug-trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/debug-trap.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/hedley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/hedley.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/simde-align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/simde-align.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/simde-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/simde-arch.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/simde-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/simde-common.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/simde-constify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/simde-constify.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/simde-diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/simde-diagnostic.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/simde-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/simde-features.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/simde-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/simde-math.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/x86/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/x86/mmx.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/x86/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/x86/sse.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/simde/x86/sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/simde/x86/sse2.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/sse-intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/sse-intrin.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/task.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/task.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/text-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/text-lookup.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/text-lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/text-lookup.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/threading-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/threading-posix.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/threading-posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/threading-posix.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/threading-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/threading-windows.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/threading-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/threading-windows.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/threading.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/utf8.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/utf8.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/uthash.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/util.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/util_uint128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/util_uint128.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/util_uint64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/util_uint64.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/CoTaskMemPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/CoTaskMemPtr.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/ComPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/ComPtr.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/HRError.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/HRError.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/WinHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/WinHandle.hpp -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/device-enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/device-enum.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/device-enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/device-enum.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/obfuscate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/obfuscate.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/obfuscate.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/win-registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/win-registry.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/win-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/win-version.h -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/window-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/window-helpers.c -------------------------------------------------------------------------------- /other/obs-studio/libobs/util/windows/window-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Logitech/ghub-obs-plugin/HEAD/other/obs-studio/libobs/util/windows/window-helpers.h --------------------------------------------------------------------------------