├── .cirrus.yml ├── .clang-format ├── .cmake-format.json ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── FUNDING.yml ├── actions │ ├── build-obs │ │ └── action.yaml │ ├── check-changes │ │ └── action.yaml │ ├── compatibility-validator │ │ └── action.yaml │ ├── flatpak-builder-lint │ │ └── action.yaml │ ├── flatpak-manifest-validator │ │ └── action.yaml │ ├── generate-docs │ │ └── action.yaml │ ├── package-obs │ │ └── action.yaml │ ├── qt-xml-validator │ │ └── action.yaml │ ├── run-clang-format │ │ └── action.yaml │ ├── run-cmake-format │ │ └── action.yaml │ ├── run-swift-format │ │ └── action.yaml │ ├── services-validator │ │ └── action.yaml │ ├── setup-macos-codesigning │ │ └── action.yaml │ ├── sparkle-appcast │ │ ├── action.yaml │ │ ├── appcast_adjust.xslt │ │ └── appcast_legacy.xslt │ ├── steam-upload │ │ └── action.yaml │ ├── upload-debug-symbols │ │ └── action.yaml │ ├── windows-analysis │ │ ├── Invoke-External.ps1 │ │ ├── Logger.ps1 │ │ ├── action.yaml │ │ └── obs.pvsconfig │ ├── windows-patches │ │ ├── Ensure-Location.ps1 │ │ ├── Invoke-External.ps1 │ │ ├── Logger.ps1 │ │ ├── action.yaml │ │ └── config.toml │ └── windows-signing │ │ ├── Ensure-Location.ps1 │ │ ├── Invoke-External.ps1 │ │ ├── Logger.ps1 │ │ ├── action.yaml │ │ ├── cng-release-signing-key.pem │ │ ├── config.toml │ │ ├── prod.crt │ │ └── test.crt ├── pull_request_template.md ├── scripts │ ├── .Aptfile │ ├── .Brewfile │ ├── .Wingetfile │ ├── .build.zsh │ ├── .package.zsh │ ├── Build-Windows.ps1 │ ├── Package-Windows.ps1 │ ├── build-macos │ ├── build-ubuntu │ ├── check-changes.sh │ ├── check-cmake.sh │ ├── check-format.sh │ ├── package-macos │ ├── package-ubuntu │ ├── utils.pwsh │ │ ├── Ensure-Location.ps1 │ │ ├── Install-BuildDependencies.ps1 │ │ ├── Invoke-External.ps1 │ │ └── Logger.ps1 │ ├── utils.py │ │ ├── check-jsonschema.py │ │ └── check-services.py │ └── utils.zsh │ │ ├── check_macos │ │ ├── check_ubuntu │ │ ├── create_diskimage │ │ ├── log_debug │ │ ├── log_error │ │ ├── log_group │ │ ├── log_info │ │ ├── log_output │ │ ├── log_status │ │ ├── log_warning │ │ ├── mkcd │ │ ├── setup_ccache │ │ └── setup_ubuntu └── workflows │ ├── analyze-project.yaml │ ├── build-project.yaml │ ├── check-format.yaml │ ├── clang-format.yml │ ├── clean-caches.yml │ ├── compat-json.yml │ ├── dispatch.yaml │ ├── main-streamlabs.yml │ ├── main.yml │ ├── pr-pull.yaml │ ├── publish.yaml │ ├── push.yaml │ ├── scheduled.yaml │ └── sign-windows.yaml ├── .gitignore ├── .gitmodules ├── .mailmap ├── .swift-format ├── AUTHORS ├── CI └── macos │ └── fix_deps_paths.sh ├── CMakeLists.txt ├── CMakePresets.json ├── COC.rst ├── COMMITMENT ├── CONTRIBUTING.rst ├── COPYING ├── INSTALL ├── 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.appdata.xml.in │ │ ├── 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 ├── double-slider.cpp ├── double-slider.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 │ │ │ ├── macos │ │ │ │ └── Info.plist.in │ │ │ └── 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 │ │ │ ├── macos │ │ │ │ └── Info.plist.in │ │ │ └── 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 │ │ │ ├── macos │ │ │ │ └── Info.plist.in │ │ │ └── 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 │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── 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 ├── plain-text-edit.cpp ├── plain-text-edit.hpp ├── platform-osx.mm ├── platform-windows.cpp ├── platform-x11.cpp ├── platform.hpp ├── properties-view.cpp ├── properties-view.hpp ├── properties-view.moc.hpp ├── qt-display.cpp ├── qt-display.hpp ├── qt-wrappers.cpp ├── qt-wrappers.hpp ├── remote-text.cpp ├── remote-text.hpp ├── scene-tree.cpp ├── scene-tree.hpp ├── screenshot-obj.hpp ├── slider-ignorewheel.cpp ├── slider-ignorewheel.hpp ├── source-label.cpp ├── source-label.hpp ├── source-tree.cpp ├── source-tree.hpp ├── spinbox-ignorewheel.cpp ├── spinbox-ignorewheel.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 ├── vertical-scroll-area.cpp ├── vertical-scroll-area.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 ├── additional_install_files ├── .gitignore ├── data │ └── .gitignore ├── exec32 │ └── .gitignore ├── exec32d │ └── .gitignore ├── exec32r │ └── .gitignore ├── exec64 │ └── .gitignore ├── exec64d │ └── .gitignore ├── exec64r │ └── .gitignore ├── libs32 │ └── .gitignore ├── libs32d │ └── .gitignore ├── libs32r │ └── .gitignore ├── libs64 │ └── .gitignore ├── libs64d │ └── .gitignore ├── libs64r │ └── .gitignore └── misc │ └── .gitignore ├── cmake ├── 32bit │ └── projects.cmake ├── Modules │ ├── CompilerConfig.cmake │ ├── CopyMSVCBins.cmake │ ├── DeprecationHelpers.cmake │ ├── FindAMF.cmake │ ├── FindAsio.cmake │ ├── FindCEF.cmake │ ├── FindDetours.cmake │ ├── FindFFmpeg.cmake │ ├── FindFFnvcodec.cmake │ ├── FindGio.cmake │ ├── FindJack.cmake │ ├── FindJansson.cmake │ ├── FindLibAJANTV2.cmake │ ├── FindLibUUID.cmake │ ├── FindLibVLC.cmake │ ├── FindLibdrm.cmake │ ├── FindLibfdk.cmake │ ├── FindLibpci.cmake │ ├── FindLibrist.cmake │ ├── FindLibrnnoise.cmake │ ├── FindLibspeexdsp.cmake │ ├── FindLibsrt.cmake │ ├── FindLibv4l2.cmake │ ├── FindLibva.cmake │ ├── FindLibx264.cmake │ ├── FindLuajit.cmake │ ├── FindMbedTLS.cmake │ ├── FindOSS.cmake │ ├── FindPipeWire.cmake │ ├── FindPythonWindows.cmake │ ├── FindSndio.cmake │ ├── FindSwigWindows.cmake │ ├── FindSysinfo.cmake │ ├── FindUdev.cmake │ ├── FindUthash.cmake │ ├── FindVPL.cmake │ ├── FindWayland.cmake │ ├── FindWebsocketpp.cmake │ ├── FindX11_XCB.cmake │ ├── FindXCB.cmake │ ├── FindXkbcommon.cmake │ ├── Findqrcodegencpp.cmake │ ├── IDLFileHelper.cmake │ ├── ObsDefaults_Linux.cmake │ ├── ObsDefaults_Windows.cmake │ ├── ObsDefaults_macOS.cmake │ ├── ObsHelpers.cmake │ ├── ObsHelpers_Linux.cmake │ ├── ObsHelpers_Windows.cmake │ ├── ObsHelpers_macOS.cmake │ └── VersionConfig.cmake ├── bundle │ └── windows │ │ ├── ALL_BUILD.vcxproj.user.in │ │ ├── obs-module.rc.in │ │ └── obs-studio.ico ├── common │ ├── .cmake-format.json │ ├── bootstrap.cmake │ ├── buildnumber.cmake │ ├── buildspec_common.cmake │ ├── ccache.cmake │ ├── compiler_common.cmake │ ├── cpackconfig_common.cmake │ ├── helpers_common.cmake │ ├── osconfig.cmake │ ├── policies.cmake │ └── versionconfig.cmake ├── finders │ ├── FindAMF.cmake │ ├── FindAsio.cmake │ ├── FindCEF.cmake │ ├── FindDetours.cmake │ ├── FindFFmpeg.cmake │ ├── FindFFnvcodec.cmake │ ├── FindGio.cmake │ ├── FindJack.cmake │ ├── FindLibAJANTV2.cmake │ ├── FindLibUUID.cmake │ ├── FindLibVLC.cmake │ ├── FindLibdrm.cmake │ ├── FindLibfdk.cmake │ ├── FindLibpci.cmake │ ├── FindLibrist.cmake │ ├── FindLibrnnoise.cmake │ ├── FindLibspeexdsp.cmake │ ├── FindLibsrt.cmake │ ├── FindLibudev.cmake │ ├── FindLibv4l2.cmake │ ├── FindLibva.cmake │ ├── FindLibx264.cmake │ ├── FindLuajit.cmake │ ├── FindMbedTLS.cmake │ ├── FindOSS.cmake │ ├── FindPipeWire.cmake │ ├── FindPulseAudio.cmake │ ├── FindSndio.cmake │ ├── FindSysinfo.cmake │ ├── FindUthash.cmake │ ├── FindVPL.cmake │ ├── FindWayland.cmake │ ├── FindWebsocketpp.cmake │ ├── FindX11-xcb.cmake │ ├── FindXcb.cmake │ ├── FindXkbcommon.cmake │ ├── Findjansson.cmake │ └── Findqrcodegencpp.cmake ├── linux │ ├── compilerconfig.cmake │ ├── cpackconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ ├── toolchain-aarch64-clang.cmake │ ├── toolchain-aarch64-gcc.cmake │ └── toolchain-x86_64-gcc.cmake ├── macos │ ├── buildspec.cmake │ ├── compilerconfig.cmake │ ├── cpackconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ ├── resources │ │ ├── AppIcon.icns │ │ ├── background.tiff │ │ ├── ccache-launcher-c.in │ │ ├── ccache-launcher-cxx.in │ │ ├── package.applescript │ │ └── package.applescript.in │ ├── simd.cmake │ └── xcode.cmake └── windows │ ├── FindPython.cmake │ ├── buildspec.cmake │ ├── compilerconfig.cmake │ ├── cpackconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ └── idlfilehelper.cmake ├── dependencies ├── avcodec-58.dll.txt ├── avdevice-58.dll.txt ├── avfilter-7.dll.txt ├── avformat-58.dll.txt ├── avutil-56.dll.txt ├── chrome_elf.dll.txt ├── coreaudio-encoder.dll.txt ├── decklink.dll.txt ├── enc-amf-test64.exe.txt ├── enc-amf.dll.txt ├── get-graphics-offsets64.exe.txt ├── graphics-hook64.dll.txt ├── image-source.dll.txt ├── inject-helper64.exe.txt ├── libEGL.dll.txt ├── libGLESv2.dll.txt ├── libSvtAv1Enc.dll.txt ├── libaom.dll.txt ├── libcef.dll.txt ├── libcurl.dll.txt ├── libmbedcrypto.dll.txt ├── libobs-d3d11.dll.txt ├── libobs-opengl.dll.txt ├── libobs-winrt.dll.txt ├── libogg-0.dll.txt ├── libopus-0.dll.txt ├── librist.dll.txt ├── libsrt.dll.txt ├── libvorbis-0.dll.txt ├── libvorbisenc-2.dll.txt ├── libvorbisfile-3.dll.txt ├── libvpx-1.dll.txt ├── libx264-161.dll.txt ├── mediasoup-connector.dll.txt ├── motion-transition.dll.txt ├── obs-amf-test.exe.txt ├── obs-browser-page.exe.txt ├── obs-browser.dll.txt ├── obs-ffmpeg-mux.exe.txt ├── obs-ffmpeg.dll.txt ├── obs-filters.dll.txt ├── obs-frontend-api.dll.txt ├── obs-ndi.dll.txt ├── obs-nvenc-test.exe.txt ├── obs-nvenc.dll.txt ├── obs-outputs.dll.txt ├── obs-qsv-test.exe.txt ├── obs-qsv11.dll.txt ├── obs-studio.dll.txt ├── obs-text.dll.txt ├── obs-transitions.dll.txt ├── obs-virtualcam-module64.dll.txt ├── obs-virtualoutput.dll.txt ├── obs-virtualsource.dll.txt ├── obs-vst.dll.txt ├── obs-webrtc.dll.txt ├── obs-websocket.dll.txt ├── obs-x264.dll.txt ├── obs.dll.txt ├── obsglad.dll.txt ├── rtmp-services.dll.txt ├── swresample-3.dll.txt ├── swscale-5.dll.txt ├── text-freetype2.dll.txt ├── vlc-video.dll.txt ├── w32-pthreads.dll.txt ├── win-capture.dll.txt ├── win-decklink.dll.txt ├── win-dshow.dll.txt ├── win-mf.dll.txt ├── win-openvr.dll.txt ├── win-spout.dll.txt ├── win-streamlabs-vst.exe.txt ├── win-wasapi.dll.txt └── zlib.dll.txt ├── deps ├── CMakeLists.txt ├── blake2 │ ├── .clang-format │ ├── CMakeLists.txt │ ├── LICENSE.blake2 │ └── src │ │ ├── blake2-impl.h │ │ ├── blake2.h │ │ └── blake2b-ref.c ├── file-updater │ ├── CMakeLists.txt │ └── file-updater │ │ ├── file-updater.c │ │ └── file-updater.h ├── glad │ ├── .clang-format │ ├── CMakeLists.txt │ ├── include │ │ ├── EGL │ │ │ └── eglplatform.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ ├── glad.h │ │ │ ├── glad_egl.h │ │ │ └── glad_wgl.h │ └── src │ │ ├── glad.c │ │ ├── glad_egl.c │ │ └── glad_wgl.c ├── happy-eyeballs │ ├── CMakeLists.txt │ ├── happy-eyeballs.c │ └── happy-eyeballs.h ├── ipc-util │ ├── CMakeLists.txt │ └── ipc-util │ │ ├── pipe-posix.c │ │ ├── pipe-posix.h │ │ ├── pipe-windows.c │ │ ├── pipe-windows.h │ │ └── pipe.h ├── json11 │ ├── .clang-format │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── json11.cpp │ └── json11.hpp ├── libcaption │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── LICENSE.txt │ ├── README.md │ ├── caption │ │ ├── caption.h │ │ ├── cea708.h │ │ ├── dvtcc.h │ │ ├── eia608.h │ │ ├── eia608_charmap.h │ │ ├── mpeg.h │ │ ├── scc.h │ │ ├── srt.h │ │ ├── utf8.h │ │ ├── vtt.h │ │ └── xds.h │ ├── cmake │ │ └── legacy.cmake │ ├── format.sh │ └── src │ │ ├── caption.c │ │ ├── cea708.c │ │ ├── dvtcc.c │ │ ├── eia608.c │ │ ├── eia608_charmap.c │ │ ├── eia608_from_utf8.c │ │ ├── eia608_from_utf8.re2c │ │ ├── mpeg.c │ │ ├── scc.c │ │ ├── srt.c │ │ ├── utf8.c │ │ ├── vtt.c │ │ └── xds.c ├── media-playback │ ├── CMakeLists.txt │ ├── LICENSE.media-playback │ └── media-playback │ │ ├── cache.c │ │ ├── cache.h │ │ ├── closest-format.h │ │ ├── decode.c │ │ ├── decode.h │ │ ├── media-playback.c │ │ ├── media-playback.h │ │ ├── media.c │ │ └── media.h ├── obs-scripting │ ├── CMakeLists.txt │ ├── cmake │ │ ├── cstrcache.cmake │ │ ├── legacy.cmake │ │ ├── lua.cmake │ │ ├── python.cmake │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── cstrcache.cpp │ ├── cstrcache.h │ ├── obs-scripting-callback.h │ ├── obs-scripting-config.h.in │ ├── obs-scripting-internal.h │ ├── obs-scripting-logging.c │ ├── obs-scripting-lua-frontend.c │ ├── obs-scripting-lua-source.c │ ├── obs-scripting-lua.c │ ├── obs-scripting-lua.h │ ├── obs-scripting-python-frontend.c │ ├── obs-scripting-python-import.c │ ├── obs-scripting-python-import.h │ ├── obs-scripting-python.c │ ├── obs-scripting-python.h │ ├── obs-scripting.c │ ├── obs-scripting.h │ ├── obslua │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ └── legacy.cmake │ │ └── obslua.i │ └── obspython │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ └── legacy.cmake │ │ └── obspython.i ├── opts-parser │ ├── CMakeLists.txt │ ├── opts-parser.c │ └── opts-parser.h └── w32-pthreads │ ├── .clang-format │ ├── ANNOUNCE │ ├── BUGS │ ├── Bmakefile │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── COPYING │ ├── COPYING.LIB │ ├── ChangeLog │ ├── FAQ │ ├── GNUmakefile │ ├── MAINTAINERS │ ├── Makefile │ ├── NEWS │ ├── Nmakefile │ ├── Nmakefile.tests │ ├── PROGRESS │ ├── README │ ├── README.Borland │ ├── README.CV │ ├── README.NONPORTABLE │ ├── README.Watcom │ ├── README.WinCE │ ├── TODO │ ├── WinCE-PORT │ ├── attr.c │ ├── autostatic.c │ ├── barrier.c │ ├── builddmc.bat │ ├── cancel.c │ ├── cleanup.c │ ├── cmake │ ├── legacy.cmake │ ├── w32-pthreadsConfig.cmake.in │ └── windows │ │ └── obs-module.rc.in │ ├── condvar.c │ ├── config.h │ ├── context.h │ ├── create.c │ ├── dll.c │ ├── errno.c │ ├── exit.c │ ├── fork.c │ ├── global.c │ ├── implement.h │ ├── libpthreadGC2.a │ ├── libpthreadGC2.stamp │ ├── manual │ ├── ChangeLog │ ├── PortabilityIssues.html │ ├── index.html │ ├── pthreadCancelableWait.html │ ├── pthread_attr_init.html │ ├── pthread_attr_setstackaddr.html │ ├── pthread_attr_setstacksize.html │ ├── pthread_barrier_init.html │ ├── pthread_barrier_wait.html │ ├── pthread_barrierattr_init.html │ ├── pthread_barrierattr_setpshared.html │ ├── pthread_cancel.html │ ├── pthread_cleanup_push.html │ ├── pthread_cond_init.html │ ├── pthread_condattr_init.html │ ├── pthread_condattr_setpshared.html │ ├── pthread_create.html │ ├── pthread_delay_np.html │ ├── pthread_detach.html │ ├── pthread_equal.html │ ├── pthread_exit.html │ ├── pthread_getunique_np.html │ ├── pthread_getw32threadhandle_np.html │ ├── pthread_join.html │ ├── pthread_key_create.html │ ├── pthread_kill.html │ ├── pthread_mutex_init.html │ ├── pthread_mutexattr_init.html │ ├── pthread_mutexattr_setpshared.html │ ├── pthread_num_processors_np.html │ ├── pthread_once.html │ ├── pthread_rwlock_init.html │ ├── pthread_rwlock_rdlock.html │ ├── pthread_rwlock_timedrdlock.html │ ├── pthread_rwlock_timedwrlock.html │ ├── pthread_rwlock_unlock.html │ ├── pthread_rwlock_wrlock.html │ ├── pthread_rwlockattr_init.html │ ├── pthread_rwlockattr_setpshared.html │ ├── pthread_self.html │ ├── pthread_setcancelstate.html │ ├── pthread_setcanceltype.html │ ├── pthread_setconcurrency.html │ ├── pthread_setschedparam.html │ ├── pthread_spin_init.html │ ├── pthread_spin_lock.html │ ├── pthread_spin_unlock.html │ ├── pthread_timechange_handler_np.html │ ├── pthread_win32_attach_detach_np.html │ ├── pthread_win32_test_features_np.html │ ├── sched_get_priority_max.html │ ├── sched_getscheduler.html │ ├── sched_setscheduler.html │ ├── sched_yield.html │ └── sem_init.html │ ├── misc.c │ ├── mutex.c │ ├── need_errno.h │ ├── nonportable.c │ ├── private.c │ ├── pthread.c │ ├── pthread.dsp │ ├── pthread.dsw │ ├── pthread.h │ ├── pthread.lastbuildstate │ ├── pthread.sln │ ├── pthread.vcxproj │ ├── pthread.vcxproj.filters │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_delay_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getconcurrency.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_getunique_np.c │ ├── pthread_getw32threadhandle_np.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill.c │ ├── pthread_mutex_consistent.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_timedlock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getkind_np.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_getrobust.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setkind_np.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_setrobust.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_num_processors_np.c │ ├── pthread_once.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_timedrdlock.c │ ├── pthread_rwlock_timedwrlock.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setschedparam.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timechange_handler_np.c │ ├── pthread_win32_attach_detach_np.c │ ├── ptw32_MCS_lock.c │ ├── ptw32_OLL_lock.c │ ├── ptw32_callUserDestroyRoutines.c │ ├── ptw32_calloc.c │ ├── ptw32_cond_check_need_init.c │ ├── ptw32_getprocessors.c │ ├── ptw32_is_attr.c │ ├── ptw32_mutex_check_need_init.c │ ├── ptw32_new.c │ ├── ptw32_processInitialize.c │ ├── ptw32_processTerminate.c │ ├── ptw32_relmillisecs.c │ ├── ptw32_reuse.c │ ├── ptw32_rwlock_cancelwrwait.c │ ├── ptw32_rwlock_check_need_init.c │ ├── ptw32_semwait.c │ ├── ptw32_spinlock_check_need_init.c │ ├── ptw32_threadDestroy.c │ ├── ptw32_threadStart.c │ ├── ptw32_throw.c │ ├── ptw32_timespec.c │ ├── ptw32_tkAssocCreate.c │ ├── ptw32_tkAssocDestroy.c │ ├── rwlock.c │ ├── sched.c │ ├── sched.h │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getscheduler.c │ ├── sched_setscheduler.c │ ├── sched_yield.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_post_multiple.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── semaphore.c │ ├── semaphore.h │ ├── signal.c │ ├── spin.c │ ├── sync.c │ ├── tests │ ├── Bmakefile │ ├── ChangeLog │ ├── Debug.dsp │ ├── Debug.dsw │ ├── Debug.plg │ ├── Debug.txt │ ├── GNUmakefile │ ├── Makefile │ ├── README │ ├── README.BENCHTESTS │ ├── SIZES.GC │ ├── SIZES.GCE │ ├── SIZES.VC │ ├── SIZES.VCE │ ├── SIZES.VSE │ ├── Wmakefile │ ├── barrier1.c │ ├── barrier2.c │ ├── barrier3.c │ ├── barrier4.c │ ├── barrier5.c │ ├── barrier6.c │ ├── benchlib.c │ ├── benchtest.h │ ├── benchtest1.c │ ├── benchtest2.c │ ├── benchtest3.c │ ├── benchtest4.c │ ├── benchtest5.c │ ├── cancel1.c │ ├── cancel2.c │ ├── cancel3.c │ ├── cancel4.c │ ├── cancel5.c │ ├── cancel6a.c │ ├── cancel6d.c │ ├── cancel7.c │ ├── cancel8.c │ ├── cancel9.c │ ├── cleanup0.c │ ├── cleanup1.c │ ├── cleanup2.c │ ├── cleanup3.c │ ├── condvar1.c │ ├── condvar1_1.c │ ├── condvar1_2.c │ ├── condvar2.c │ ├── condvar2_1.c │ ├── condvar3.c │ ├── condvar3_1.c │ ├── condvar3_2.c │ ├── condvar3_3.c │ ├── condvar4.c │ ├── condvar5.c │ ├── condvar6.c │ ├── condvar7.c │ ├── condvar8.c │ ├── condvar9.c │ ├── context1.c │ ├── count1.c │ ├── create1.c │ ├── create2.c │ ├── create3.c │ ├── delay1.c │ ├── delay2.c │ ├── detach1.c │ ├── equal1.c │ ├── errno1.c │ ├── exception1.c │ ├── exception2.c │ ├── exception3.c │ ├── exit1.c │ ├── exit2.c │ ├── exit3.c │ ├── exit4.c │ ├── exit5.c │ ├── eyal1.c │ ├── inherit1.c │ ├── join0.c │ ├── join1.c │ ├── join2.c │ ├── join3.c │ ├── kill1.c │ ├── loadfree.c │ ├── mutex1.c │ ├── mutex1e.c │ ├── mutex1n.c │ ├── mutex1r.c │ ├── mutex2.c │ ├── mutex2e.c │ ├── mutex2r.c │ ├── mutex3.c │ ├── mutex3e.c │ ├── mutex3r.c │ ├── mutex4.c │ ├── mutex5.c │ ├── mutex6.c │ ├── mutex6e.c │ ├── mutex6es.c │ ├── mutex6n.c │ ├── mutex6r.c │ ├── mutex6rs.c │ ├── mutex6s.c │ ├── mutex7.c │ ├── mutex7e.c │ ├── mutex7n.c │ ├── mutex7r.c │ ├── mutex8.c │ ├── mutex8e.c │ ├── mutex8n.c │ ├── mutex8r.c │ ├── once1.c │ ├── once2.c │ ├── once3.c │ ├── once4.c │ ├── openmp1.c │ ├── priority1.c │ ├── priority2.c │ ├── reuse1.c │ ├── reuse2.c │ ├── robust1.c │ ├── robust2.c │ ├── robust3.c │ ├── robust4.c │ ├── robust5.c │ ├── rwlock1.c │ ├── rwlock2.c │ ├── rwlock2_t.c │ ├── rwlock3.c │ ├── rwlock3_t.c │ ├── rwlock4.c │ ├── rwlock4_t.c │ ├── rwlock5.c │ ├── rwlock5_t.c │ ├── rwlock6.c │ ├── rwlock6_t.c │ ├── rwlock6_t2.c │ ├── rwlock7.c │ ├── rwlock8.c │ ├── self1.c │ ├── self2.c │ ├── semaphore1.c │ ├── semaphore2.c │ ├── semaphore3.c │ ├── semaphore4.c │ ├── semaphore4t.c │ ├── semaphore5.c │ ├── sequence1.c │ ├── sizes.c │ ├── spin1.c │ ├── spin2.c │ ├── spin3.c │ ├── spin4.c │ ├── stress1.c │ ├── test.h │ ├── tryentercs.c │ ├── tryentercs2.c │ ├── tsd1.c │ ├── tsd2.c │ ├── valid1.c │ └── valid2.c │ ├── tsd.c │ ├── version.rc │ ├── w32-pthreadsConfig.cmake.in │ ├── w32-pthreadsConfigVersion.cmake.in │ └── w32_CancelableWait.c ├── docs └── sphinx │ ├── Makefile │ ├── _build │ └── .gitignore │ ├── _static │ ├── .gitignore │ └── css │ │ └── custom.css │ ├── _templates │ └── .gitignore │ ├── backend-design.rst │ ├── conf.py │ ├── favicon.ico │ ├── frontends.rst │ ├── graphics.rst │ ├── index.rst │ ├── logo.svg │ ├── make.bat │ ├── plugins.rst │ ├── reference-core-objects.rst │ ├── reference-core.rst │ ├── reference-encoders.rst │ ├── reference-frontend-api.rst │ ├── reference-libobs-callback.rst │ ├── reference-libobs-graphics-axisang.rst │ ├── reference-libobs-graphics-effects.rst │ ├── reference-libobs-graphics-graphics.rst │ ├── reference-libobs-graphics-image-file.rst │ ├── reference-libobs-graphics-math.rst │ ├── reference-libobs-graphics-matrix4.rst │ ├── reference-libobs-graphics-quat.rst │ ├── reference-libobs-graphics-vec2.rst │ ├── reference-libobs-graphics-vec3.rst │ ├── reference-libobs-graphics-vec4.rst │ ├── reference-libobs-graphics.rst │ ├── reference-libobs-media-io.rst │ ├── reference-libobs-util-base.rst │ ├── reference-libobs-util-bmem.rst │ ├── reference-libobs-util-circlebuf.rst │ ├── reference-libobs-util-config-file.rst │ ├── reference-libobs-util-darray.rst │ ├── reference-libobs-util-deque.rst │ ├── reference-libobs-util-dstr.rst │ ├── reference-libobs-util-platform.rst │ ├── reference-libobs-util-profiler.rst │ ├── reference-libobs-util-serializers.rst │ ├── reference-libobs-util-text-lookup.rst │ ├── reference-libobs-util-threading.rst │ ├── reference-libobs-util.rst │ ├── reference-modules.rst │ ├── reference-outputs.rst │ ├── reference-properties.rst │ ├── reference-scenes.rst │ ├── reference-services.rst │ ├── reference-settings.rst │ ├── reference-sources.rst │ ├── requirements.txt │ └── scripting.rst ├── libobs-d3d11 ├── CMakeLists.txt ├── cmake │ ├── legacy.cmake │ └── windows │ │ └── obs-module.rc.in ├── d3d11-duplicator.cpp ├── d3d11-indexbuffer.cpp ├── d3d11-rebuild.cpp ├── d3d11-samplerstate.cpp ├── d3d11-shader.cpp ├── d3d11-shaderprocessor.cpp ├── d3d11-shaderprocessor.hpp ├── d3d11-stagesurf.cpp ├── d3d11-subsystem.cpp ├── d3d11-subsystem.hpp ├── d3d11-texture2d.cpp ├── d3d11-texture3d.cpp ├── d3d11-vertexbuffer.cpp └── d3d11-zstencilbuffer.cpp ├── libobs-opengl ├── CMakeLists.txt ├── IOSurfaceHelper.h ├── IOSurfaceHelper.m ├── cmake │ ├── legacy.cmake │ └── windows │ │ └── obs-module.rc.in ├── gl-cocoa.m ├── gl-egl-common.c ├── gl-egl-common.h ├── gl-helpers.c ├── gl-helpers.h ├── gl-indexbuffer.c ├── gl-nix.c ├── gl-nix.h ├── gl-shader.c ├── gl-shaderparser.c ├── gl-shaderparser.h ├── gl-stagesurf.c ├── gl-subsystem.c ├── gl-subsystem.h ├── gl-texture2d.c ├── gl-texture3d.c ├── gl-texturecube.c ├── gl-vertexbuffer.c ├── gl-wayland-egl.c ├── gl-wayland-egl.h ├── gl-windows.c ├── gl-x11-egl.c ├── gl-x11-egl.h └── gl-zstencil.c ├── libobs-winrt ├── CMakeLists.txt ├── cmake │ └── legacy.cmake ├── winrt-capture.cpp ├── winrt-capture.h ├── winrt-dispatch.cpp └── winrt-dispatch.h ├── 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 │ │ ├── Info.plist.in │ │ └── 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 ├── plugins ├── CMakeLists.txt ├── aja │ ├── CMakeLists.txt │ ├── README.md │ ├── aja-card-manager.cpp │ ├── aja-card-manager.hpp │ ├── aja-common.cpp │ ├── aja-common.hpp │ ├── aja-enums.hpp │ ├── aja-output.cpp │ ├── aja-output.hpp │ ├── aja-presets.cpp │ ├── aja-presets.hpp │ ├── aja-props.cpp │ ├── aja-props.hpp │ ├── aja-routing.cpp │ ├── aja-routing.hpp │ ├── aja-source.cpp │ ├── aja-source.hpp │ ├── aja-ui-props.hpp │ ├── aja-vpid-data.cpp │ ├── aja-vpid-data.hpp │ ├── aja-widget-io.cpp │ ├── aja-widget-io.hpp │ ├── audio-repack.c │ ├── audio-repack.h │ ├── audio-repack.hpp │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-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 │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── 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 │ └── main.cpp ├── coreaudio-encoder │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── 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 │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sq-AL.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── encoder.cpp │ └── windows-imports.h ├── decklink │ ├── CMakeLists.txt │ ├── DecklinkBase.cpp │ ├── DecklinkBase.h │ ├── DecklinkInput.cpp │ ├── DecklinkInput.hpp │ ├── DecklinkOutput.cpp │ ├── DecklinkOutput.hpp │ ├── LICENSE.decklink-sdk │ ├── OBSVideoFrame.cpp │ ├── OBSVideoFrame.h │ ├── audio-repack.c │ ├── audio-repack.h │ ├── audio-repack.hpp │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── const.h │ ├── 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 │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lt-LT.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sq-AL.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── decklink-device-discovery.cpp │ ├── decklink-device-discovery.hpp │ ├── decklink-device-instance.cpp │ ├── decklink-device-instance.hpp │ ├── decklink-device-mode.cpp │ ├── decklink-device-mode.hpp │ ├── decklink-device.cpp │ ├── decklink-device.hpp │ ├── decklink-devices.cpp │ ├── decklink-devices.hpp │ ├── decklink-output.cpp │ ├── decklink-source.cpp │ ├── linux │ │ ├── decklink-sdk │ │ │ ├── .clang-format │ │ │ ├── DeckLinkAPI.h │ │ │ ├── DeckLinkAPIConfiguration.h │ │ │ ├── DeckLinkAPIConfiguration_v10_11.h │ │ │ ├── DeckLinkAPIConfiguration_v10_2.h │ │ │ ├── DeckLinkAPIConfiguration_v10_4.h │ │ │ ├── DeckLinkAPIConfiguration_v10_5.h │ │ │ ├── DeckLinkAPIConfiguration_v10_9.h │ │ │ ├── DeckLinkAPIDeckControl.h │ │ │ ├── DeckLinkAPIDiscovery.h │ │ │ ├── DeckLinkAPIDispatch.cpp │ │ │ ├── DeckLinkAPIDispatch_v10_11.cpp │ │ │ ├── DeckLinkAPIDispatch_v10_8.cpp │ │ │ ├── DeckLinkAPIDispatch_v7_6.cpp │ │ │ ├── DeckLinkAPIDispatch_v8_0.cpp │ │ │ ├── DeckLinkAPIModes.h │ │ │ ├── DeckLinkAPITypes.h │ │ │ ├── DeckLinkAPIVersion.h │ │ │ ├── DeckLinkAPIVideoEncoderInput_v10_11.h │ │ │ ├── DeckLinkAPIVideoInput_v10_11.h │ │ │ ├── DeckLinkAPIVideoInput_v11_4.h │ │ │ ├── DeckLinkAPIVideoInput_v11_5_1.h │ │ │ ├── DeckLinkAPIVideoOutput_v10_11.h │ │ │ ├── DeckLinkAPIVideoOutput_v11_4.h │ │ │ ├── DeckLinkAPI_v10_11.h │ │ │ ├── DeckLinkAPI_v10_2.h │ │ │ ├── DeckLinkAPI_v10_4.h │ │ │ ├── DeckLinkAPI_v10_5.h │ │ │ ├── DeckLinkAPI_v10_6.h │ │ │ ├── DeckLinkAPI_v10_9.h │ │ │ ├── DeckLinkAPI_v11_5.h │ │ │ ├── DeckLinkAPI_v11_5_1.h │ │ │ ├── DeckLinkAPI_v7_1.h │ │ │ ├── DeckLinkAPI_v7_3.h │ │ │ ├── DeckLinkAPI_v7_6.h │ │ │ ├── DeckLinkAPI_v7_9.h │ │ │ ├── DeckLinkAPI_v8_0.h │ │ │ ├── DeckLinkAPI_v8_1.h │ │ │ ├── DeckLinkAPI_v9_2.h │ │ │ ├── DeckLinkAPI_v9_9.h │ │ │ └── LinuxCOM.h │ │ └── platform.cpp │ ├── mac │ │ ├── decklink-sdk │ │ │ ├── .clang-format │ │ │ ├── DeckLinkAPI.h │ │ │ ├── DeckLinkAPIConfiguration.h │ │ │ ├── DeckLinkAPIConfiguration_v10_11.h │ │ │ ├── DeckLinkAPIConfiguration_v10_2.h │ │ │ ├── DeckLinkAPIConfiguration_v10_4.h │ │ │ ├── DeckLinkAPIConfiguration_v10_5.h │ │ │ ├── DeckLinkAPIConfiguration_v10_9.h │ │ │ ├── DeckLinkAPIDeckControl.h │ │ │ ├── DeckLinkAPIDiscovery.h │ │ │ ├── DeckLinkAPIDispatch.cpp │ │ │ ├── DeckLinkAPIDispatch_v10_11.cpp │ │ │ ├── DeckLinkAPIDispatch_v10_8.cpp │ │ │ ├── DeckLinkAPIDispatch_v7_6.cpp │ │ │ ├── DeckLinkAPIDispatch_v8_0.cpp │ │ │ ├── DeckLinkAPIModes.h │ │ │ ├── DeckLinkAPIStreaming.h │ │ │ ├── DeckLinkAPIStreaming_v10_11.h │ │ │ ├── DeckLinkAPITypes.h │ │ │ ├── DeckLinkAPIVersion.h │ │ │ ├── DeckLinkAPIVideoEncoderInput_v10_11.h │ │ │ ├── DeckLinkAPIVideoInput_v10_11.h │ │ │ ├── DeckLinkAPIVideoInput_v11_4.h │ │ │ ├── DeckLinkAPIVideoInput_v11_5_1.h │ │ │ ├── DeckLinkAPIVideoOutput_v10_11.h │ │ │ ├── DeckLinkAPIVideoOutput_v11_4.h │ │ │ ├── DeckLinkAPI_v10_11.h │ │ │ ├── DeckLinkAPI_v10_2.h │ │ │ ├── DeckLinkAPI_v10_4.h │ │ │ ├── DeckLinkAPI_v10_5.h │ │ │ ├── DeckLinkAPI_v10_6.h │ │ │ ├── DeckLinkAPI_v10_9.h │ │ │ ├── DeckLinkAPI_v11_5.h │ │ │ ├── DeckLinkAPI_v11_5_1.h │ │ │ ├── DeckLinkAPI_v7_1.h │ │ │ ├── DeckLinkAPI_v7_3.h │ │ │ ├── DeckLinkAPI_v7_6.h │ │ │ ├── DeckLinkAPI_v7_9.h │ │ │ ├── DeckLinkAPI_v8_0.h │ │ │ ├── DeckLinkAPI_v8_1.h │ │ │ ├── DeckLinkAPI_v9_2.h │ │ │ └── DeckLinkAPI_v9_9.h │ │ └── platform.cpp │ ├── platform.hpp │ ├── plugin-main.cpp │ ├── util.cpp │ ├── util.hpp │ └── win │ │ ├── decklink-sdk │ │ ├── DeckLinkAPI.idl │ │ ├── DeckLinkAPIConfiguration.idl │ │ ├── DeckLinkAPIDeckControl.idl │ │ ├── DeckLinkAPIDiscovery.idl │ │ ├── DeckLinkAPIModes.idl │ │ ├── DeckLinkAPIStreaming.idl │ │ ├── DeckLinkAPIStreaming_v10_8.idl │ │ ├── DeckLinkAPITypes.idl │ │ ├── DeckLinkAPIVersion.h │ │ ├── DeckLinkAPI_v10_11.idl │ │ ├── DeckLinkAPI_v10_2.idl │ │ ├── DeckLinkAPI_v10_4.idl │ │ ├── DeckLinkAPI_v10_5.idl │ │ ├── DeckLinkAPI_v10_6.idl │ │ ├── DeckLinkAPI_v10_8.idl │ │ ├── DeckLinkAPI_v10_9.idl │ │ ├── DeckLinkAPI_v11_4.idl │ │ ├── DeckLinkAPI_v11_5.idl │ │ ├── DeckLinkAPI_v11_5_1.idl │ │ ├── DeckLinkAPI_v7_1.idl │ │ ├── DeckLinkAPI_v7_3.idl │ │ ├── DeckLinkAPI_v7_6.idl │ │ ├── DeckLinkAPI_v7_9.idl │ │ ├── DeckLinkAPI_v8_0.idl │ │ ├── DeckLinkAPI_v8_1.idl │ │ ├── DeckLinkAPI_v9_2.idl │ │ └── DeckLinkAPI_v9_9.idl │ │ └── platform.cpp ├── image-source │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── color-source.c │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── 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 │ │ │ ├── pa-IN.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── image-source.c │ ├── obs-slideshow-mk2.c │ └── obs-slideshow.c ├── linux-alsa │ ├── CMakeLists.txt │ ├── alsa-input.c │ ├── cmake │ │ └── legacy.cmake │ ├── 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 │ │ │ ├── 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 │ │ │ ├── lt-LT.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ └── linux-alsa.c ├── linux-capture │ ├── CMakeLists.txt │ ├── README │ ├── cmake │ │ └── legacy.cmake │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lo-LA.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── linux-capture.c │ ├── xcomposite-input.c │ ├── xcomposite-input.h │ ├── xcursor-xcb.c │ ├── xcursor-xcb.h │ ├── xhelpers.c │ ├── xhelpers.h │ └── xshm-input.c ├── linux-jack │ ├── CMakeLists.txt │ ├── cmake │ │ └── legacy.cmake │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── 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 │ ├── jack-input.c │ ├── jack-wrapper.c │ ├── jack-wrapper.h │ └── linux-jack.c ├── linux-pipewire │ ├── CMakeLists.txt │ ├── camera-portal.c │ ├── camera-portal.h │ ├── cmake │ │ └── legacy.cmake │ ├── data │ │ ├── .gitkeep │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── be-BY.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-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 │ │ │ ├── ta-IN.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── formats.c │ ├── formats.h │ ├── linux-pipewire.c │ ├── pipewire.c │ ├── pipewire.h │ ├── portal.c │ ├── portal.h │ ├── screencast-portal.c │ └── screencast-portal.h ├── linux-pulseaudio │ ├── CMakeLists.txt │ ├── cmake │ │ └── legacy.cmake │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── 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 │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── linux-pulseaudio.c │ ├── pulse-input.c │ ├── pulse-wrapper.c │ └── pulse-wrapper.h ├── linux-v4l2 │ ├── CMakeLists.txt │ ├── cmake │ │ └── legacy.cmake │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── 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 │ ├── linux-v4l2.c │ ├── v4l2-controls.c │ ├── v4l2-controls.h │ ├── v4l2-decoder.c │ ├── v4l2-decoder.h │ ├── v4l2-helpers.c │ ├── v4l2-helpers.h │ ├── v4l2-input.c │ ├── v4l2-output.c │ ├── v4l2-udev.c │ └── v4l2-udev.h ├── mac-avcapture │ ├── CMakeLists.txt │ ├── OBSAVCapture.h │ ├── OBSAVCapture.m │ ├── OBSAVCapturePresetInfo.h │ ├── OBSAVCapturePresetInfo.m │ ├── cmake │ │ ├── legacy.cmake │ │ └── macos │ │ │ └── Info.plist.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── 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 │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── legacy │ │ ├── CMakeLists.txt │ │ ├── av-capture.mm │ │ ├── left-right.hpp │ │ └── scope-guard.hpp │ ├── plugin-main.h │ ├── plugin-main.m │ ├── plugin-properties.h │ └── plugin-properties.m ├── mac-capture │ ├── CMakeLists.txt │ ├── audio-device-enum.c │ ├── audio-device-enum.h │ ├── cmake │ │ ├── legacy.cmake │ │ └── macos │ │ │ └── Info.plist.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── 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 │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── mac-audio.c │ ├── mac-display-capture.m │ ├── mac-sck-audio-capture.m │ ├── mac-sck-common.h │ ├── mac-sck-common.m │ ├── mac-sck-video-capture.m │ ├── mac-window-capture.m │ ├── plugin-main.c │ ├── window-utils.h │ └── window-utils.m ├── mac-syphon │ ├── CMakeLists.txt │ ├── SyphonOBSClient.h │ ├── SyphonOBSClient.m │ ├── cmake │ │ ├── legacy.cmake │ │ └── macos │ │ │ └── Info.plist.in │ ├── data │ │ ├── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ └── syphon_license.txt │ ├── plugin-main.c │ └── syphon.m ├── mac-videotoolbox │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ └── macos │ │ │ └── Info.plist.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lt-LT.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ └── encoder.c ├── mac-virtualcam │ ├── CMakeLists.txt │ ├── data │ │ └── locale │ │ │ └── en-US.ini │ └── src │ │ ├── camera-extension │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── OBSCameraDeviceSource.swift │ │ ├── OBSCameraProviderSource.swift │ │ ├── OBSCameraStreamSink.swift │ │ ├── OBSCameraStreamSource.swift │ │ ├── README.md │ │ ├── build-slobs-cameraextension.sh │ │ ├── cmake │ │ │ └── macos │ │ │ │ ├── Info.plist.in │ │ │ │ ├── entitlements.plist │ │ │ │ └── slobs-entitlements.plist │ │ ├── main.swift │ │ └── slobs-CMakeLists.cmake │ │ ├── common │ │ ├── MachProtocol.h │ │ └── data │ │ │ └── placeholder.png │ │ ├── dal-plugin │ │ ├── CMSampleBufferUtils.h │ │ ├── CMSampleBufferUtils.mm │ │ ├── CMakeLists.txt │ │ ├── Defines.h │ │ ├── Logging.h │ │ ├── OBSDALDevice.h │ │ ├── OBSDALDevice.mm │ │ ├── OBSDALMachClient.h │ │ ├── OBSDALMachClient.mm │ │ ├── OBSDALObjectStore.h │ │ ├── OBSDALObjectStore.mm │ │ ├── OBSDALPlugIn.h │ │ ├── OBSDALPlugIn.mm │ │ ├── OBSDALPlugInInterface.h │ │ ├── OBSDALPlugInInterface.mm │ │ ├── OBSDALPlugInMain.mm │ │ ├── OBSDALStream.h │ │ ├── OBSDALStream.mm │ │ ├── cmake │ │ │ └── macos │ │ │ │ └── Info.plist.in │ │ └── placeholder.png │ │ └── obs-plugin │ │ ├── CMakeLists.txt │ │ ├── Defines.h │ │ ├── OBSDALMachServer.h │ │ ├── OBSDALMachServer.mm │ │ ├── cmake │ │ └── macos │ │ │ └── Info.plist.in │ │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── an-ES.ini │ │ │ ├── ar-SA.ini │ │ │ ├── az-AZ.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── tr-TR.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ └── plugin-main.mm ├── obs-ffmpeg │ ├── CMakeLists.txt │ ├── cmake │ │ ├── dependencies.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── is-IS.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── ffmpeg-mux │ │ ├── CMakeLists.txt │ │ ├── ffmpeg-mux.c │ │ └── ffmpeg-mux.h │ ├── obs-amf-test │ │ ├── CMakeLists.txt │ │ └── obs-amf-test.cpp │ ├── obs-ffmpeg-audio-encoders.c │ ├── obs-ffmpeg-av1.c │ ├── obs-ffmpeg-compat.h │ ├── obs-ffmpeg-config.h.in │ ├── obs-ffmpeg-formats.h │ ├── obs-ffmpeg-hls-mux.c │ ├── obs-ffmpeg-logging.c │ ├── obs-ffmpeg-mpegts.c │ ├── obs-ffmpeg-mux.c │ ├── obs-ffmpeg-mux.h │ ├── obs-ffmpeg-nvenc.c │ ├── obs-ffmpeg-openh264.c │ ├── obs-ffmpeg-output.c │ ├── obs-ffmpeg-output.h │ ├── obs-ffmpeg-rist.h │ ├── obs-ffmpeg-source.c │ ├── obs-ffmpeg-srt.h │ ├── obs-ffmpeg-url.h │ ├── obs-ffmpeg-vaapi.c │ ├── obs-ffmpeg-video-encoders.c │ ├── obs-ffmpeg-video-encoders.h │ ├── obs-ffmpeg.c │ ├── texture-amf-opts.hpp │ ├── texture-amf.cpp │ ├── vaapi-utils.c │ └── vaapi-utils.h ├── obs-filters │ ├── CMakeLists.txt │ ├── async-delay-filter.c │ ├── chroma-key-filter.c │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ ├── nvidia.cmake │ │ ├── rnnoise.cmake │ │ ├── speexdsp.cmake │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── color-correction-filter.c │ ├── color-grade-filter.c │ ├── color-key-filter.c │ ├── compressor-filter.c │ ├── crop-filter.c │ ├── data │ │ ├── LUTs │ │ │ ├── black_and_white.png │ │ │ ├── grayscale.cube │ │ │ ├── grayscale.png │ │ │ ├── invert.png │ │ │ ├── original.cube │ │ │ ├── original.png │ │ │ ├── posterize.png │ │ │ ├── red_isolated.png │ │ │ └── teal_lows_orange_highs.png │ │ ├── blend_add_filter.effect │ │ ├── blend_mul_filter.effect │ │ ├── blend_sub_filter.effect │ │ ├── chroma_key_filter.effect │ │ ├── chroma_key_filter_v2.effect │ │ ├── color.effect │ │ ├── color_correction_filter.effect │ │ ├── color_grade_filter.effect │ │ ├── color_key_filter.effect │ │ ├── color_key_filter_v2.effect │ │ ├── crop_filter.effect │ │ ├── hdr_tonemap_filter.effect │ │ ├── locale │ │ │ ├── af-ZA.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 │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ ├── luma_key_filter.effect │ │ ├── luma_key_filter_v2.effect │ │ ├── mask_alpha_filter.effect │ │ ├── mask_color_filter.effect │ │ ├── rtx_greenscreen.effect │ │ └── sharpness.effect │ ├── eq-filter.c │ ├── expander-filter.c │ ├── gain-filter.c │ ├── gpu-delay.c │ ├── hdr-tonemap-filter.c │ ├── invert-audio-polarity.c │ ├── limiter-filter.c │ ├── luma-key-filter.c │ ├── mask-filter.c │ ├── noise-gate-filter.c │ ├── noise-suppress-filter.c │ ├── nvafx-load.h │ ├── nvidia-greenscreen-filter.c │ ├── nvvfx-load.h │ ├── obs-filters-config.h.in │ ├── obs-filters.c │ ├── rnnoise │ │ ├── .clang-format │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── README │ │ ├── include │ │ │ └── rnnoise.h │ │ └── src │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── celt_lpc.c │ │ │ ├── celt_lpc.h │ │ │ ├── common.h │ │ │ ├── compile.sh │ │ │ ├── denoise.c │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── opus_types.h │ │ │ ├── pitch.c │ │ │ ├── pitch.h │ │ │ ├── rnn.c │ │ │ ├── rnn.h │ │ │ ├── rnn_data.c │ │ │ ├── rnn_data.h │ │ │ ├── rnn_reader.c │ │ │ ├── rnn_train.py │ │ │ └── tansig_table.h │ ├── scale-filter.c │ ├── scroll-filter.c │ └── sharpness-filter.c ├── obs-libfdk │ ├── CMakeLists.txt │ ├── cmake │ │ └── legacy.cmake │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ └── obs-libfdk.c ├── obs-nvenc │ ├── CMakeLists.txt │ ├── cmake │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── cuda-helpers.c │ ├── cuda-helpers.h │ ├── data │ │ └── locale │ │ │ ├── ar-SA.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hu-HU.ini │ │ │ ├── id-ID.ini │ │ │ ├── is-IS.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 │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ru-RU.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sv-SE.ini │ │ │ ├── th-TH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── nvenc-compat.c │ ├── nvenc-cuda.c │ ├── nvenc-d3d11.c │ ├── nvenc-helpers.c │ ├── nvenc-helpers.h │ ├── nvenc-internal.h │ ├── nvenc-opengl.c │ ├── nvenc-opts-parser.c │ ├── nvenc-properties.c │ ├── nvenc.c │ ├── obs-nvenc-test │ │ ├── CMakeLists.txt │ │ └── obs-nvenc-test.cpp │ ├── obs-nvenc.c │ └── obs-nvenc.h ├── obs-outputs │ ├── CMakeLists.txt │ ├── cmake │ │ ├── ftl.cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── is-IS.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── flv-mux.c │ ├── flv-mux.h │ ├── flv-output.c │ ├── ftl-stream.c │ ├── librtmp │ │ ├── .clang-format │ │ ├── COPYING │ │ ├── amf.c │ │ ├── amf.h │ │ ├── bytes.h │ │ ├── cencode.c │ │ ├── cencode.h │ │ ├── handshake.h │ │ ├── hashswf.c │ │ ├── http.h │ │ ├── log.c │ │ ├── log.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── parseurl.c │ │ ├── rtmp.c │ │ ├── rtmp.h │ │ └── rtmp_sys.h │ ├── mp4-mux-internal.h │ ├── mp4-mux.c │ ├── mp4-mux.h │ ├── mp4-output.c │ ├── net-if.c │ ├── net-if.h │ ├── null-output.c │ ├── obs-output-ver.h │ ├── obs-outputs.c │ ├── rtmp-av1.c │ ├── rtmp-av1.h │ ├── rtmp-helpers.h │ ├── rtmp-hevc.c │ ├── rtmp-hevc.h │ ├── rtmp-stream.c │ ├── rtmp-stream.h │ ├── rtmp-windows.c │ └── utils.h ├── obs-qsv11 │ ├── CMakeLists.txt │ ├── QSV11-License-Clarification-Email.txt │ ├── QSV_Encoder.cpp │ ├── QSV_Encoder.h │ ├── QSV_Encoder_Internal.cpp │ ├── QSV_Encoder_Internal.h │ ├── bits │ │ ├── .clang-format │ │ ├── linux_defs.h │ │ └── windows_defs.h │ ├── cmake │ │ ├── legacy.cmake │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── common_directx11.cpp │ ├── common_directx11.h │ ├── common_utils.cpp │ ├── common_utils.h │ ├── common_utils_linux.cpp │ ├── common_utils_windows.cpp │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── is-IS.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── obs-qsv-test │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ └── legacy.cmake │ │ └── obs-qsv-test.cpp │ ├── obs-qsv11-LICENSE.txt │ ├── obs-qsv11-plugin-main.c │ └── obs-qsv11.c ├── obs-text │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── 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 │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ └── gdiplus │ │ └── obs-text.cpp ├── obs-transitions │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ ├── fade_to_color_transition.effect │ │ ├── fade_transition.effect │ │ ├── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── eo-UY.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ ├── luma_wipe_transition.effect │ │ ├── luma_wipes │ │ │ ├── barndoor-botleft.png │ │ │ ├── barndoor-h.png │ │ │ ├── barndoor-topleft.png │ │ │ ├── barndoor-v.png │ │ │ ├── blinds-h.png │ │ │ ├── box-botleft.png │ │ │ ├── box-botright.png │ │ │ ├── box-topleft.png │ │ │ ├── box-topright.png │ │ │ ├── burst.png │ │ │ ├── checkerboard-small.png │ │ │ ├── circles.png │ │ │ ├── clock.png │ │ │ ├── cloud.png │ │ │ ├── curtain.png │ │ │ ├── fan.png │ │ │ ├── fractal.png │ │ │ ├── iris.png │ │ │ ├── linear-h.png │ │ │ ├── linear-topleft.png │ │ │ ├── linear-topright.png │ │ │ ├── linear-v.png │ │ │ ├── parallel-zigzag-h.png │ │ │ ├── parallel-zigzag-v.png │ │ │ ├── sinus9.png │ │ │ ├── spiral.png │ │ │ ├── square.png │ │ │ ├── squares.png │ │ │ ├── stripes.png │ │ │ ├── strips-h.png │ │ │ ├── strips-v.png │ │ │ ├── watercolor.png │ │ │ ├── wipes.json │ │ │ ├── zigzag-h.png │ │ │ └── zigzag-v.png │ │ ├── shuffle_transition.effect │ │ ├── slide_transition.effect │ │ ├── stinger_matte_transition.effect │ │ └── swipe_transition.effect │ ├── easings.h │ ├── obs-transitions.c │ ├── transition-cut.c │ ├── transition-fade-to-color.c │ ├── transition-fade.c │ ├── transition-luma-wipe.c │ ├── transition-shuffle.c │ ├── transition-slide.c │ ├── transition-stinger.c │ └── transition-swipe.c ├── obs-vst │ ├── VSTPlugin.cpp │ ├── cmake │ │ ├── legacy.cmake │ │ └── macos │ │ │ └── Info.plist.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── en-GB.ini │ │ │ ├── kaa.ini │ │ │ ├── si-LK.ini │ │ │ └── ug-CN.ini │ ├── headers │ │ └── VSTPlugin.h │ └── obs-vst.cpp ├── obs-webrtc │ ├── CMakeLists.txt │ ├── 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 │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fr-FR.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 │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── tr-TR.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── obs-webrtc.cpp │ ├── whip-output.cpp │ ├── whip-output.h │ ├── whip-service.cpp │ ├── whip-service.h │ └── whip-utils.h ├── obs-x264 │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ ├── windows │ │ │ └── obs-module.rc.in │ │ └── x264-test.cmake │ ├── data │ │ └── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lv-LV.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── obs-x264-plugin-main.c │ ├── obs-x264-test.c │ └── obs-x264.c ├── oss-audio │ ├── CMakeLists.txt │ ├── cmake │ │ └── legacy.cmake │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tr-TR.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── oss-audio.c │ ├── oss-input.c │ └── oss-platform.h.in ├── rtmp-services │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ ├── locale │ │ │ ├── af-ZA.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 │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── ur-PK.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ ├── package.json │ │ ├── schema │ │ │ ├── package-schema.json │ │ │ └── service-schema-v5.json │ │ └── services.json │ ├── lookup-config.h.in │ ├── rtmp-common.c │ ├── rtmp-custom.c │ ├── rtmp-format-ver.h │ ├── rtmp-services-main.c │ └── service-specific │ │ ├── dacast.c │ │ ├── dacast.h │ │ ├── nimotv.c │ │ ├── nimotv.h │ │ ├── showroom.c │ │ ├── showroom.h │ │ ├── twitch.c │ │ ├── twitch.h │ │ ├── younow.c │ │ └── younow.h ├── sndio │ ├── CMakeLists.txt │ ├── cmake │ │ └── legacy.cmake │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── be-BY.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── th-TH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── sndio-input.c │ ├── sndio-input.h │ └── sndio.c ├── text-freetype2 │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ ├── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── eo-UY.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ └── text_default.effect │ ├── find-font-cocoa.m │ ├── find-font-iconv.c │ ├── find-font-unix.c │ ├── find-font-windows.c │ ├── find-font.c │ ├── find-font.h │ ├── obs-convenience.c │ ├── obs-convenience.h │ ├── text-freetype2.c │ ├── text-freetype2.h │ └── text-functionality.c ├── vlc-video │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ ├── macos │ │ │ └── Info.plist.in │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ └── locale │ │ │ ├── af-ZA.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── lt-LT.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── oc-FR.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ ├── vlc-video-plugin.c │ ├── vlc-video-plugin.h │ └── vlc-video-source.c ├── win-capture │ ├── CMakeLists.txt │ ├── app-helpers.c │ ├── app-helpers.h │ ├── audio-helpers.c │ ├── audio-helpers.h │ ├── cmake │ │ ├── 32bit-build.cmake │ │ └── legacy.cmake │ ├── compat-config.h.in │ ├── compat-format-ver.h │ ├── compat-helpers.c │ ├── compat-helpers.h │ ├── cursor-capture.c │ ├── cursor-capture.h │ ├── d3d8-api │ │ ├── .clang-format │ │ ├── d3d8.h │ │ ├── d3d8caps.h │ │ └── d3d8types.h │ ├── data │ │ ├── compatibility.json │ │ ├── locale │ │ │ ├── af-ZA.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 │ │ │ ├── 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 │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ ├── package.json │ │ └── schema │ │ │ ├── compatibility-schema-v1.json │ │ │ └── package-schema.json │ ├── dc-capture.c │ ├── dc-capture.h │ ├── duplicator-monitor-capture.c │ ├── game-capture-file-init.c │ ├── game-capture.c │ ├── get-graphics-offsets │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ ├── 32bit-build.cmake │ │ │ ├── 32bit.cmake │ │ │ └── legacy.cmake │ │ ├── d3d8-offsets.cpp │ │ ├── d3d9-offsets.cpp │ │ ├── ddraw-offsets.cpp │ │ ├── dxgi-offsets.cpp │ │ ├── get-graphics-offsets.c │ │ └── get-graphics-offsets.h │ ├── graphics-hook-info.h │ ├── graphics-hook-ver.h │ ├── graphics-hook │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ ├── 32bit-build.cmake │ │ │ ├── 32bit.cmake │ │ │ └── legacy.cmake │ │ ├── d3d10-capture.cpp │ │ ├── d3d11-capture.cpp │ │ ├── d3d12-capture.cpp │ │ ├── d3d8-capture.cpp │ │ ├── d3d9-capture.cpp │ │ ├── d3d9-patches.hpp │ │ ├── dxgi-capture.cpp │ │ ├── dxgi-helpers.hpp │ │ ├── gl-capture.c │ │ ├── gl-decs.h │ │ ├── graphics-hook-config.h.in │ │ ├── graphics-hook.c │ │ ├── graphics-hook.h │ │ ├── graphics-hook.rc │ │ ├── obs-vulkan32.json │ │ ├── obs-vulkan64.json │ │ ├── vulkan-capture.c │ │ └── vulkan-capture.h │ ├── hook-helpers.h │ ├── inject-helper │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ ├── 32bit-build.cmake │ │ │ ├── 32bit.cmake │ │ │ └── legacy.cmake │ │ └── inject-helper.c │ ├── inject-library.c │ ├── inject-library.h │ ├── load-graphics-offsets.c │ ├── monitor-capture.c │ ├── nt-stuff.c │ ├── nt-stuff.h │ ├── plugin-main.c │ ├── screen-capture.c │ └── window-capture.c ├── win-dshow │ ├── CMakeLists.txt │ ├── cmake │ │ ├── legacy.cmake │ │ ├── libdshowcapture.cmake │ │ └── windows │ │ │ └── obs-module.rc.in │ ├── data │ │ ├── locale │ │ │ ├── af-ZA.ini │ │ │ ├── an-ES.ini │ │ │ ├── ar-SA.ini │ │ │ ├── ba-RU.ini │ │ │ ├── be-BY.ini │ │ │ ├── bg-BG.ini │ │ │ ├── bn-BD.ini │ │ │ ├── ca-ES.ini │ │ │ ├── cs-CZ.ini │ │ │ ├── da-DK.ini │ │ │ ├── de-DE.ini │ │ │ ├── el-GR.ini │ │ │ ├── en-GB.ini │ │ │ ├── en-US.ini │ │ │ ├── es-ES.ini │ │ │ ├── et-EE.ini │ │ │ ├── eu-ES.ini │ │ │ ├── fa-IR.ini │ │ │ ├── fi-FI.ini │ │ │ ├── fil-PH.ini │ │ │ ├── fr-FR.ini │ │ │ ├── gd-GB.ini │ │ │ ├── gl-ES.ini │ │ │ ├── he-IL.ini │ │ │ ├── hi-IN.ini │ │ │ ├── hr-HR.ini │ │ │ ├── hu-HU.ini │ │ │ ├── hy-AM.ini │ │ │ ├── id-ID.ini │ │ │ ├── it-IT.ini │ │ │ ├── ja-JP.ini │ │ │ ├── ka-GE.ini │ │ │ ├── kaa.ini │ │ │ ├── kab-KAB.ini │ │ │ ├── kmr-TR.ini │ │ │ ├── ko-KR.ini │ │ │ ├── mn-MN.ini │ │ │ ├── ms-MY.ini │ │ │ ├── nb-NO.ini │ │ │ ├── nl-NL.ini │ │ │ ├── nn-NO.ini │ │ │ ├── pl-PL.ini │ │ │ ├── pt-BR.ini │ │ │ ├── pt-PT.ini │ │ │ ├── ro-RO.ini │ │ │ ├── ru-RU.ini │ │ │ ├── si-LK.ini │ │ │ ├── sk-SK.ini │ │ │ ├── sl-SI.ini │ │ │ ├── sr-CS.ini │ │ │ ├── sr-SP.ini │ │ │ ├── sv-SE.ini │ │ │ ├── szl-PL.ini │ │ │ ├── ta-IN.ini │ │ │ ├── th-TH.ini │ │ │ ├── tl-PH.ini │ │ │ ├── tr-TR.ini │ │ │ ├── tt-RU.ini │ │ │ ├── ug-CN.ini │ │ │ ├── uk-UA.ini │ │ │ ├── vi-VN.ini │ │ │ ├── zh-CN.ini │ │ │ └── zh-TW.ini │ │ ├── placeholder.png │ │ └── sl-placeholder.png │ ├── dshow-plugin.cpp │ ├── encode-dstr.hpp │ ├── ffmpeg-decode.c │ ├── ffmpeg-decode.h │ ├── shared-memory-queue.c │ ├── shared-memory-queue.h │ ├── tiny-nv12-scale.c │ ├── tiny-nv12-scale.h │ ├── virtualcam-module │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ ├── 32bit-build.cmake │ │ │ ├── 32bit.cmake │ │ │ ├── legacy.cmake │ │ │ └── windows │ │ │ │ ├── obs-module.rc.in │ │ │ │ ├── virtualcam-module32.def │ │ │ │ └── virtualcam-module64.def │ │ ├── placeholder.cpp │ │ ├── sleepto.c │ │ ├── sleepto.h │ │ ├── virtualcam-filter.cpp │ │ ├── virtualcam-filter.hpp │ │ ├── virtualcam-guid.h.in │ │ ├── virtualcam-install.bat.in │ │ ├── virtualcam-module.cpp │ │ ├── virtualcam-module.def.in │ │ └── virtualcam-uninstall.bat.in │ ├── virtualcam.c │ ├── win-dshow-encoder.cpp │ └── win-dshow.cpp └── win-wasapi │ ├── CMakeLists.txt │ ├── cmake │ ├── legacy.cmake │ └── windows │ │ └── obs-module.rc.in │ ├── data │ └── locale │ │ ├── af-ZA.ini │ │ ├── an-ES.ini │ │ ├── ar-SA.ini │ │ ├── ba-RU.ini │ │ ├── be-BY.ini │ │ ├── bg-BG.ini │ │ ├── bn-BD.ini │ │ ├── ca-ES.ini │ │ ├── cs-CZ.ini │ │ ├── da-DK.ini │ │ ├── de-DE.ini │ │ ├── el-GR.ini │ │ ├── en-GB.ini │ │ ├── en-US.ini │ │ ├── es-ES.ini │ │ ├── et-EE.ini │ │ ├── eu-ES.ini │ │ ├── fa-IR.ini │ │ ├── fi-FI.ini │ │ ├── fil-PH.ini │ │ ├── fr-FR.ini │ │ ├── gd-GB.ini │ │ ├── gl-ES.ini │ │ ├── he-IL.ini │ │ ├── hi-IN.ini │ │ ├── hr-HR.ini │ │ ├── hu-HU.ini │ │ ├── hy-AM.ini │ │ ├── id-ID.ini │ │ ├── is-IS.ini │ │ ├── it-IT.ini │ │ ├── ja-JP.ini │ │ ├── ka-GE.ini │ │ ├── kaa.ini │ │ ├── kab-KAB.ini │ │ ├── kmr-TR.ini │ │ ├── ko-KR.ini │ │ ├── lt-LT.ini │ │ ├── mn-MN.ini │ │ ├── ms-MY.ini │ │ ├── nb-NO.ini │ │ ├── nl-NL.ini │ │ ├── nn-NO.ini │ │ ├── pl-PL.ini │ │ ├── pt-BR.ini │ │ ├── pt-PT.ini │ │ ├── ro-RO.ini │ │ ├── ru-RU.ini │ │ ├── si-LK.ini │ │ ├── sk-SK.ini │ │ ├── sl-SI.ini │ │ ├── sr-CS.ini │ │ ├── sr-SP.ini │ │ ├── sv-SE.ini │ │ ├── szl-PL.ini │ │ ├── ta-IN.ini │ │ ├── th-TH.ini │ │ ├── tl-PH.ini │ │ ├── tr-TR.ini │ │ ├── tt-RU.ini │ │ ├── ug-CN.ini │ │ ├── uk-UA.ini │ │ ├── ur-PK.ini │ │ ├── vi-VN.ini │ │ ├── zh-CN.ini │ │ └── zh-TW.ini │ ├── enum-wasapi.cpp │ ├── enum-wasapi.hpp │ ├── plugin-main.cpp │ ├── wasapi-notify.cpp │ ├── wasapi-notify.hpp │ └── win-wasapi.cpp ├── shared └── bpm │ ├── CMakeLists.txt │ ├── bpm-internal.h │ ├── bpm.c │ └── bpm.h ├── slobs_CI ├── 01_install_dependencies.sh ├── build-script-osx.sh ├── build_support_macos.sh ├── check_libraries.cmake ├── macos-deps │ ├── create-libmediasoupclient-package.zsh │ ├── create-obs-deps-package.zsh │ └── create-webrtc-package.zsh ├── sentry-osx.py ├── win-build-grpc.cmd ├── win-build.cmd └── win-install-dependency.cmd └── test ├── CMakeLists.txt ├── cmocka ├── CMakeLists.txt ├── test_bitstream.c ├── test_darray.c ├── test_os_path.c └── test_serializer.c ├── osx ├── CMakeLists.txt └── test.mm ├── test-input ├── CMakeLists.txt ├── cmake │ └── legacy.cmake ├── data │ ├── draw.effect │ └── test.effect ├── sync-async-source.c ├── sync-audio-buffering.c ├── sync-pair-aud.c ├── sync-pair-vid.c ├── test-filter.c ├── test-input.c ├── test-random.c └── test-sinewave.c └── win ├── CMakeLists.txt └── test.cpp /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.clang-format -------------------------------------------------------------------------------- /.cmake-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.cmake-format.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/scripts/.Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/scripts/.Aptfile -------------------------------------------------------------------------------- /.github/scripts/.Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/scripts/.Brewfile -------------------------------------------------------------------------------- /.github/scripts/.Wingetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/scripts/.Wingetfile -------------------------------------------------------------------------------- /.github/scripts/.build.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/scripts/.build.zsh -------------------------------------------------------------------------------- /.github/scripts/.package.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/scripts/.package.zsh -------------------------------------------------------------------------------- /.github/scripts/build-macos: -------------------------------------------------------------------------------- 1 | ./.build.zsh -------------------------------------------------------------------------------- /.github/scripts/build-ubuntu: -------------------------------------------------------------------------------- 1 | ./.build.zsh -------------------------------------------------------------------------------- /.github/scripts/check-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/scripts/check-cmake.sh -------------------------------------------------------------------------------- /.github/scripts/package-macos: -------------------------------------------------------------------------------- 1 | ./.package.zsh -------------------------------------------------------------------------------- /.github/scripts/package-ubuntu: -------------------------------------------------------------------------------- 1 | ./.package.zsh -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_error: -------------------------------------------------------------------------------- 1 | print -u2 -PR "::error::%F{1} ✖︎%f ${@}" 2 | -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_info: -------------------------------------------------------------------------------- 1 | print -PR "%F{4} =>%f %B${@}%b" 2 | -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_status: -------------------------------------------------------------------------------- 1 | print -PR "%F{2} >%f ${@}" 2 | -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_warning: -------------------------------------------------------------------------------- 1 | print -PR "::warning::%F{3} => ${@}%f" 2 | -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/mkcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/scripts/utils.zsh/mkcd -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pr-pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/workflows/pr-pull.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.mailmap -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/.swift-format -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/AUTHORS -------------------------------------------------------------------------------- /CI/macos/fix_deps_paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/CI/macos/fix_deps_paths.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/COC.rst -------------------------------------------------------------------------------- /COMMITMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/COMMITMENT -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/INSTALL -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/README.rst -------------------------------------------------------------------------------- /UI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/CMakeLists.txt -------------------------------------------------------------------------------- /UI/absolute-slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/absolute-slider.cpp -------------------------------------------------------------------------------- /UI/absolute-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/absolute-slider.hpp -------------------------------------------------------------------------------- /UI/adv-audio-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/adv-audio-control.cpp -------------------------------------------------------------------------------- /UI/adv-audio-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/adv-audio-control.hpp -------------------------------------------------------------------------------- /UI/api-interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/api-interface.cpp -------------------------------------------------------------------------------- /UI/audio-encoders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/audio-encoders.cpp -------------------------------------------------------------------------------- /UI/audio-encoders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/audio-encoders.hpp -------------------------------------------------------------------------------- /UI/auth-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-base.cpp -------------------------------------------------------------------------------- /UI/auth-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-base.hpp -------------------------------------------------------------------------------- /UI/auth-listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-listener.cpp -------------------------------------------------------------------------------- /UI/auth-listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-listener.hpp -------------------------------------------------------------------------------- /UI/auth-oauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-oauth.cpp -------------------------------------------------------------------------------- /UI/auth-oauth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-oauth.hpp -------------------------------------------------------------------------------- /UI/auth-restream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-restream.cpp -------------------------------------------------------------------------------- /UI/auth-restream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-restream.hpp -------------------------------------------------------------------------------- /UI/auth-twitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-twitch.cpp -------------------------------------------------------------------------------- /UI/auth-twitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-twitch.hpp -------------------------------------------------------------------------------- /UI/auth-youtube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-youtube.cpp -------------------------------------------------------------------------------- /UI/auth-youtube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/auth-youtube.hpp -------------------------------------------------------------------------------- /UI/balance-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/balance-slider.hpp -------------------------------------------------------------------------------- /UI/basic-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/basic-controls.cpp -------------------------------------------------------------------------------- /UI/basic-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/basic-controls.hpp -------------------------------------------------------------------------------- /UI/clickable-label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/clickable-label.hpp -------------------------------------------------------------------------------- /UI/cmake/feature-sparkle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/feature-sparkle.cmake -------------------------------------------------------------------------------- /UI/cmake/feature-twitch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/feature-twitch.cmake -------------------------------------------------------------------------------- /UI/cmake/feature-youtube.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/feature-youtube.cmake -------------------------------------------------------------------------------- /UI/cmake/legacy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/legacy.cmake -------------------------------------------------------------------------------- /UI/cmake/macos/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/macos/Info.plist.in -------------------------------------------------------------------------------- /UI/cmake/macos/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/macos/qt.conf -------------------------------------------------------------------------------- /UI/cmake/os-freebsd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/os-freebsd.cmake -------------------------------------------------------------------------------- /UI/cmake/os-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/os-linux.cmake -------------------------------------------------------------------------------- /UI/cmake/os-macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/os-macos.cmake -------------------------------------------------------------------------------- /UI/cmake/os-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/os-windows.cmake -------------------------------------------------------------------------------- /UI/cmake/ui-elements.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/ui-elements.cmake -------------------------------------------------------------------------------- /UI/cmake/ui-qt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/ui-qt.cmake -------------------------------------------------------------------------------- /UI/cmake/ui-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/ui-windows.cmake -------------------------------------------------------------------------------- /UI/cmake/windows/obs.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/windows/obs.manifest -------------------------------------------------------------------------------- /UI/cmake/windows/obs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/cmake/windows/obs.rc.in -------------------------------------------------------------------------------- /UI/context-bar-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/context-bar-controls.cpp -------------------------------------------------------------------------------- /UI/context-bar-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/context-bar-controls.hpp -------------------------------------------------------------------------------- /UI/data/OBSPublicRSAKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/OBSPublicRSAKey.pem -------------------------------------------------------------------------------- /UI/data/images/overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/images/overflow.png -------------------------------------------------------------------------------- /UI/data/license/gplv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/license/gplv2.txt -------------------------------------------------------------------------------- /UI/data/locale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale.ini -------------------------------------------------------------------------------- /UI/data/locale/af-ZA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/af-ZA.ini -------------------------------------------------------------------------------- /UI/data/locale/an-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/an-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/ar-SA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ar-SA.ini -------------------------------------------------------------------------------- /UI/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/az-AZ.ini -------------------------------------------------------------------------------- /UI/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ba-RU.ini -------------------------------------------------------------------------------- /UI/data/locale/be-BY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/be-BY.ini -------------------------------------------------------------------------------- /UI/data/locale/bem-ZM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/bem-ZM.ini -------------------------------------------------------------------------------- /UI/data/locale/bg-BG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/bg-BG.ini -------------------------------------------------------------------------------- /UI/data/locale/bn-BD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/bn-BD.ini -------------------------------------------------------------------------------- /UI/data/locale/ca-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ca-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/cs-CZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/cs-CZ.ini -------------------------------------------------------------------------------- /UI/data/locale/da-DK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/da-DK.ini -------------------------------------------------------------------------------- /UI/data/locale/de-DE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/de-DE.ini -------------------------------------------------------------------------------- /UI/data/locale/el-GR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/el-GR.ini -------------------------------------------------------------------------------- /UI/data/locale/en-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/en-GB.ini -------------------------------------------------------------------------------- /UI/data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/en-US.ini -------------------------------------------------------------------------------- /UI/data/locale/eo-UY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/eo-UY.ini -------------------------------------------------------------------------------- /UI/data/locale/es-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/es-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/et-EE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/et-EE.ini -------------------------------------------------------------------------------- /UI/data/locale/eu-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/eu-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/fa-IR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/fa-IR.ini -------------------------------------------------------------------------------- /UI/data/locale/fi-FI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/fi-FI.ini -------------------------------------------------------------------------------- /UI/data/locale/fil-PH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/fil-PH.ini -------------------------------------------------------------------------------- /UI/data/locale/fr-FR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/fr-FR.ini -------------------------------------------------------------------------------- /UI/data/locale/gd-GB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/gd-GB.ini -------------------------------------------------------------------------------- /UI/data/locale/gl-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/gl-ES.ini -------------------------------------------------------------------------------- /UI/data/locale/he-IL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/he-IL.ini -------------------------------------------------------------------------------- /UI/data/locale/hi-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/hi-IN.ini -------------------------------------------------------------------------------- /UI/data/locale/hr-HR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/hr-HR.ini -------------------------------------------------------------------------------- /UI/data/locale/hu-HU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/hu-HU.ini -------------------------------------------------------------------------------- /UI/data/locale/hy-AM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/hy-AM.ini -------------------------------------------------------------------------------- /UI/data/locale/id-ID.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/id-ID.ini -------------------------------------------------------------------------------- /UI/data/locale/is-IS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/is-IS.ini -------------------------------------------------------------------------------- /UI/data/locale/it-IT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/it-IT.ini -------------------------------------------------------------------------------- /UI/data/locale/ja-JP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ja-JP.ini -------------------------------------------------------------------------------- /UI/data/locale/ka-GE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ka-GE.ini -------------------------------------------------------------------------------- /UI/data/locale/kaa.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/kaa.ini -------------------------------------------------------------------------------- /UI/data/locale/kab-KAB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/kab-KAB.ini -------------------------------------------------------------------------------- /UI/data/locale/kmr-TR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/kmr-TR.ini -------------------------------------------------------------------------------- /UI/data/locale/ko-KR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ko-KR.ini -------------------------------------------------------------------------------- /UI/data/locale/lo-LA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/lo-LA.ini -------------------------------------------------------------------------------- /UI/data/locale/lt-LT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/lt-LT.ini -------------------------------------------------------------------------------- /UI/data/locale/lv-LV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/lv-LV.ini -------------------------------------------------------------------------------- /UI/data/locale/mn-MN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/mn-MN.ini -------------------------------------------------------------------------------- /UI/data/locale/ms-MY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ms-MY.ini -------------------------------------------------------------------------------- /UI/data/locale/nb-NO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/nb-NO.ini -------------------------------------------------------------------------------- /UI/data/locale/nl-NL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/nl-NL.ini -------------------------------------------------------------------------------- /UI/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/nn-NO.ini -------------------------------------------------------------------------------- /UI/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/oc-FR.ini -------------------------------------------------------------------------------- /UI/data/locale/pa-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/pa-IN.ini -------------------------------------------------------------------------------- /UI/data/locale/pl-PL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/pl-PL.ini -------------------------------------------------------------------------------- /UI/data/locale/pt-BR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/pt-BR.ini -------------------------------------------------------------------------------- /UI/data/locale/pt-PT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/pt-PT.ini -------------------------------------------------------------------------------- /UI/data/locale/ro-RO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ro-RO.ini -------------------------------------------------------------------------------- /UI/data/locale/ru-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ru-RU.ini -------------------------------------------------------------------------------- /UI/data/locale/si-LK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/si-LK.ini -------------------------------------------------------------------------------- /UI/data/locale/sk-SK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/sk-SK.ini -------------------------------------------------------------------------------- /UI/data/locale/sl-SI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/sl-SI.ini -------------------------------------------------------------------------------- /UI/data/locale/sq-AL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/sq-AL.ini -------------------------------------------------------------------------------- /UI/data/locale/sr-CS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/sr-CS.ini -------------------------------------------------------------------------------- /UI/data/locale/sr-SP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/sr-SP.ini -------------------------------------------------------------------------------- /UI/data/locale/sv-SE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/sv-SE.ini -------------------------------------------------------------------------------- /UI/data/locale/szl-PL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/szl-PL.ini -------------------------------------------------------------------------------- /UI/data/locale/ta-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ta-IN.ini -------------------------------------------------------------------------------- /UI/data/locale/te-IN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/te-IN.ini -------------------------------------------------------------------------------- /UI/data/locale/th-TH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/th-TH.ini -------------------------------------------------------------------------------- /UI/data/locale/tl-PH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/tl-PH.ini -------------------------------------------------------------------------------- /UI/data/locale/tr-TR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/tr-TR.ini -------------------------------------------------------------------------------- /UI/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/tt-RU.ini -------------------------------------------------------------------------------- /UI/data/locale/ug-CN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ug-CN.ini -------------------------------------------------------------------------------- /UI/data/locale/uk-UA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/uk-UA.ini -------------------------------------------------------------------------------- /UI/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/ur-PK.ini -------------------------------------------------------------------------------- /UI/data/locale/vi-VN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/vi-VN.ini -------------------------------------------------------------------------------- /UI/data/locale/zh-CN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/zh-CN.ini -------------------------------------------------------------------------------- /UI/data/locale/zh-TW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/locale/zh-TW.ini -------------------------------------------------------------------------------- /UI/data/themes/Dark/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/alert.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/close.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/cogs.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/dots.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/down.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/expand.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/filter.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/left.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/locked.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/minus.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/mute.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/plus.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/popout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/popout.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/revert.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/right.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/save.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/trash.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/up.svg -------------------------------------------------------------------------------- /UI/data/themes/Dark/updown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Dark/updown.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/alert.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/close.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/cogs.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/dots.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/down.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/left.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/minus.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/mute.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/plus.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/right.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/save.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/trash.svg -------------------------------------------------------------------------------- /UI/data/themes/Light/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Light/up.svg -------------------------------------------------------------------------------- /UI/data/themes/System.obt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/System.obt -------------------------------------------------------------------------------- /UI/data/themes/Yami.obt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Yami.obt -------------------------------------------------------------------------------- /UI/data/themes/Yami_Acri.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Yami_Acri.ovt -------------------------------------------------------------------------------- /UI/data/themes/Yami_Grey.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Yami_Grey.ovt -------------------------------------------------------------------------------- /UI/data/themes/Yami_Light.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Yami_Light.ovt -------------------------------------------------------------------------------- /UI/data/themes/Yami_Rachni.ovt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/data/themes/Yami_Rachni.ovt -------------------------------------------------------------------------------- /UI/display-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/display-helpers.hpp -------------------------------------------------------------------------------- /UI/double-slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/double-slider.cpp -------------------------------------------------------------------------------- /UI/double-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/double-slider.hpp -------------------------------------------------------------------------------- /UI/ffmpeg-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/ffmpeg-utils.cpp -------------------------------------------------------------------------------- /UI/ffmpeg-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/ffmpeg-utils.hpp -------------------------------------------------------------------------------- /UI/focus-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/focus-list.cpp -------------------------------------------------------------------------------- /UI/focus-list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/focus-list.hpp -------------------------------------------------------------------------------- /UI/forms/AutoConfigTestPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/AutoConfigTestPage.ui -------------------------------------------------------------------------------- /UI/forms/ColorSelect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/ColorSelect.ui -------------------------------------------------------------------------------- /UI/forms/OBSAbout.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSAbout.ui -------------------------------------------------------------------------------- /UI/forms/OBSAdvAudio.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSAdvAudio.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasic.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSBasic.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicControls.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSBasicControls.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicFilters.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSBasicFilters.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicProperties.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSBasicProperties.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSBasicSettings.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicTransform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSBasicTransform.ui -------------------------------------------------------------------------------- /UI/forms/OBSBasicVCamConfig.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSBasicVCamConfig.ui -------------------------------------------------------------------------------- /UI/forms/OBSExtraBrowsers.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSExtraBrowsers.ui -------------------------------------------------------------------------------- /UI/forms/OBSImporter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSImporter.ui -------------------------------------------------------------------------------- /UI/forms/OBSLogReply.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSLogReply.ui -------------------------------------------------------------------------------- /UI/forms/OBSLogViewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSLogViewer.ui -------------------------------------------------------------------------------- /UI/forms/OBSMissingFiles.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSMissingFiles.ui -------------------------------------------------------------------------------- /UI/forms/OBSPermissions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSPermissions.ui -------------------------------------------------------------------------------- /UI/forms/OBSRemux.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSRemux.ui -------------------------------------------------------------------------------- /UI/forms/OBSUpdate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSUpdate.ui -------------------------------------------------------------------------------- /UI/forms/OBSYoutubeActions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/OBSYoutubeActions.ui -------------------------------------------------------------------------------- /UI/forms/StatusBarWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/StatusBarWidget.ui -------------------------------------------------------------------------------- /UI/forms/XML-Schema-Qt5.15.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/XML-Schema-Qt5.15.xsd -------------------------------------------------------------------------------- /UI/forms/images/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/active.png -------------------------------------------------------------------------------- /UI/forms/images/active_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/active_mac.png -------------------------------------------------------------------------------- /UI/forms/images/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/alert.svg -------------------------------------------------------------------------------- /UI/forms/images/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/cogs.svg -------------------------------------------------------------------------------- /UI/forms/images/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/collapse.svg -------------------------------------------------------------------------------- /UI/forms/images/dots-vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/dots-vert.svg -------------------------------------------------------------------------------- /UI/forms/images/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/dots.svg -------------------------------------------------------------------------------- /UI/forms/images/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/down.svg -------------------------------------------------------------------------------- /UI/forms/images/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/expand.svg -------------------------------------------------------------------------------- /UI/forms/images/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/filter.svg -------------------------------------------------------------------------------- /UI/forms/images/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/help.svg -------------------------------------------------------------------------------- /UI/forms/images/help_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/help_light.svg -------------------------------------------------------------------------------- /UI/forms/images/interact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/interact.svg -------------------------------------------------------------------------------- /UI/forms/images/invisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/invisible.svg -------------------------------------------------------------------------------- /UI/forms/images/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/locked.svg -------------------------------------------------------------------------------- /UI/forms/images/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/minus.svg -------------------------------------------------------------------------------- /UI/forms/images/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/mute.svg -------------------------------------------------------------------------------- /UI/forms/images/no_sources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/no_sources.svg -------------------------------------------------------------------------------- /UI/forms/images/obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/obs.png -------------------------------------------------------------------------------- /UI/forms/images/obs_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/obs_macos.png -------------------------------------------------------------------------------- /UI/forms/images/obs_macos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/obs_macos.svg -------------------------------------------------------------------------------- /UI/forms/images/obs_paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/obs_paused.png -------------------------------------------------------------------------------- /UI/forms/images/paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/paused.png -------------------------------------------------------------------------------- /UI/forms/images/paused_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/paused_mac.png -------------------------------------------------------------------------------- /UI/forms/images/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/plus.svg -------------------------------------------------------------------------------- /UI/forms/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/refresh.svg -------------------------------------------------------------------------------- /UI/forms/images/revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/revert.svg -------------------------------------------------------------------------------- /UI/forms/images/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/right.svg -------------------------------------------------------------------------------- /UI/forms/images/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/save.svg -------------------------------------------------------------------------------- /UI/forms/images/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/unlocked.svg -------------------------------------------------------------------------------- /UI/forms/images/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/up.svg -------------------------------------------------------------------------------- /UI/forms/images/visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/visible.svg -------------------------------------------------------------------------------- /UI/forms/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/images/warning.svg -------------------------------------------------------------------------------- /UI/forms/obs.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/forms/obs.qrc -------------------------------------------------------------------------------- /UI/frontend-plugins/aja-output-ui/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /UI/frontend-plugins/decklink-captions/data/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UI/frontend-plugins/decklink-output-ui/data/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UI/frontend-plugins/frontend-tools/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /UI/frontend-plugins/frontend-tools/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Captions.AudioSource="Font àudio" 2 | -------------------------------------------------------------------------------- /UI/goliveapi-censoredjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/goliveapi-censoredjson.cpp -------------------------------------------------------------------------------- /UI/goliveapi-censoredjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/goliveapi-censoredjson.hpp -------------------------------------------------------------------------------- /UI/goliveapi-network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/goliveapi-network.cpp -------------------------------------------------------------------------------- /UI/goliveapi-network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/goliveapi-network.hpp -------------------------------------------------------------------------------- /UI/goliveapi-postdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/goliveapi-postdata.cpp -------------------------------------------------------------------------------- /UI/goliveapi-postdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/goliveapi-postdata.hpp -------------------------------------------------------------------------------- /UI/horizontal-scroll-area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/horizontal-scroll-area.cpp -------------------------------------------------------------------------------- /UI/horizontal-scroll-area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/horizontal-scroll-area.hpp -------------------------------------------------------------------------------- /UI/hotkey-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/hotkey-edit.cpp -------------------------------------------------------------------------------- /UI/hotkey-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/hotkey-edit.hpp -------------------------------------------------------------------------------- /UI/importers/classic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/importers/classic.cpp -------------------------------------------------------------------------------- /UI/importers/importers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/importers/importers.cpp -------------------------------------------------------------------------------- /UI/importers/importers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/importers/importers.hpp -------------------------------------------------------------------------------- /UI/importers/sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/importers/sl.cpp -------------------------------------------------------------------------------- /UI/importers/studio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/importers/studio.cpp -------------------------------------------------------------------------------- /UI/importers/xsplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/importers/xsplit.cpp -------------------------------------------------------------------------------- /UI/item-widget-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/item-widget-helpers.cpp -------------------------------------------------------------------------------- /UI/item-widget-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/item-widget-helpers.hpp -------------------------------------------------------------------------------- /UI/lineedit-autoresize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/lineedit-autoresize.cpp -------------------------------------------------------------------------------- /UI/lineedit-autoresize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/lineedit-autoresize.hpp -------------------------------------------------------------------------------- /UI/log-viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/log-viewer.cpp -------------------------------------------------------------------------------- /UI/log-viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/log-viewer.hpp -------------------------------------------------------------------------------- /UI/media-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/media-controls.cpp -------------------------------------------------------------------------------- /UI/media-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/media-controls.hpp -------------------------------------------------------------------------------- /UI/menu-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/menu-button.cpp -------------------------------------------------------------------------------- /UI/menu-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/menu-button.hpp -------------------------------------------------------------------------------- /UI/models/multitrack-video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/models/multitrack-video.hpp -------------------------------------------------------------------------------- /UI/multitrack-video-error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/multitrack-video-error.cpp -------------------------------------------------------------------------------- /UI/multitrack-video-error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/multitrack-video-error.hpp -------------------------------------------------------------------------------- /UI/multitrack-video-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/multitrack-video-output.cpp -------------------------------------------------------------------------------- /UI/multitrack-video-output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/multitrack-video-output.hpp -------------------------------------------------------------------------------- /UI/multiview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/multiview.cpp -------------------------------------------------------------------------------- /UI/multiview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/multiview.hpp -------------------------------------------------------------------------------- /UI/mute-checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/mute-checkbox.hpp -------------------------------------------------------------------------------- /UI/noncheckable-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/noncheckable-button.hpp -------------------------------------------------------------------------------- /UI/obf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obf.c -------------------------------------------------------------------------------- /UI/obf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obf.h -------------------------------------------------------------------------------- /UI/obs-app-theming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obs-app-theming.cpp -------------------------------------------------------------------------------- /UI/obs-app-theming.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obs-app-theming.hpp -------------------------------------------------------------------------------- /UI/obs-app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obs-app.cpp -------------------------------------------------------------------------------- /UI/obs-app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obs-app.hpp -------------------------------------------------------------------------------- /UI/obs-proxy-style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obs-proxy-style.cpp -------------------------------------------------------------------------------- /UI/obs-proxy-style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obs-proxy-style.hpp -------------------------------------------------------------------------------- /UI/obs.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obs.manifest -------------------------------------------------------------------------------- /UI/obs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/obs.rc.in -------------------------------------------------------------------------------- /UI/plain-text-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/plain-text-edit.cpp -------------------------------------------------------------------------------- /UI/plain-text-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/plain-text-edit.hpp -------------------------------------------------------------------------------- /UI/platform-osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/platform-osx.mm -------------------------------------------------------------------------------- /UI/platform-windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/platform-windows.cpp -------------------------------------------------------------------------------- /UI/platform-x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/platform-x11.cpp -------------------------------------------------------------------------------- /UI/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/platform.hpp -------------------------------------------------------------------------------- /UI/properties-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/properties-view.cpp -------------------------------------------------------------------------------- /UI/properties-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/properties-view.hpp -------------------------------------------------------------------------------- /UI/properties-view.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/properties-view.moc.hpp -------------------------------------------------------------------------------- /UI/qt-display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/qt-display.cpp -------------------------------------------------------------------------------- /UI/qt-display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/qt-display.hpp -------------------------------------------------------------------------------- /UI/qt-wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/qt-wrappers.cpp -------------------------------------------------------------------------------- /UI/qt-wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/qt-wrappers.hpp -------------------------------------------------------------------------------- /UI/remote-text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/remote-text.cpp -------------------------------------------------------------------------------- /UI/remote-text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/remote-text.hpp -------------------------------------------------------------------------------- /UI/scene-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/scene-tree.cpp -------------------------------------------------------------------------------- /UI/scene-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/scene-tree.hpp -------------------------------------------------------------------------------- /UI/screenshot-obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/screenshot-obj.hpp -------------------------------------------------------------------------------- /UI/slider-ignorewheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/slider-ignorewheel.cpp -------------------------------------------------------------------------------- /UI/slider-ignorewheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/slider-ignorewheel.hpp -------------------------------------------------------------------------------- /UI/source-label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/source-label.cpp -------------------------------------------------------------------------------- /UI/source-label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/source-label.hpp -------------------------------------------------------------------------------- /UI/source-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/source-tree.cpp -------------------------------------------------------------------------------- /UI/source-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/source-tree.hpp -------------------------------------------------------------------------------- /UI/spinbox-ignorewheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/spinbox-ignorewheel.cpp -------------------------------------------------------------------------------- /UI/spinbox-ignorewheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/spinbox-ignorewheel.hpp -------------------------------------------------------------------------------- /UI/system-info-macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/system-info-macos.mm -------------------------------------------------------------------------------- /UI/system-info-posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/system-info-posix.cpp -------------------------------------------------------------------------------- /UI/system-info-windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/system-info-windows.cpp -------------------------------------------------------------------------------- /UI/system-info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/system-info.hpp -------------------------------------------------------------------------------- /UI/ui-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/ui-config.h.in -------------------------------------------------------------------------------- /UI/ui-validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/ui-validation.cpp -------------------------------------------------------------------------------- /UI/ui-validation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/ui-validation.hpp -------------------------------------------------------------------------------- /UI/undo-stack-obs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/undo-stack-obs.cpp -------------------------------------------------------------------------------- /UI/undo-stack-obs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/undo-stack-obs.hpp -------------------------------------------------------------------------------- /UI/update/crypto-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/crypto-helpers.hpp -------------------------------------------------------------------------------- /UI/update/mac-update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/mac-update.cpp -------------------------------------------------------------------------------- /UI/update/mac-update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/mac-update.hpp -------------------------------------------------------------------------------- /UI/update/models/branches.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/models/branches.hpp -------------------------------------------------------------------------------- /UI/update/models/whatsnew.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/models/whatsnew.hpp -------------------------------------------------------------------------------- /UI/update/shared-update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/shared-update.cpp -------------------------------------------------------------------------------- /UI/update/shared-update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/shared-update.hpp -------------------------------------------------------------------------------- /UI/update/sparkle-updater.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/sparkle-updater.mm -------------------------------------------------------------------------------- /UI/update/update-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/update-helpers.cpp -------------------------------------------------------------------------------- /UI/update/update-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/update-helpers.hpp -------------------------------------------------------------------------------- /UI/update/update-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/update-window.cpp -------------------------------------------------------------------------------- /UI/update/update-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/update-window.hpp -------------------------------------------------------------------------------- /UI/update/win-update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/win-update.cpp -------------------------------------------------------------------------------- /UI/update/win-update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/update/win-update.hpp -------------------------------------------------------------------------------- /UI/url-push-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/url-push-button.cpp -------------------------------------------------------------------------------- /UI/url-push-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/url-push-button.hpp -------------------------------------------------------------------------------- /UI/vertical-scroll-area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/vertical-scroll-area.cpp -------------------------------------------------------------------------------- /UI/vertical-scroll-area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/vertical-scroll-area.hpp -------------------------------------------------------------------------------- /UI/visibility-item-widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/visibility-item-widget.cpp -------------------------------------------------------------------------------- /UI/visibility-item-widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/visibility-item-widget.hpp -------------------------------------------------------------------------------- /UI/volume-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/volume-control.cpp -------------------------------------------------------------------------------- /UI/volume-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/volume-control.hpp -------------------------------------------------------------------------------- /UI/win-dll-blocklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/win-dll-blocklist.c -------------------------------------------------------------------------------- /UI/win-update/updater/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/win-update/updater/hash.cpp -------------------------------------------------------------------------------- /UI/win-update/updater/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/win-update/updater/http.cpp -------------------------------------------------------------------------------- /UI/window-basic-about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-about.cpp -------------------------------------------------------------------------------- /UI/window-basic-about.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-about.hpp -------------------------------------------------------------------------------- /UI/window-basic-filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-filters.cpp -------------------------------------------------------------------------------- /UI/window-basic-filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-filters.hpp -------------------------------------------------------------------------------- /UI/window-basic-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-main.cpp -------------------------------------------------------------------------------- /UI/window-basic-main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-main.hpp -------------------------------------------------------------------------------- /UI/window-basic-preview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-preview.cpp -------------------------------------------------------------------------------- /UI/window-basic-preview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-preview.hpp -------------------------------------------------------------------------------- /UI/window-basic-settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-settings.cpp -------------------------------------------------------------------------------- /UI/window-basic-settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-settings.hpp -------------------------------------------------------------------------------- /UI/window-basic-stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-stats.cpp -------------------------------------------------------------------------------- /UI/window-basic-stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-stats.hpp -------------------------------------------------------------------------------- /UI/window-basic-vcam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-basic-vcam.hpp -------------------------------------------------------------------------------- /UI/window-dock-browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-dock-browser.cpp -------------------------------------------------------------------------------- /UI/window-dock-browser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-dock-browser.hpp -------------------------------------------------------------------------------- /UI/window-dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-dock.cpp -------------------------------------------------------------------------------- /UI/window-dock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-dock.hpp -------------------------------------------------------------------------------- /UI/window-extra-browsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-extra-browsers.cpp -------------------------------------------------------------------------------- /UI/window-extra-browsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-extra-browsers.hpp -------------------------------------------------------------------------------- /UI/window-importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-importer.cpp -------------------------------------------------------------------------------- /UI/window-importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-importer.hpp -------------------------------------------------------------------------------- /UI/window-log-reply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-log-reply.cpp -------------------------------------------------------------------------------- /UI/window-log-reply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-log-reply.hpp -------------------------------------------------------------------------------- /UI/window-main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-main.hpp -------------------------------------------------------------------------------- /UI/window-missing-files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-missing-files.cpp -------------------------------------------------------------------------------- /UI/window-missing-files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-missing-files.hpp -------------------------------------------------------------------------------- /UI/window-namedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-namedialog.cpp -------------------------------------------------------------------------------- /UI/window-namedialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-namedialog.hpp -------------------------------------------------------------------------------- /UI/window-permissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-permissions.cpp -------------------------------------------------------------------------------- /UI/window-permissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-permissions.hpp -------------------------------------------------------------------------------- /UI/window-projector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-projector.cpp -------------------------------------------------------------------------------- /UI/window-projector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-projector.hpp -------------------------------------------------------------------------------- /UI/window-remux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-remux.cpp -------------------------------------------------------------------------------- /UI/window-remux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/window-remux.hpp -------------------------------------------------------------------------------- /UI/xdg-data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/xdg-data/CMakeLists.txt -------------------------------------------------------------------------------- /UI/youtube-api-wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/youtube-api-wrappers.cpp -------------------------------------------------------------------------------- /UI/youtube-api-wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/UI/youtube-api-wrappers.hpp -------------------------------------------------------------------------------- /additional_install_files/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec32/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec32d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec32r/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec64/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec64d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/exec64r/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs32/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs32d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs32r/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs64/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs64d/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/libs64r/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /additional_install_files/misc/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /cmake/32bit/projects.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/32bit/projects.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindAMF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindAMF.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindAsio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindAsio.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindCEF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindCEF.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindGio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindGio.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindJack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindJack.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindOSS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindOSS.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindUdev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindUdev.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindVPL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindVPL.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/Modules/FindXCB.cmake -------------------------------------------------------------------------------- /cmake/common/bootstrap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/common/bootstrap.cmake -------------------------------------------------------------------------------- /cmake/common/ccache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/common/ccache.cmake -------------------------------------------------------------------------------- /cmake/common/osconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/common/osconfig.cmake -------------------------------------------------------------------------------- /cmake/common/policies.cmake: -------------------------------------------------------------------------------- 1 | # OBS CMake policies module 2 | 3 | include_guard(GLOBAL) 4 | -------------------------------------------------------------------------------- /cmake/finders/FindAMF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/finders/FindAMF.cmake -------------------------------------------------------------------------------- /cmake/finders/FindAsio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/finders/FindAsio.cmake -------------------------------------------------------------------------------- /cmake/finders/FindCEF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/finders/FindCEF.cmake -------------------------------------------------------------------------------- /cmake/finders/FindGio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/finders/FindGio.cmake -------------------------------------------------------------------------------- /cmake/finders/FindJack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/finders/FindJack.cmake -------------------------------------------------------------------------------- /cmake/finders/FindOSS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/finders/FindOSS.cmake -------------------------------------------------------------------------------- /cmake/finders/FindVPL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/finders/FindVPL.cmake -------------------------------------------------------------------------------- /cmake/finders/FindXcb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/finders/FindXcb.cmake -------------------------------------------------------------------------------- /cmake/linux/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/linux/defaults.cmake -------------------------------------------------------------------------------- /cmake/linux/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/linux/helpers.cmake -------------------------------------------------------------------------------- /cmake/macos/buildspec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/macos/buildspec.cmake -------------------------------------------------------------------------------- /cmake/macos/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/macos/defaults.cmake -------------------------------------------------------------------------------- /cmake/macos/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/macos/helpers.cmake -------------------------------------------------------------------------------- /cmake/macos/simd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/macos/simd.cmake -------------------------------------------------------------------------------- /cmake/macos/xcode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/macos/xcode.cmake -------------------------------------------------------------------------------- /cmake/windows/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/windows/defaults.cmake -------------------------------------------------------------------------------- /cmake/windows/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/cmake/windows/helpers.cmake -------------------------------------------------------------------------------- /dependencies/enc-amf.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/enc-amf.dll.txt -------------------------------------------------------------------------------- /dependencies/libEGL.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/libEGL.dll.txt -------------------------------------------------------------------------------- /dependencies/libaom.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/libaom.dll.txt -------------------------------------------------------------------------------- /dependencies/libcef.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/libcef.dll.txt -------------------------------------------------------------------------------- /dependencies/libcurl.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/libcurl.dll.txt -------------------------------------------------------------------------------- /dependencies/librist.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/librist.dll.txt -------------------------------------------------------------------------------- /dependencies/libsrt.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/libsrt.dll.txt -------------------------------------------------------------------------------- /dependencies/obs-ndi.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/obs-ndi.dll.txt -------------------------------------------------------------------------------- /dependencies/obs-vst.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/obs-vst.dll.txt -------------------------------------------------------------------------------- /dependencies/obs.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/obs.dll.txt -------------------------------------------------------------------------------- /dependencies/obsglad.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/obsglad.dll.txt -------------------------------------------------------------------------------- /dependencies/win-mf.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/win-mf.dll.txt -------------------------------------------------------------------------------- /dependencies/zlib.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/dependencies/zlib.dll.txt -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/blake2/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/blake2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/blake2/CMakeLists.txt -------------------------------------------------------------------------------- /deps/blake2/LICENSE.blake2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/blake2/LICENSE.blake2 -------------------------------------------------------------------------------- /deps/blake2/src/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/blake2/src/blake2.h -------------------------------------------------------------------------------- /deps/glad/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/glad/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/glad/src/glad.c -------------------------------------------------------------------------------- /deps/glad/src/glad_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/glad/src/glad_egl.c -------------------------------------------------------------------------------- /deps/glad/src/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/glad/src/glad_wgl.c -------------------------------------------------------------------------------- /deps/ipc-util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/ipc-util/CMakeLists.txt -------------------------------------------------------------------------------- /deps/json11/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/json11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/json11/CMakeLists.txt -------------------------------------------------------------------------------- /deps/json11/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/json11/LICENSE.txt -------------------------------------------------------------------------------- /deps/json11/json11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/json11/json11.cpp -------------------------------------------------------------------------------- /deps/json11/json11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/json11/json11.hpp -------------------------------------------------------------------------------- /deps/libcaption/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/libcaption/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/.gitignore -------------------------------------------------------------------------------- /deps/libcaption/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/Doxyfile.in -------------------------------------------------------------------------------- /deps/libcaption/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/LICENSE.txt -------------------------------------------------------------------------------- /deps/libcaption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/README.md -------------------------------------------------------------------------------- /deps/libcaption/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/format.sh -------------------------------------------------------------------------------- /deps/libcaption/src/cea708.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/cea708.c -------------------------------------------------------------------------------- /deps/libcaption/src/dvtcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/dvtcc.c -------------------------------------------------------------------------------- /deps/libcaption/src/eia608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/eia608.c -------------------------------------------------------------------------------- /deps/libcaption/src/mpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/mpeg.c -------------------------------------------------------------------------------- /deps/libcaption/src/scc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/scc.c -------------------------------------------------------------------------------- /deps/libcaption/src/srt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/srt.c -------------------------------------------------------------------------------- /deps/libcaption/src/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/utf8.c -------------------------------------------------------------------------------- /deps/libcaption/src/vtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/vtt.c -------------------------------------------------------------------------------- /deps/libcaption/src/xds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/libcaption/src/xds.c -------------------------------------------------------------------------------- /deps/w32-pthreads/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /deps/w32-pthreads/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/ANNOUNCE -------------------------------------------------------------------------------- /deps/w32-pthreads/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/BUGS -------------------------------------------------------------------------------- /deps/w32-pthreads/Bmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/Bmakefile -------------------------------------------------------------------------------- /deps/w32-pthreads/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/COPYING -------------------------------------------------------------------------------- /deps/w32-pthreads/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/ChangeLog -------------------------------------------------------------------------------- /deps/w32-pthreads/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/FAQ -------------------------------------------------------------------------------- /deps/w32-pthreads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/Makefile -------------------------------------------------------------------------------- /deps/w32-pthreads/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/NEWS -------------------------------------------------------------------------------- /deps/w32-pthreads/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/Nmakefile -------------------------------------------------------------------------------- /deps/w32-pthreads/PROGRESS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/PROGRESS -------------------------------------------------------------------------------- /deps/w32-pthreads/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/README -------------------------------------------------------------------------------- /deps/w32-pthreads/README.CV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/README.CV -------------------------------------------------------------------------------- /deps/w32-pthreads/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/TODO -------------------------------------------------------------------------------- /deps/w32-pthreads/WinCE-PORT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/WinCE-PORT -------------------------------------------------------------------------------- /deps/w32-pthreads/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/attr.c -------------------------------------------------------------------------------- /deps/w32-pthreads/barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/barrier.c -------------------------------------------------------------------------------- /deps/w32-pthreads/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/cancel.c -------------------------------------------------------------------------------- /deps/w32-pthreads/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/cleanup.c -------------------------------------------------------------------------------- /deps/w32-pthreads/condvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/condvar.c -------------------------------------------------------------------------------- /deps/w32-pthreads/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/config.h -------------------------------------------------------------------------------- /deps/w32-pthreads/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/context.h -------------------------------------------------------------------------------- /deps/w32-pthreads/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/create.c -------------------------------------------------------------------------------- /deps/w32-pthreads/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/dll.c -------------------------------------------------------------------------------- /deps/w32-pthreads/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/errno.c -------------------------------------------------------------------------------- /deps/w32-pthreads/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/exit.c -------------------------------------------------------------------------------- /deps/w32-pthreads/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/fork.c -------------------------------------------------------------------------------- /deps/w32-pthreads/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/global.c -------------------------------------------------------------------------------- /deps/w32-pthreads/libpthreadGC2.stamp: -------------------------------------------------------------------------------- 1 | touched 2 | -------------------------------------------------------------------------------- /deps/w32-pthreads/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/misc.c -------------------------------------------------------------------------------- /deps/w32-pthreads/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/mutex.c -------------------------------------------------------------------------------- /deps/w32-pthreads/private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/private.c -------------------------------------------------------------------------------- /deps/w32-pthreads/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/pthread.c -------------------------------------------------------------------------------- /deps/w32-pthreads/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/pthread.h -------------------------------------------------------------------------------- /deps/w32-pthreads/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/rwlock.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/sched.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/sched.h -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/sem_init.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/sem_open.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/sem_post.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sem_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/sem_wait.c -------------------------------------------------------------------------------- /deps/w32-pthreads/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/signal.c -------------------------------------------------------------------------------- /deps/w32-pthreads/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/spin.c -------------------------------------------------------------------------------- /deps/w32-pthreads/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/sync.c -------------------------------------------------------------------------------- /deps/w32-pthreads/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/tsd.c -------------------------------------------------------------------------------- /deps/w32-pthreads/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/deps/w32-pthreads/version.rc -------------------------------------------------------------------------------- /deps/w32-pthreads/w32-pthreadsConfigVersion.cmake.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/Makefile -------------------------------------------------------------------------------- /docs/sphinx/_build/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/sphinx/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/sphinx/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/conf.py -------------------------------------------------------------------------------- /docs/sphinx/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/favicon.ico -------------------------------------------------------------------------------- /docs/sphinx/frontends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/frontends.rst -------------------------------------------------------------------------------- /docs/sphinx/graphics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/graphics.rst -------------------------------------------------------------------------------- /docs/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/index.rst -------------------------------------------------------------------------------- /docs/sphinx/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/logo.svg -------------------------------------------------------------------------------- /docs/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/make.bat -------------------------------------------------------------------------------- /docs/sphinx/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/plugins.rst -------------------------------------------------------------------------------- /docs/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/requirements.txt -------------------------------------------------------------------------------- /docs/sphinx/scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/docs/sphinx/scripting.rst -------------------------------------------------------------------------------- /libobs-d3d11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-d3d11/CMakeLists.txt -------------------------------------------------------------------------------- /libobs-opengl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/CMakeLists.txt -------------------------------------------------------------------------------- /libobs-opengl/gl-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-cocoa.m -------------------------------------------------------------------------------- /libobs-opengl/gl-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-helpers.c -------------------------------------------------------------------------------- /libobs-opengl/gl-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-helpers.h -------------------------------------------------------------------------------- /libobs-opengl/gl-nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-nix.c -------------------------------------------------------------------------------- /libobs-opengl/gl-nix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-nix.h -------------------------------------------------------------------------------- /libobs-opengl/gl-shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-shader.c -------------------------------------------------------------------------------- /libobs-opengl/gl-stagesurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-stagesurf.c -------------------------------------------------------------------------------- /libobs-opengl/gl-subsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-subsystem.c -------------------------------------------------------------------------------- /libobs-opengl/gl-subsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-subsystem.h -------------------------------------------------------------------------------- /libobs-opengl/gl-texture2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-texture2d.c -------------------------------------------------------------------------------- /libobs-opengl/gl-texture3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-texture3d.c -------------------------------------------------------------------------------- /libobs-opengl/gl-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-windows.c -------------------------------------------------------------------------------- /libobs-opengl/gl-x11-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-x11-egl.c -------------------------------------------------------------------------------- /libobs-opengl/gl-x11-egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-x11-egl.h -------------------------------------------------------------------------------- /libobs-opengl/gl-zstencil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-opengl/gl-zstencil.c -------------------------------------------------------------------------------- /libobs-winrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-winrt/CMakeLists.txt -------------------------------------------------------------------------------- /libobs-winrt/winrt-capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs-winrt/winrt-capture.h -------------------------------------------------------------------------------- /libobs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/CMakeLists.txt -------------------------------------------------------------------------------- /libobs/callback/calldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/callback/calldata.c -------------------------------------------------------------------------------- /libobs/callback/calldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/callback/calldata.h -------------------------------------------------------------------------------- /libobs/callback/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/callback/decl.c -------------------------------------------------------------------------------- /libobs/callback/decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/callback/decl.h -------------------------------------------------------------------------------- /libobs/callback/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/callback/proc.c -------------------------------------------------------------------------------- /libobs/callback/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/callback/proc.h -------------------------------------------------------------------------------- /libobs/callback/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/callback/signal.c -------------------------------------------------------------------------------- /libobs/callback/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/callback/signal.h -------------------------------------------------------------------------------- /libobs/cmake/legacy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/cmake/legacy.cmake -------------------------------------------------------------------------------- /libobs/cmake/os-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/cmake/os-linux.cmake -------------------------------------------------------------------------------- /libobs/cmake/os-macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/cmake/os-macos.cmake -------------------------------------------------------------------------------- /libobs/data/area.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/data/area.effect -------------------------------------------------------------------------------- /libobs/data/color.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/data/color.effect -------------------------------------------------------------------------------- /libobs/data/default.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/data/default.effect -------------------------------------------------------------------------------- /libobs/data/opaque.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/data/opaque.effect -------------------------------------------------------------------------------- /libobs/data/repeat.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/data/repeat.effect -------------------------------------------------------------------------------- /libobs/data/solid.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/data/solid.effect -------------------------------------------------------------------------------- /libobs/graphics/axisang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/axisang.c -------------------------------------------------------------------------------- /libobs/graphics/axisang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/axisang.h -------------------------------------------------------------------------------- /libobs/graphics/basemath.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | /* TODO: C++ math wrappers */ 4 | -------------------------------------------------------------------------------- /libobs/graphics/bounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/bounds.c -------------------------------------------------------------------------------- /libobs/graphics/bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/bounds.h -------------------------------------------------------------------------------- /libobs/graphics/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/effect.c -------------------------------------------------------------------------------- /libobs/graphics/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/effect.h -------------------------------------------------------------------------------- /libobs/graphics/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/graphics.c -------------------------------------------------------------------------------- /libobs/graphics/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/graphics.h -------------------------------------------------------------------------------- /libobs/graphics/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/half.h -------------------------------------------------------------------------------- /libobs/graphics/image-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/image-file.c -------------------------------------------------------------------------------- /libobs/graphics/image-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/image-file.h -------------------------------------------------------------------------------- /libobs/graphics/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/input.h -------------------------------------------------------------------------------- /libobs/graphics/libnsgif/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /libobs/graphics/math-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/math-defs.h -------------------------------------------------------------------------------- /libobs/graphics/math-extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/math-extra.c -------------------------------------------------------------------------------- /libobs/graphics/math-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/math-extra.h -------------------------------------------------------------------------------- /libobs/graphics/matrix3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/matrix3.c -------------------------------------------------------------------------------- /libobs/graphics/matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/matrix3.h -------------------------------------------------------------------------------- /libobs/graphics/matrix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/matrix4.c -------------------------------------------------------------------------------- /libobs/graphics/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/matrix4.h -------------------------------------------------------------------------------- /libobs/graphics/plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/plane.c -------------------------------------------------------------------------------- /libobs/graphics/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/plane.h -------------------------------------------------------------------------------- /libobs/graphics/quat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/quat.c -------------------------------------------------------------------------------- /libobs/graphics/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/quat.h -------------------------------------------------------------------------------- /libobs/graphics/srgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/srgb.h -------------------------------------------------------------------------------- /libobs/graphics/vec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/vec2.c -------------------------------------------------------------------------------- /libobs/graphics/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/vec2.h -------------------------------------------------------------------------------- /libobs/graphics/vec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/vec3.c -------------------------------------------------------------------------------- /libobs/graphics/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/vec3.h -------------------------------------------------------------------------------- /libobs/graphics/vec4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/vec4.c -------------------------------------------------------------------------------- /libobs/graphics/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/graphics/vec4.h -------------------------------------------------------------------------------- /libobs/media-io/audio-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/media-io/audio-io.c -------------------------------------------------------------------------------- /libobs/media-io/audio-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/media-io/audio-io.h -------------------------------------------------------------------------------- /libobs/media-io/audio-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/media-io/audio-math.h -------------------------------------------------------------------------------- /libobs/media-io/frame-rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/media-io/frame-rate.h -------------------------------------------------------------------------------- /libobs/media-io/video-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/media-io/video-io.c -------------------------------------------------------------------------------- /libobs/media-io/video-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/media-io/video-io.h -------------------------------------------------------------------------------- /libobs/obs-audio-controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-audio-controls.c -------------------------------------------------------------------------------- /libobs/obs-audio-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-audio-controls.h -------------------------------------------------------------------------------- /libobs/obs-audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-audio.c -------------------------------------------------------------------------------- /libobs/obs-av1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-av1.c -------------------------------------------------------------------------------- /libobs/obs-av1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-av1.h -------------------------------------------------------------------------------- /libobs/obs-avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-avc.c -------------------------------------------------------------------------------- /libobs/obs-avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-avc.h -------------------------------------------------------------------------------- /libobs/obs-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-cocoa.m -------------------------------------------------------------------------------- /libobs/obs-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-config.h -------------------------------------------------------------------------------- /libobs/obs-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-data.c -------------------------------------------------------------------------------- /libobs/obs-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-data.h -------------------------------------------------------------------------------- /libobs/obs-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-defs.h -------------------------------------------------------------------------------- /libobs/obs-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-display.c -------------------------------------------------------------------------------- /libobs/obs-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-encoder.c -------------------------------------------------------------------------------- /libobs/obs-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-encoder.h -------------------------------------------------------------------------------- /libobs/obs-ffmpeg-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-ffmpeg-compat.h -------------------------------------------------------------------------------- /libobs/obs-hevc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-hevc.c -------------------------------------------------------------------------------- /libobs/obs-hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-hevc.h -------------------------------------------------------------------------------- /libobs/obs-hotkey-name-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-hotkey-name-map.c -------------------------------------------------------------------------------- /libobs/obs-hotkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-hotkey.c -------------------------------------------------------------------------------- /libobs/obs-hotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-hotkey.h -------------------------------------------------------------------------------- /libobs/obs-hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-hotkeys.h -------------------------------------------------------------------------------- /libobs/obs-interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-interaction.h -------------------------------------------------------------------------------- /libobs/obs-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-internal.h -------------------------------------------------------------------------------- /libobs/obs-missing-files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-missing-files.c -------------------------------------------------------------------------------- /libobs/obs-missing-files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-missing-files.h -------------------------------------------------------------------------------- /libobs/obs-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-module.c -------------------------------------------------------------------------------- /libobs/obs-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-module.h -------------------------------------------------------------------------------- /libobs/obs-nal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nal.c -------------------------------------------------------------------------------- /libobs/obs-nal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nal.h -------------------------------------------------------------------------------- /libobs/obs-nix-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nix-platform.c -------------------------------------------------------------------------------- /libobs/obs-nix-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nix-platform.h -------------------------------------------------------------------------------- /libobs/obs-nix-wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nix-wayland.c -------------------------------------------------------------------------------- /libobs/obs-nix-wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nix-wayland.h -------------------------------------------------------------------------------- /libobs/obs-nix-x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nix-x11.c -------------------------------------------------------------------------------- /libobs/obs-nix-x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nix-x11.h -------------------------------------------------------------------------------- /libobs/obs-nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nix.c -------------------------------------------------------------------------------- /libobs/obs-nix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-nix.h -------------------------------------------------------------------------------- /libobs/obs-output-delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-output-delay.c -------------------------------------------------------------------------------- /libobs/obs-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-output.c -------------------------------------------------------------------------------- /libobs/obs-output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-output.h -------------------------------------------------------------------------------- /libobs/obs-properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-properties.c -------------------------------------------------------------------------------- /libobs/obs-properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-properties.h -------------------------------------------------------------------------------- /libobs/obs-scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-scene.c -------------------------------------------------------------------------------- /libobs/obs-scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-scene.h -------------------------------------------------------------------------------- /libobs/obs-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-service.c -------------------------------------------------------------------------------- /libobs/obs-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-service.h -------------------------------------------------------------------------------- /libobs/obs-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-source.c -------------------------------------------------------------------------------- /libobs/obs-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-source.h -------------------------------------------------------------------------------- /libobs/obs-video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-video.c -------------------------------------------------------------------------------- /libobs/obs-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-view.c -------------------------------------------------------------------------------- /libobs/obs-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs-windows.c -------------------------------------------------------------------------------- /libobs/obs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs.c -------------------------------------------------------------------------------- /libobs/obs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs.h -------------------------------------------------------------------------------- /libobs/obs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obs.hpp -------------------------------------------------------------------------------- /libobs/obsconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obsconfig.h.in -------------------------------------------------------------------------------- /libobs/obsversion.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obsversion.c.in -------------------------------------------------------------------------------- /libobs/obsversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/obsversion.h -------------------------------------------------------------------------------- /libobs/util/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/base.c -------------------------------------------------------------------------------- /libobs/util/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/base.h -------------------------------------------------------------------------------- /libobs/util/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/bitstream.c -------------------------------------------------------------------------------- /libobs/util/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/bitstream.h -------------------------------------------------------------------------------- /libobs/util/bmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/bmem.c -------------------------------------------------------------------------------- /libobs/util/bmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/bmem.h -------------------------------------------------------------------------------- /libobs/util/c99defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/c99defs.h -------------------------------------------------------------------------------- /libobs/util/cf-lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/cf-lexer.c -------------------------------------------------------------------------------- /libobs/util/cf-lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/cf-lexer.h -------------------------------------------------------------------------------- /libobs/util/cf-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/cf-parser.c -------------------------------------------------------------------------------- /libobs/util/cf-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/cf-parser.h -------------------------------------------------------------------------------- /libobs/util/circlebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/circlebuf.h -------------------------------------------------------------------------------- /libobs/util/config-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/config-file.c -------------------------------------------------------------------------------- /libobs/util/config-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/config-file.h -------------------------------------------------------------------------------- /libobs/util/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/crc32.c -------------------------------------------------------------------------------- /libobs/util/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/crc32.h -------------------------------------------------------------------------------- /libobs/util/darray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/darray.h -------------------------------------------------------------------------------- /libobs/util/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/deque.h -------------------------------------------------------------------------------- /libobs/util/dstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/dstr.c -------------------------------------------------------------------------------- /libobs/util/dstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/dstr.h -------------------------------------------------------------------------------- /libobs/util/dstr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/dstr.hpp -------------------------------------------------------------------------------- /libobs/util/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/lexer.c -------------------------------------------------------------------------------- /libobs/util/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/lexer.h -------------------------------------------------------------------------------- /libobs/util/pipe-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/pipe-posix.c -------------------------------------------------------------------------------- /libobs/util/pipe-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/pipe-windows.c -------------------------------------------------------------------------------- /libobs/util/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/pipe.c -------------------------------------------------------------------------------- /libobs/util/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/pipe.h -------------------------------------------------------------------------------- /libobs/util/platform-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/platform-cocoa.m -------------------------------------------------------------------------------- /libobs/util/platform-nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/platform-nix.c -------------------------------------------------------------------------------- /libobs/util/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/platform.c -------------------------------------------------------------------------------- /libobs/util/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/platform.h -------------------------------------------------------------------------------- /libobs/util/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/profiler.c -------------------------------------------------------------------------------- /libobs/util/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/profiler.h -------------------------------------------------------------------------------- /libobs/util/profiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/profiler.hpp -------------------------------------------------------------------------------- /libobs/util/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/serializer.h -------------------------------------------------------------------------------- /libobs/util/simde/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /libobs/util/simde/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/simde/check.h -------------------------------------------------------------------------------- /libobs/util/simde/hedley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/simde/hedley.h -------------------------------------------------------------------------------- /libobs/util/simde/x86/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/simde/x86/mmx.h -------------------------------------------------------------------------------- /libobs/util/simde/x86/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/simde/x86/sse.h -------------------------------------------------------------------------------- /libobs/util/simde/x86/sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/simde/x86/sse2.h -------------------------------------------------------------------------------- /libobs/util/sse-intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/sse-intrin.h -------------------------------------------------------------------------------- /libobs/util/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/task.c -------------------------------------------------------------------------------- /libobs/util/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/task.h -------------------------------------------------------------------------------- /libobs/util/text-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/text-lookup.c -------------------------------------------------------------------------------- /libobs/util/text-lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/text-lookup.h -------------------------------------------------------------------------------- /libobs/util/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/threading.h -------------------------------------------------------------------------------- /libobs/util/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/utf8.c -------------------------------------------------------------------------------- /libobs/util/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/utf8.h -------------------------------------------------------------------------------- /libobs/util/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/uthash.h -------------------------------------------------------------------------------- /libobs/util/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/util.hpp -------------------------------------------------------------------------------- /libobs/util/util_uint128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/util_uint128.h -------------------------------------------------------------------------------- /libobs/util/util_uint64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/libobs/util/util_uint64.h -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/aja/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/aja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/README.md -------------------------------------------------------------------------------- /plugins/aja/aja-common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-common.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-common.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-enums.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-output.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-output.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-presets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-presets.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-presets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-presets.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-props.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-props.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-routing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-routing.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-routing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-routing.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-source.cpp -------------------------------------------------------------------------------- /plugins/aja/aja-source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-source.hpp -------------------------------------------------------------------------------- /plugins/aja/aja-ui-props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/aja-ui-props.hpp -------------------------------------------------------------------------------- /plugins/aja/audio-repack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/audio-repack.c -------------------------------------------------------------------------------- /plugins/aja/audio-repack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/audio-repack.h -------------------------------------------------------------------------------- /plugins/aja/audio-repack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/audio-repack.hpp -------------------------------------------------------------------------------- /plugins/aja/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/aja/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/aja/main.cpp -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/af-ZA.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Bistempo" 2 | AllowHEAAC="Laat HE-AAC toe" 3 | -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Битрейт" 2 | AllowHEAAC="HE-AAC рөхсәт итеү" 3 | -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Bitfart" 2 | AllowHEAAC="Tillat HE-AAC" 3 | -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/si-LK.ini: -------------------------------------------------------------------------------- 1 | AllowHEAAC="HE-AAC ඉඩදෙන්න" 2 | -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/sq-AL.ini: -------------------------------------------------------------------------------- 1 | AllowHEAAC="Lejo HE-ACC" 2 | -------------------------------------------------------------------------------- /plugins/coreaudio-encoder/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Битрейт" 2 | -------------------------------------------------------------------------------- /plugins/decklink/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/decklink/const.h -------------------------------------------------------------------------------- /plugins/decklink/mac/decklink-sdk/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/decklink/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/decklink/util.cpp -------------------------------------------------------------------------------- /plugins/decklink/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/decklink/util.hpp -------------------------------------------------------------------------------- /plugins/image-source/data/locale/pa-IN.ini: -------------------------------------------------------------------------------- 1 | ImageInput="ਤਸਵੀਰ" 2 | -------------------------------------------------------------------------------- /plugins/image-source/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | ImageInput="فوٹو" 2 | -------------------------------------------------------------------------------- /plugins/linux-alsa/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Device="Яйланма" 2 | -------------------------------------------------------------------------------- /plugins/linux-alsa/data/locale/fil-PH.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/linux-alsa/data/locale/is-IS.ini: -------------------------------------------------------------------------------- 1 | Rate="Gengi" 2 | -------------------------------------------------------------------------------- /plugins/linux-alsa/data/locale/kaa.ini: -------------------------------------------------------------------------------- 1 | Custom="Arnawlı" 2 | Device="Qurılma" 3 | -------------------------------------------------------------------------------- /plugins/linux-alsa/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Device="Eining" 2 | -------------------------------------------------------------------------------- /plugins/linux-alsa/data/locale/tl-PH.ini: -------------------------------------------------------------------------------- 1 | AlsaInput="Aparatong Pangkuha ng Audio (APA)" 2 | -------------------------------------------------------------------------------- /plugins/linux-alsa/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- 1 | Device="Җайланма" 2 | -------------------------------------------------------------------------------- /plugins/linux-alsa/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | AlsaInput="آلہ صوت کھینچنا (ٓALSA)" 2 | Device="ڈیوائس" 3 | -------------------------------------------------------------------------------- /plugins/linux-capture/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/linux-capture/README -------------------------------------------------------------------------------- /plugins/linux-capture/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | XServer="X-Сервер" 2 | -------------------------------------------------------------------------------- /plugins/linux-capture/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/linux-jack/data/locale/af-ZA.ini: -------------------------------------------------------------------------------- 1 | Channels="Aantal kanale" 2 | -------------------------------------------------------------------------------- /plugins/linux-jack/data/locale/da-DK.ini: -------------------------------------------------------------------------------- 1 | Channels="Antal kanaler" 2 | -------------------------------------------------------------------------------- /plugins/linux-jack/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/linux-jack/data/locale/nl-NL.ini: -------------------------------------------------------------------------------- 1 | Channels="Aantal Kanalen" 2 | -------------------------------------------------------------------------------- /plugins/linux-jack/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Channels="Antal kanalar" 2 | -------------------------------------------------------------------------------- /plugins/linux-jack/data/locale/si-LK.ini: -------------------------------------------------------------------------------- 1 | Channels="නාලිකා ගණන" 2 | -------------------------------------------------------------------------------- /plugins/linux-pipewire/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/linux-pipewire/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Device="Яйланма" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/fil-PH.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/is-IS.ini: -------------------------------------------------------------------------------- 1 | Default="Sjálfgefið" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/kaa.ini: -------------------------------------------------------------------------------- 1 | Device="Qurılma" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Device="Eining" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Device="Periferic" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/ta-IN.ini: -------------------------------------------------------------------------------- 1 | Device="சாதனம்" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/th-TH.ini: -------------------------------------------------------------------------------- 1 | Device="อุปกรณ์" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- 1 | Device="Җайланма" 2 | -------------------------------------------------------------------------------- /plugins/linux-pulseaudio/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | PulseInput="مدخل صوت پکڑنا (PulseAudio)" 2 | -------------------------------------------------------------------------------- /plugins/linux-v4l2/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Device="Eining" 2 | -------------------------------------------------------------------------------- /plugins/linux-v4l2/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | CameraCtrls="Contraròtles de la camèra" 2 | -------------------------------------------------------------------------------- /plugins/mac-avcapture/data/locale/is-IS.ini: -------------------------------------------------------------------------------- 1 | Resolution="Upplausn" 2 | -------------------------------------------------------------------------------- /plugins/mac-avcapture/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Device="Eining" 2 | -------------------------------------------------------------------------------- /plugins/mac-capture/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/mac-capture/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | CoreAudio.InputCapture="مدخل صوت پکڑنا" 2 | -------------------------------------------------------------------------------- /plugins/mac-syphon/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Source="Сығанаҡ" 2 | -------------------------------------------------------------------------------- /plugins/mac-syphon/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Source="Font" 2 | -------------------------------------------------------------------------------- /plugins/mac-syphon/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- 1 | Source="Чыганак" 2 | -------------------------------------------------------------------------------- /plugins/mac-syphon/syphon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/mac-syphon/syphon.m -------------------------------------------------------------------------------- /plugins/mac-videotoolbox/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Profile="Perfil" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/data/locale/en-US.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/camera-extension/.gitignore: -------------------------------------------------------------------------------- 1 | build_macos -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS Əyani Veb Kamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/et-EE.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS virtuaalne veebikaamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/eu-ES.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS webcam birtuala" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/fil-PH.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Kamarang Birtuwal macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/gd-GB.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Camara-lìn biortail macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/gl-ES.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Cámara Web Virtual do macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/kab-KAB.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="takamiṛat tuhlist macOS" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/nb-NO.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="macOS Virtuelt nettkamera" 2 | -------------------------------------------------------------------------------- /plugins/mac-virtualcam/src/obs-plugin/data/locale/szl-PL.ini: -------------------------------------------------------------------------------- 1 | Plugin_Name="Wirtualno kamera macOS" 2 | -------------------------------------------------------------------------------- /plugins/obs-ffmpeg/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Profile="Perfil" 2 | -------------------------------------------------------------------------------- /plugins/obs-ffmpeg/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | Input="ادخال" 2 | -------------------------------------------------------------------------------- /plugins/obs-filters/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- 1 | None="Heç biri" 2 | -------------------------------------------------------------------------------- /plugins/obs-filters/rnnoise/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/af-ZA.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Bistempo" 2 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Битрейт" 2 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/fa-IR.ini: -------------------------------------------------------------------------------- 1 | Bitrate="نرخ بیت" 2 | Afterburner="فعال سازی رمزگذاری AAC خروجی" 3 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/kaa.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Bit tezligi" 2 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/ko-KR.ini: -------------------------------------------------------------------------------- 1 | Bitrate="비트레이트" 2 | Afterburner="AAC 에프터버너 사용" 3 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/pt-BR.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Taxa de Bits" 2 | Afterburner="Habilitar Pós-Combustor AAC" 3 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/szl-PL.ini: -------------------------------------------------------------------------------- 1 | Afterburner="Kodowanie AAC we wyższyj jakości" 2 | -------------------------------------------------------------------------------- /plugins/obs-libfdk/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Битрейт" 2 | -------------------------------------------------------------------------------- /plugins/obs-nvenc/data/locale/is-IS.ini: -------------------------------------------------------------------------------- 1 | Tuning="Stilling" 2 | Profile="Prófíll" 3 | -------------------------------------------------------------------------------- /plugins/obs-nvenc/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- 1 | Tuning.hq="Югары сыйфат" 2 | SplitEncode.Auto="Автоматик" 3 | -------------------------------------------------------------------------------- /plugins/obs-nvenc/nvenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/obs-nvenc/nvenc.c -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | FLVOutput.FilePath="Файл юлы" 2 | Default="Ғәҙәти" 3 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/mn-MN.ini: -------------------------------------------------------------------------------- 1 | Default="Үндсэн" 2 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Default="Standard" 2 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/ug-CN.ini: -------------------------------------------------------------------------------- 1 | Default="كۆڭۈلدىكى" 2 | -------------------------------------------------------------------------------- /plugins/obs-outputs/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | RTMPStream="RTMP نشر" 2 | -------------------------------------------------------------------------------- /plugins/obs-outputs/librtmp/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-outputs/net-if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/obs-outputs/net-if.c -------------------------------------------------------------------------------- /plugins/obs-outputs/net-if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/obs-outputs/net-if.h -------------------------------------------------------------------------------- /plugins/obs-outputs/obs-output-ver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define MODULE_NAME "streamlabs-obs output module" 4 | -------------------------------------------------------------------------------- /plugins/obs-outputs/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/obs-outputs/utils.h -------------------------------------------------------------------------------- /plugins/obs-qsv11/bits/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/obs-qsv11/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/obs-qsv11/data/locale/is-IS.ini: -------------------------------------------------------------------------------- 1 | BFrames="B Rammi" 2 | -------------------------------------------------------------------------------- /plugins/obs-qsv11/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Profile="Perfil" 2 | -------------------------------------------------------------------------------- /plugins/obs-text/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- 1 | Transform.None="Heç biri" 2 | -------------------------------------------------------------------------------- /plugins/obs-vst/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/obs-vst/obs-vst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/obs-vst/obs-vst.cpp -------------------------------------------------------------------------------- /plugins/obs-webrtc/data/locale/da-DK.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/obs-webrtc/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/obs-x264/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- 1 | None="(Heç biri)" 2 | -------------------------------------------------------------------------------- /plugins/obs-x264/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | Profile="Perfil" 2 | -------------------------------------------------------------------------------- /plugins/obs-x264/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- 1 | Bitrate="Битрейт" 2 | Profile="Профиль" 3 | None="(Юк)" 4 | -------------------------------------------------------------------------------- /plugins/obs-x264/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | Bitrate="بٹریٹ" 2 | -------------------------------------------------------------------------------- /plugins/obs-x264/obs-x264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/obs-x264/obs-x264.c -------------------------------------------------------------------------------- /plugins/oss-audio/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/oss-audio/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Channels="Kanalar" 2 | Default="Standard" 3 | -------------------------------------------------------------------------------- /plugins/oss-audio/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | OSSInput="مدخل صوت پکڑنا (OSS)" 2 | -------------------------------------------------------------------------------- /plugins/oss-audio/oss-platform.h.in: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include <@OSS_HEADER_NAME@> 4 | -------------------------------------------------------------------------------- /plugins/rtmp-services/data/locale/az-AZ.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/rtmp-services/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | StreamingServices="نشر سہولیات" 2 | -------------------------------------------------------------------------------- /plugins/sndio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/sndio/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/sndio/data/locale/af-ZA.ini: -------------------------------------------------------------------------------- 1 | Channels="Aantal kanale" 2 | Device="Toestel" 3 | -------------------------------------------------------------------------------- /plugins/sndio/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/sndio/data/locale/kaa.ini: -------------------------------------------------------------------------------- 1 | Channels="Kanallar sanı" 2 | Device="Qurılma" 3 | -------------------------------------------------------------------------------- /plugins/sndio/data/locale/nl-NL.ini: -------------------------------------------------------------------------------- 1 | Channels="Aantal kanalen" 2 | Device="Apparaat" 3 | -------------------------------------------------------------------------------- /plugins/sndio/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Channels="Antal kanalar" 2 | Device="Eining" 3 | -------------------------------------------------------------------------------- /plugins/sndio/data/locale/tt-RU.ini: -------------------------------------------------------------------------------- 1 | Device="Җайланма" 2 | -------------------------------------------------------------------------------- /plugins/sndio/sndio-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/sndio/sndio-input.c -------------------------------------------------------------------------------- /plugins/sndio/sndio-input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/sndio/sndio-input.h -------------------------------------------------------------------------------- /plugins/sndio/sndio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/plugins/sndio/sndio.c -------------------------------------------------------------------------------- /plugins/vlc-video/data/locale/oc-FR.ini: -------------------------------------------------------------------------------- 1 | VLCSource="Font vidèo VLC" 2 | -------------------------------------------------------------------------------- /plugins/win-capture/compat-format-ver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define COMPAT_FORMAT_VERSION 1 4 | -------------------------------------------------------------------------------- /plugins/win-capture/d3d8-api/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | SortIncludes: false 3 | DisableFormat: true 4 | -------------------------------------------------------------------------------- /plugins/win-capture/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Monitor="Экран" 2 | Mode="Үтәмлек" 3 | -------------------------------------------------------------------------------- /plugins/win-capture/get-graphics-offsets/ddraw-offsets.cpp: -------------------------------------------------------------------------------- 1 | /* TODO */ 2 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/ba-RU.ini: -------------------------------------------------------------------------------- 1 | Device="Яйланма" 2 | Default="Ғәҙәти" 3 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/en-GB.ini: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/is-IS.ini: -------------------------------------------------------------------------------- 1 | ApplicationAudioCapture="Umsókn um hljóðupptöku " 2 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/lt-LT.ini: -------------------------------------------------------------------------------- 1 | Device="Įrenginys" 2 | Default="Numatytas" 3 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/nn-NO.ini: -------------------------------------------------------------------------------- 1 | Device="Eining" 2 | Default="Standard" 3 | -------------------------------------------------------------------------------- /plugins/win-wasapi/data/locale/ur-PK.ini: -------------------------------------------------------------------------------- 1 | AudioInput="مدخل صوت پکڑنا" 2 | -------------------------------------------------------------------------------- /shared/bpm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/shared/bpm/CMakeLists.txt -------------------------------------------------------------------------------- /shared/bpm/bpm-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/shared/bpm/bpm-internal.h -------------------------------------------------------------------------------- /shared/bpm/bpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/shared/bpm/bpm.c -------------------------------------------------------------------------------- /shared/bpm/bpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/shared/bpm/bpm.h -------------------------------------------------------------------------------- /slobs_CI/build-script-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/slobs_CI/build-script-osx.sh -------------------------------------------------------------------------------- /slobs_CI/sentry-osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/slobs_CI/sentry-osx.py -------------------------------------------------------------------------------- /slobs_CI/win-build-grpc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/slobs_CI/win-build-grpc.cmd -------------------------------------------------------------------------------- /slobs_CI/win-build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/slobs_CI/win-build.cmd -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmocka/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/cmocka/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmocka/test_bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/cmocka/test_bitstream.c -------------------------------------------------------------------------------- /test/cmocka/test_darray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/cmocka/test_darray.c -------------------------------------------------------------------------------- /test/cmocka/test_os_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/cmocka/test_os_path.c -------------------------------------------------------------------------------- /test/osx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/osx/CMakeLists.txt -------------------------------------------------------------------------------- /test/osx/test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/osx/test.mm -------------------------------------------------------------------------------- /test/test-input/test-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/test-input/test-input.c -------------------------------------------------------------------------------- /test/win/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/win/CMakeLists.txt -------------------------------------------------------------------------------- /test/win/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/obs-studio/HEAD/test/win/test.cpp --------------------------------------------------------------------------------