Add 'common' and 'custom' RTMP services

This plugin is just a generic service plugin for basic RTMP streaming
service stuff.

This just has a 'common' service that has a list of common/simple
streaming services that don't have their own custom service modules, and
then a 'custom' service that allows you to enter in the stream URL and
key manually, without a service/server list.

Also, copy the jansson VS projects file (don't modify the old one) so
that it's located in the vs/2013 directory, so that other libraries can
properly link with it without having to enter in extra information just
to include jansson
This commit is contained in:
jp9000
2014-04-19 20:54:18 -07:00
parent 506daa17d9
commit 43057038fc
11 changed files with 632 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
project(rtmp-services)
set(rtmp-services_SOURCES
rtmp-common.c
rtmp-custom.c
rtmp-services-main.c)
add_library(rtmp-services MODULE
${rtmp-services_SOURCES})
target_link_libraries(rtmp-services
libobs
jansson)
install_obs_plugin(rtmp-services)
install_obs_plugin_data(rtmp-services ../../build/data/obs-plugins/rtmp-services)