Added TS RIST input

This commit is contained in:
Thulinma 2021-12-30 14:50:17 +01:00
parent 6d4c52c3c0
commit d22604c53a
3 changed files with 291 additions and 0 deletions

View file

@ -462,6 +462,9 @@ macro(makeInput inputName format)
if (";${ARGN};" MATCHES ";with_srt;")
target_link_libraries(MistIn${inputName} mist_srt )
endif()
if (";${ARGN};" MATCHES ";with_rist;")
target_link_libraries(MistIn${inputName} rist cjson)
endif()
#Set compile definitions
unset(my_definitions)
@ -504,6 +507,9 @@ makeInput(SDP sdp)
if(SRT_LIB)
makeInput(TSSRT tssrt with_srt)#LTS
endif()
if(RIST_LIB)
makeInput(TSRIST tsrist with_rist)#LTS
endif()
########################################
# MistServer - Outputs #