Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
COL0047
hand-detection
Commits
d98fbee6
Commit
d98fbee6
authored
Jan 19, 2021
by
Aaron Boxer
Browse files
pipeline: support comments in text file (must begin with #)
parent
378a9550
Pipeline
#20828
failed with stage
in 5 minutes and 25 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
annotation_pipeline/ingest.cpp
View file @
d98fbee6
...
...
@@ -185,7 +185,8 @@ main (int argc, char *argv[])
pipe
[
0
]
=
0
;
size_t
len
=
0
;
while
((
getline
(
&
line
,
&
len
,
fp
))
!=
-
1
)
{
strcat
(
pipe
,
line
);
if
(
line
!=
nullptr
&&
line
[
0
]
!=
'#'
)
strcat
(
pipe
,
line
);
}
fclose
(
fp
);
}
else
{
...
...
annotation_pipeline/videotestsrc_pipeline.txt
View file @
d98fbee6
# video test source pipeline
matroskamux name=mux !
filesink name=sink location="/tmp/capture.mkv"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment