1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Fix HTTP-FLV and VOD-FLV conflicting bug.

This commit is contained in:
winlin 2019-12-17 16:01:04 +08:00
parent d9842b0371
commit 2df1dcb05a
4 changed files with 33 additions and 0 deletions

View file

@ -37,6 +37,7 @@
#include <stdlib.h>
#include <vector>
#include <algorithm>
using namespace std;
#include <srs_core_autofree.hpp>
@ -451,6 +452,16 @@ bool srs_string_contains(string str, string flag0, string flag1, string flag2)
return str.find(flag0) != string::npos || str.find(flag1) != string::npos || str.find(flag2) != string::npos;
}
int srs_string_count(string str, string flag)
{
int nn = 0;
for (int i = 0; i < (int)flag.length(); i++) {
char ch = flag.at(i);
nn += std::count(str.begin(), str.end(), ch);
}
return nn;
}
vector<string> srs_string_split(string str, string flag)
{
vector<string> arr;