添加rtc类型的推流

This commit is contained in:
xia-chu 2021-04-07 18:17:49 +08:00
parent b96052d387
commit 155c59e17e
2 changed files with 3 additions and 1 deletions

View File

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

View File

@ -45,7 +45,8 @@ enum class MediaOriginType : uint8_t {
pull, pull,
ffmpeg_pull, ffmpeg_pull,
mp4_vod, mp4_vod,
device_chn device_chn,
rtc_push,
}; };
string getOriginTypeString(MediaOriginType type); string getOriginTypeString(MediaOriginType type);