-
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 501e456
Showing
446 changed files
with
140,159 additions
and
0 deletions.
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,115 @@ | ||
--- | ||
Language: Cpp | ||
# BasedOnStyle: LLVM | ||
AccessModifierOffset: -2 | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveAssignments: true | ||
AlignConsecutiveDeclarations: true | ||
AlignEscapedNewlines: Right | ||
AlignOperands: true | ||
AlignTrailingComments: true | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
AllowShortBlocksOnASingleLine: true | ||
AllowShortCaseLabelsOnASingleLine: true | ||
AllowShortFunctionsOnASingleLine: Inline | ||
AllowShortIfStatementsOnASingleLine: false | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: false | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BraceWrapping: | ||
AfterClass: true | ||
AfterControlStatement: true | ||
AfterEnum: true | ||
AfterFunction: true | ||
AfterNamespace: true | ||
AfterObjCDeclaration: false | ||
AfterStruct: true | ||
AfterUnion: true | ||
AfterExternBlock: true | ||
BeforeCatch: true | ||
BeforeElse: true | ||
IndentBraces: false | ||
SplitEmptyFunction: false | ||
SplitEmptyRecord: false | ||
SplitEmptyNamespace: false | ||
BreakBeforeBinaryOperators: NonAssignment | ||
BreakBeforeBraces: Allman | ||
BreakBeforeInheritanceComma: false | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializersBeforeComma: true | ||
BreakConstructorInitializers: BeforeComma | ||
BreakAfterJavaFieldAnnotations: false | ||
BreakStringLiterals: true | ||
ColumnLimit: 120 | ||
CommentPragmas: '^ IWYU pragma:' | ||
CompactNamespaces: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
ConstructorInitializerIndentWidth: 2 | ||
ContinuationIndentWidth: 2 | ||
Cpp11BracedListStyle: false | ||
DerivePointerAlignment: false | ||
DisableFormat: false | ||
ExperimentalAutoDetectBinPacking: false | ||
FixNamespaceComments: true | ||
ForEachMacros: | ||
- foreach | ||
- Q_FOREACH | ||
- BOOST_FOREACH | ||
IncludeBlocks: Preserve | ||
IncludeCategories: | ||
- Regex: '^"(llvm|llvm-c|clang|clang-c)/' | ||
Priority: 2 | ||
- Regex: '^(<|"(gtest|gmock|isl|json)/)' | ||
Priority: 3 | ||
- Regex: '.*' | ||
Priority: 1 | ||
IncludeIsMainRegex: '(Test)?$' | ||
IndentCaseLabels: false | ||
IndentPPDirectives: None | ||
IndentWidth: 2 | ||
IndentWrappedFunctionNames: true | ||
JavaScriptQuotes: Leave | ||
JavaScriptWrapImports: true | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MacroBlockBegin: '' | ||
MacroBlockEnd: '' | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: All | ||
ObjCBinPackProtocolList: Auto | ||
ObjCBlockIndentWidth: 2 | ||
ObjCSpaceAfterProperty: false | ||
ObjCSpaceBeforeProtocolList: true | ||
PenaltyBreakAssignment: 2 | ||
PenaltyBreakBeforeFirstCallParameter: 19 | ||
PenaltyBreakComment: 300 | ||
PenaltyBreakFirstLessLess: 120 | ||
PenaltyBreakString: 1000 | ||
PenaltyExcessCharacter: 1000000 | ||
PenaltyReturnTypeOnItsOwnLine: 60 | ||
PointerAlignment: Right | ||
ReflowComments: true | ||
SortIncludes: false | ||
SortUsingDeclarations: true | ||
SpaceAfterCStyleCast: true | ||
SpaceAfterTemplateKeyword: false | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeCtorInitializerColon: true | ||
SpaceBeforeInheritanceColon: true | ||
SpaceBeforeParens: ControlStatements | ||
SpaceBeforeRangeBasedForLoopColon: false | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 3 | ||
SpacesInAngles: false | ||
SpacesInContainerLiterals: true | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
Standard: Cpp11 | ||
TabWidth: 8 | ||
UseTab: Never | ||
... | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
# EditorConfig: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default indent style and size | ||
[*.{c,cpp,cxx,h,hpp,py}] | ||
indent_style = space | ||
indent_size = 2 |
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,9 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# Explicitly declare text files you want to always be normalized and converted | ||
# to native line endings on checkout. | ||
*.c text | ||
*.cpp text | ||
*.h text | ||
|
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,12 @@ | ||
dec.yuv | ||
rec.yuv | ||
str.bin | ||
/build/ | ||
/bin/ | ||
/lib/ | ||
core | ||
deploy | ||
*.sdf | ||
*.suo | ||
.vs/ | ||
.vscode/ |
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,84 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>NextSoftware</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.python.pydev.PyDevBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> | ||
<triggers>clean,full,incremental,</triggers> | ||
<arguments> | ||
<dictionary> | ||
<key>?name?</key> | ||
<value></value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.append_environment</key> | ||
<value>true</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.autoBuildTarget</key> | ||
<value>all</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.buildArguments</key> | ||
<value>variant=debug link=static -j</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.buildCommand</key> | ||
<value>bjam.py</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.cleanBuildTarget</key> | ||
<value>install --clean-all</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.contents</key> | ||
<value>org.eclipse.cdt.make.core.activeConfigSettings</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.enableAutoBuild</key> | ||
<value>false</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.enableCleanBuild</key> | ||
<value>true</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.enableFullBuild</key> | ||
<value>true</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.fullBuildTarget</key> | ||
<value>-q install</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.stopOnError</key> | ||
<value>true</value> | ||
</dictionary> | ||
<dictionary> | ||
<key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key> | ||
<value>false</value> | ||
</dictionary> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.cdt.core.ccnature</nature> | ||
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> | ||
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> | ||
<nature>org.eclipse.cdt.core.cnature</nature> | ||
<nature>org.python.pydev.pythonNature</nature> | ||
</natures> | ||
</projectDescription> |
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,5 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<?eclipse-pydev version="1.0"?><pydev_project> | ||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property> | ||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property> | ||
</pydev_project> |
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,151 @@ | ||
# minimum required cmake version | ||
cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) | ||
|
||
# project name | ||
if( EXTENSION_360_VIDEO ) | ||
project( NextSoftware360 ) | ||
else() | ||
project( NextSoftware ) | ||
endif() | ||
|
||
# use ccache | ||
find_program( CCACHE_FOUND ccache ) | ||
if( CCACHE_FOUND ) | ||
message( STATUS "ccache found. using it." ) | ||
set_property( GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache ) | ||
set_property( GLOBAL PROPERTY RULE_LAUNCH_LINK ccache ) | ||
endif() | ||
|
||
# set default CMAKE_BUILD_TYPE to Release if not set | ||
if( NOT CMAKE_BUILD_TYPE ) | ||
set( CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE ) | ||
endif() | ||
|
||
if( CMAKE_SYSTEM_NAME STREQUAL "Linux" ) | ||
if( CMAKE_CXX_COMPILER_ID STREQUAL "GNU" ) | ||
set( USE_ADDRESS_SANITIZER OFF CACHE BOOL "Compiles with -sanitize=address and links to libasan" ) | ||
endif() | ||
endif() | ||
|
||
set( EXTENSION_360_VIDEO OFF CACHE BOOL "If EXTENSION_360_VIDEO is on, 360Lib will be added" ) | ||
set( SKIP_SVN_REVISION OFF CACHE BOOL "Don't add SVN path and revision info to the encoder and decoder output" ) | ||
set( SET_ENABLE_TRACING OFF CACHE BOOL "Set ENABLE_TRACING as a compiler flag" ) | ||
set( ENABLE_TRACING OFF CACHE BOOL "If SET_ENABLE_TRACING is on, it will be set to this value" ) | ||
set( ENABLE_VTM OFF CACHE BOOL "If ENABLE_VTM is on, the software will be compiled as VTM" ) | ||
|
||
if( CMAKE_COMPILER_IS_GNUCC ) | ||
set( BUILD_STATIC OFF CACHE BOOL "Build static executables" ) | ||
endif() | ||
|
||
# set c++11 | ||
set( CMAKE_CXX_STANDARD 11 ) | ||
set( CMAKE_CXX_STANDARD_REQUIRED ON ) | ||
|
||
# compile everything position independent (even static libraries) | ||
set( CMAKE_POSITION_INDEPENDENT_CODE TRUE ) | ||
|
||
# set verbose compile options | ||
#set( CMAKE_VERBOSE_MAKEFILE ON ) | ||
|
||
# use folders in IDEs for projects (e.g. lib sample app test) | ||
set_property( GLOBAL PROPERTY USE_FOLDERS ON ) | ||
|
||
# Include a utility module providing functions, macros, and settings | ||
include( ${CMAKE_SOURCE_DIR}/cmake/CMakeBuild/cmake/modules/BBuildEnv.cmake ) | ||
|
||
# Enable multithreading | ||
bb_multithreading() | ||
|
||
find_package(OpenMP) | ||
|
||
if( OpenMP_FOUND ) | ||
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}" ) | ||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}" ) | ||
set( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${OpenMP_EXE_LINKER_FLAGS}" ) | ||
|
||
set( SET_ENABLE_SPLIT_PARALLELISM OFF CACHE BOOL "Set ENABLE_SPLIT_PARALLELISM as a compiler flag" ) | ||
set( ENABLE_SPLIT_PARALLELISM OFF CACHE BOOL "If SET_ENABLE_SPLIT_PARALLELISM is on, it will be set to this value" ) | ||
set( SET_ENABLE_WPP_PARALLELISM OFF CACHE BOOL "Set ENABLE_WPP_PARALLELISM as a compiler flag" ) | ||
set( ENABLE_WPP_PARALLELISM OFF CACHE BOOL "If SET_ENABLE_WPP_PARALLELISM is on, it will be set to this value" ) | ||
endif() | ||
|
||
# Enable warnings for some generators and toolsets. | ||
bb_enable_warnings( gcc warnings-as-errors -Wno-sign-compare ) | ||
# bb_enable_warnings( gcc -Wno-unused-variable ) | ||
# bb_enable_warnings( gcc-4.8 warnings-as-errors -Wno-unused-variable ) | ||
|
||
if( XCODE ) | ||
bb_enable_warnings( clang warnings-as-errors | ||
-Wno-deprecated-declarations | ||
-Wno-unknown-attributes | ||
-Wno-deprecated-register | ||
-Wno-pessimizing-move | ||
-Wno-absolute-value | ||
-Wno-unused-const-variable ) | ||
else() | ||
bb_enable_warnings( clang warnings-as-errors | ||
-Wno-unknown-attributes | ||
-Wno-deprecated-register | ||
-Wno-pessimizing-move | ||
-Wno-absolute-value | ||
-Wno-unused-const-variable ) | ||
endif() | ||
#bb_enable_warnings( clang warnings-as-errors ) | ||
|
||
# enable warnings | ||
bb_enable_warnings( msvc warnings-as-errors "/wd4996" ) | ||
|
||
# enable sse4.1 build for all source files for gcc and clang | ||
if( UNIX ) | ||
add_compile_options( "-msse4.1" ) | ||
endif() | ||
|
||
# enable parallel build for Visual Studio | ||
if( MSVC ) | ||
add_compile_options( "/MP" ) | ||
add_compile_options( "/EHsc" ) | ||
endif() | ||
|
||
# set address sanitizer compiler arguments | ||
if( CMAKE_CXX_COMPILER_ID STREQUAL "GNU" ) | ||
if( CMAKE_SYSTEM_NAME STREQUAL "Linux" ) | ||
if( USE_ADDRESS_SANITIZER ) | ||
# add compile options | ||
add_compile_options( "-fsanitize=address" ) | ||
endif() | ||
endif() | ||
|
||
if( CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0 ) | ||
add_compile_options( "-fabi-version=6" ) | ||
endif() | ||
endif() | ||
|
||
# modify .lldbinit for lldb custom data formatters | ||
if( XCODE ) | ||
set( LLDB_INSTALL_ROOT "$ENV{HOME}/.lldb.d" ) | ||
set( LLDBINIT_FILE "$ENV{HOME}/.lldbinit" ) | ||
set( ENABLE_LLDBINIT_UPDATE ON ) | ||
# add custom target to install LLDB files. | ||
add_subdirectory( "lldb" ) | ||
endif() | ||
|
||
# add needed subdirectories | ||
add_subdirectory( "source/Lib/CommonLib" ) | ||
add_subdirectory( "source/Lib/CommonAnalyserLib" ) | ||
if( EXTENSION_360_VIDEO ) | ||
add_subdirectory( "source/Lib/Lib360" ) | ||
add_subdirectory( "source/Lib/AppEncHelper360" ) | ||
endif() | ||
add_subdirectory( "source/Lib/DecoderAnalyserLib" ) | ||
add_subdirectory( "source/Lib/DecoderLib" ) | ||
add_subdirectory( "source/Lib/EncoderLib" ) | ||
add_subdirectory( "source/Lib/Utilities" ) | ||
|
||
add_subdirectory( "source/App/DecoderAnalyserApp" ) | ||
add_subdirectory( "source/App/DecoderApp" ) | ||
add_subdirectory( "source/App/EncoderApp" ) | ||
add_subdirectory( "source/App/SEIRemovalApp" ) | ||
add_subdirectory( "source/App/Parcat" ) | ||
if( EXTENSION_360_VIDEO ) | ||
add_subdirectory( "source/App/utils/360ConvertApp" ) | ||
endif() |
Oops, something went wrong.