Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
stitchEm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Franco (nextime) Lanza
stitchEm
Commits
137dc6a7
Commit
137dc6a7
authored
May 02, 2020
by
Clement Guedez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow to use rtmp stream in standard AV
Allow to use rtmp stream in standard AV IO module.
parent
71514b36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
util.cpp
IO/src/common/format/src/util.cpp
+3
-3
No files found.
IO/src/common/format/src/util.cpp
View file @
137dc6a7
...
...
@@ -131,12 +131,12 @@ const std::string errorString(const int errorCode) {
#ifndef __clang_analyzer__
bool
isStream
(
const
std
::
string
&
filename
)
{
std
::
regex
rtsp
(
"RTSP://"
,
std
::
regex_constants
::
ECMAScript
|
std
::
regex_constants
::
icase
);
//
std::regex rtmp("RTMP://", std::regex_constants::ECMAScript | std::regex_constants::icase);
std
::
regex
rtmp
(
"RTMP://"
,
std
::
regex_constants
::
ECMAScript
|
std
::
regex_constants
::
icase
);
if
(
std
::
regex_search
(
filename
,
rtsp
))
{
return
true
;
}
/*
else if (std::regex_search(filename, rtmp)) {
}
else
if
(
std
::
regex_search
(
filename
,
rtmp
))
{
return
true
;
}
*/
}
return
false
;
}
#endif // __clang_analyzer__
...
...
Write
Preview
Markdown
is supported
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