forked from reddit/rpan-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 887fcb7
Showing
3,751 changed files
with
591,476 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# $FreeBSD$ | ||
|
||
freebsd_instance: | ||
image: freebsd-12-1-release-amd64 | ||
|
||
env: | ||
CIRRUS_CLONE_DEPTH: 1 | ||
|
||
task: | ||
install_script: | ||
- pkg install -y | ||
v4l_compat swig30 ffmpeg curl dbus fdk-aac fontconfig | ||
freetype2 jackit jansson luajit mbedtls pulseaudio speexdsp | ||
libsysinfo libudev-devd libv4l libx264 cmake ninja | ||
mesa-libs lua52 pkgconf | ||
qt5-svg qt5-qmake qt5-buildtools qt5-x11extras qt5-xml | ||
script: | ||
- mkdir build | ||
- cd build | ||
- cmake -DUNIX_STRUCTURE=1 -GNinja .. | ||
- ninja |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
# please use clang-format version 8 or later | ||
|
||
Standard: Cpp11 | ||
AccessModifierOffset: -8 | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveAssignments: false | ||
AlignConsecutiveDeclarations: false | ||
AlignEscapedNewlines: Left | ||
AlignOperands: true | ||
AlignTrailingComments: true | ||
#AllowAllArgumentsOnNextLine: false # requires clang-format 9 | ||
#AllowAllConstructorInitializersOnNextLine: false # requires clang-format 9 | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: Inline | ||
AllowShortIfStatementsOnASingleLine: false | ||
#AllowShortLambdasOnASingleLine: Inline # requires clang-format 9 | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: false | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BraceWrapping: | ||
AfterClass: false | ||
AfterControlStatement: false | ||
AfterEnum: false | ||
AfterFunction: true | ||
AfterNamespace: false | ||
AfterObjCDeclaration: false | ||
AfterStruct: false | ||
AfterUnion: false | ||
AfterExternBlock: false | ||
BeforeCatch: false | ||
BeforeElse: false | ||
IndentBraces: false | ||
SplitEmptyFunction: true | ||
SplitEmptyRecord: true | ||
SplitEmptyNamespace: true | ||
BreakBeforeBinaryOperators: None | ||
BreakBeforeBraces: Custom | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializers: BeforeColon | ||
BreakStringLiterals: false # apparently unpredictable | ||
ColumnLimit: 80 | ||
CompactNamespaces: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
ConstructorInitializerIndentWidth: 8 | ||
ContinuationIndentWidth: 8 | ||
Cpp11BracedListStyle: true | ||
DerivePointerAlignment: false | ||
DisableFormat: false | ||
FixNamespaceComments: false | ||
ForEachMacros: | ||
- 'json_object_foreach' | ||
- 'json_object_foreach_safe' | ||
- 'json_array_foreach' | ||
IncludeBlocks: Preserve | ||
IndentCaseLabels: false | ||
IndentPPDirectives: None | ||
IndentWidth: 8 | ||
IndentWrappedFunctionNames: false | ||
KeepEmptyLinesAtTheStartOfBlocks: true | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: None | ||
#ObjCBinPackProtocolList: Auto # requires clang-format 7 | ||
ObjCBlockIndentWidth: 8 | ||
ObjCSpaceAfterProperty: true | ||
ObjCSpaceBeforeProtocolList: true | ||
|
||
PenaltyBreakAssignment: 10 | ||
PenaltyBreakBeforeFirstCallParameter: 30 | ||
PenaltyBreakComment: 10 | ||
PenaltyBreakFirstLessLess: 0 | ||
PenaltyBreakString: 10 | ||
PenaltyExcessCharacter: 100 | ||
PenaltyReturnTypeOnItsOwnLine: 60 | ||
|
||
PointerAlignment: Right | ||
ReflowComments: false | ||
SortIncludes: false | ||
SortUsingDeclarations: false | ||
SpaceAfterCStyleCast: false | ||
#SpaceAfterLogicalNot: false # requires clang-format 9 | ||
SpaceAfterTemplateKeyword: false | ||
SpaceBeforeAssignmentOperators: true | ||
#SpaceBeforeCtorInitializerColon: true # requires clang-format 7 | ||
#SpaceBeforeInheritanceColon: true # requires clang-format 7 | ||
SpaceBeforeParens: ControlStatements | ||
#SpaceBeforeRangeBasedForLoopColon: true # requires clang-format 7 | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 1 | ||
SpacesInAngles: false | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInContainerLiterals: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
#StatementMacros: # requires clang-format 8 | ||
# - 'Q_OBJECT' | ||
TabWidth: 8 | ||
#TypenameMacros: # requires clang-format 9 | ||
# - 'DARRAY' | ||
UseTab: ForContinuationAndIndentation | ||
--- | ||
Language: ObjC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
# Since OBS follows the Linux kernel coding style I have started this file to | ||
# help with automatically setting various text editors to those requirements. | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file. | ||
[*] | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 8 | ||
|
||
# As per notr1ch, for 3rd party code that's a part of obs-outputs. | ||
[plugins/obs-outputs/librtmp/*.{cpp,c,h}] | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
f53df7da64d2dfc542c24656720b2f47c8957164 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
* text=auto | ||
|
||
*.sln text eol=crlf | ||
*.vcproj text eol=crlf | ||
*.vcxproj text eol=crlf | ||
*.vcxproj text eol=crlf | ||
*.vcxproj.filters text eol=crlf | ||
|
||
cmake/ALL_BUILD.vcxproj.user.in text eol=crlf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
open_collective: obsproject | ||
patreon: obsproject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
#binaries | ||
*.exe | ||
*.dll | ||
*.dylib | ||
*.so | ||
|
||
#cmake | ||
/cmbuild/ | ||
/build/ | ||
/build32/ | ||
/build64/ | ||
/release/ | ||
/release32/ | ||
/release64/ | ||
/debug/ | ||
/debug32/ | ||
/debug64/ | ||
/builds/ | ||
.vs/ | ||
*.o.d | ||
*.ninja | ||
.ninja* | ||
.dirstamp | ||
|
||
#xcode | ||
*.xcodeproj/ | ||
|
||
#clion | ||
.idea/ | ||
|
||
#other stuff (windows stuff, qt moc stuff, etc) | ||
Release_MD/ | ||
Release/ | ||
Debug/ | ||
x64/ | ||
ipch/ | ||
GeneratedFiles/ | ||
.moc/ | ||
/UI/obs.rc | ||
.vscode/ | ||
|
||
/other/ | ||
|
||
#make stuff | ||
configure | ||
depcomp | ||
install-sh | ||
Makefile.in | ||
Makefile | ||
|
||
#python | ||
__pycache__ | ||
|
||
#sphinx | ||
/docs/sphinx/_build/* | ||
!/docs/sphinx/_build/.gitignore | ||
!/docs/sphinx/Makefile | ||
|
||
#random useless file stuff | ||
*.dmg | ||
*.app | ||
.DS_Store | ||
.directory | ||
.hg | ||
.depend | ||
tags | ||
*.trace | ||
*.vsp | ||
*.psess | ||
*.swp | ||
*.dat | ||
*.clbin | ||
*.log | ||
*.tlog | ||
*.sdf | ||
*.opensdf | ||
*.xml | ||
*.ipch | ||
*.css | ||
*.xslt | ||
*.aps | ||
*.suo | ||
*.ncb | ||
*.user | ||
*.lo | ||
*.ilk | ||
*.la | ||
*.o | ||
*.obj | ||
*.pdb | ||
*.res | ||
*.dep | ||
*.zip | ||
*.lnk | ||
*.chm | ||
*~ | ||
.DS_Store | ||
*/.DS_Store | ||
*/**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[submodule "plugins/win-dshow/libdshowcapture"] | ||
path = plugins/win-dshow/libdshowcapture | ||
url = https://github.com/obsproject/libdshowcapture.git | ||
[submodule "plugins/mac-syphon/syphon-framework"] | ||
path = plugins/mac-syphon/syphon-framework | ||
url = https://github.com/palana/Syphon-Framework.git | ||
[submodule "plugins/enc-amf"] | ||
path = plugins/enc-amf | ||
url = https://github.com/obsproject/obs-amd-encoder.git | ||
[submodule "plugins/obs-browser"] | ||
path = plugins/obs-browser | ||
url = https://github.com/reddit/obs-browser-plugin.git | ||
[submodule "plugins/obs-vst"] | ||
path = plugins/obs-vst | ||
url = https://github.com/obsproject/obs-vst.git | ||
[submodule "plugins/obs-outputs/ftl-sdk"] | ||
path = plugins/obs-outputs/ftl-sdk | ||
url = https://github.com/Mixer/ftl-sdk.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Jim <[email protected]> | ||
Zachary Lund <[email protected]> | ||
Benjamin Klettbach <[email protected]> | ||
BtbN <[email protected]> | ||
John Bradley <[email protected]> | ||
HomeWorld <[email protected]> hwdro <[email protected]> | ||
Michael Fabian Dirks <[email protected]> <[email protected]> | ||
Martell Malone <[email protected]> |
Oops, something went wrong.