-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 335-buffer-not-being-flushed-when-the-input-…
…buffer-size-is-less-than-set-buffer_size-in-audiototextxform-module
- Loading branch information
Showing
151 changed files
with
5,800 additions
and
679 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,2 @@ | ||
data/mp4Reader_saveOrCompare/jpeg/*.jpg filter=lfs diff=lfs merge=lfs -text | ||
data/mp4Reader_saveOrCompare/h264/*.h264 filter=lfs diff=lfs merge=lfs -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
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
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
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
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
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,27 @@ | ||
name: Doxygen Action | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Update Footer with Commit Hash | ||
run: | | ||
COMMIT_HASH=$(git rev-parse --short HEAD) | ||
sed -i "s/@COMMIT_HASH@/$COMMIT_HASH/g" data/gh-pages-assets/pages/footer.html | ||
- name: Doxygen Action | ||
uses: mattnotmitt/[email protected] | ||
with: | ||
doxyfile-path: "./Doxyfile" | ||
working-directory: "." | ||
|
||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./documentation/html |
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 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/mirrors-clang-format | ||
rev: v17.0.6 | ||
hooks: | ||
- id: clang-format |
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,57 @@ | ||
# Doxyfile configuration file | ||
# Project name and version | ||
PROJECT_NAME = "ApraPipes" | ||
PROJECT_NUMBER = 1.0 | ||
# The directory where the documentation will be created | ||
OUTPUT_DIRECTORY = ./documentation | ||
# The root directory of the source code | ||
INPUT = ./base/include ./base/src ./data/gh-pages-assets/pages/index.md ./data/gh-pages-assets/pages/introduction.md ./data/gh-pages-assets/pages/Tutorial_Adding_New_Module.md ./data/gh-pages-assets/pages/CUDAKernelProgrammingGuide.md | ||
# File patterns to include in the documentation | ||
FILE_PATTERNS = *.h *.hpp *.c *.cpp *.md | ||
# Exclude directories and files | ||
EXCLUDE = * | ||
# Recurse through subdirectories | ||
RECURSIVE = YES | ||
# Generate documentation for all entities | ||
EXTRACT_ALL = YES | ||
# Strip implementation details from documentation | ||
EXTRACT_PRIVATE = YES | ||
EXTRACT_STATIC = YES | ||
HIDE_UNDOC_MEMBERS = YES | ||
HIDE_UNDOC_CLASSES = YES | ||
MARKDOWN_SUPPORT = YES | ||
USE_MDFILE_AS_MAINPAGE = index.md | ||
# Configuration options for HTML output | ||
GENERATE_HTML = YES | ||
HTML_OUTPUT = html | ||
HTML_FILE_EXTENSION = .html | ||
HTML_COLORSTYLE = LIGHT | ||
HTML_COLORSTYLE_HUE = 77 | ||
HTML_COLORSTYLE_SAT = 147 | ||
HTML_COLORSTYLE_GAMMA = 115 | ||
HTML_FOOTER = data/gh-pages-assets/pages/footer.html | ||
HTML_HEADER = data/gh-pages-assets/pages/logo.html | ||
|
||
# Configuration options for LaTeX output | ||
GENERATE_LATEX = NO | ||
# Configuration options for Man pages (UNIX specific) | ||
GENERATE_MAN = NO | ||
LATEX_OUTPUT = latex | ||
# Additional include paths | ||
INCLUDE_PATH = | ||
# Predefined macros | ||
PREDEFINED = | ||
# Enable collaboration diagram | ||
HAVE_DOT = YES | ||
UML_LOOK = YES | ||
CALL_GRAPH = YES | ||
CALLER_GRAPH = YES | ||
|
||
IMAGE_PATH = data/gh-pages-assets/_images | ||
HTML_EXTRA_STYLESHEET = data/gh-pages-assets/pages/custom.css | ||
SHOW_NAMESPACES = NO | ||
SHOW_FILES = NO | ||
GENERATE_TREEVIEW = YES | ||
DISABLE_INDEX = NO | ||
HTML_EXTRA_FILES = data/gh-pages-assets/_images/apralogo.png | ||
|
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
Oops, something went wrong.