Merge branch 'feature/srt' of github.com:ZLMediaKit/ZLMediaKit

This commit is contained in:
xiongziliang
2022-06-11 15:07:58 +08:00
30 changed files with 3663 additions and 2 deletions

View File

@@ -38,6 +38,7 @@ string getOriginTypeString(MediaOriginType type){
SWITCH_CASE(mp4_vod);
SWITCH_CASE(device_chn);
SWITCH_CASE(rtc_push);
SWITCH_CASE(srt_push);
default : return "unknown";
}
}

View File

@@ -45,6 +45,7 @@ enum class MediaOriginType : uint8_t {
mp4_vod,
device_chn,
rtc_push,
srt_push
};
std::string getOriginTypeString(MediaOriginType type);