rtmp-services: Move service-specific files

Cleans up the directory a bit
This commit is contained in:
jp9000
2021-03-21 02:46:01 -07:00
parent fc9716f0dd
commit 6afb6d9c9f
11 changed files with 14 additions and 13 deletions
+8 -8
View File
@@ -7,10 +7,10 @@ include_directories(${LIBCURL_INCLUDE_DIRS})
include_directories(${OBS_JANSSON_INCLUDE_DIRS})
set(rtmp-services_SOURCES
twitch.c
younow.c
nimotv.c
showroom.c
service-specific/twitch.c
service-specific/younow.c
service-specific/nimotv.c
service-specific/showroom.c
rtmp-common.c
rtmp-custom.c
rtmp-services-main.c)
@@ -23,10 +23,10 @@ if(WIN32)
endif()
set(rtmp-services_HEADERS
twitch.h
younow.h
nimotv.h
showroom.h
service-specific/twitch.h
service-specific/younow.h
service-specific/nimotv.h
service-specific/showroom.h
rtmp-format-ver.h)
set(RTMP_SERVICES_URL
+4 -4
View File
@@ -5,10 +5,10 @@
#include <obs-config.h>
#include "rtmp-format-ver.h"
#include "twitch.h"
#include "younow.h"
#include "nimotv.h"
#include "showroom.h"
#include "service-specific/twitch.h"
#include "service-specific/younow.h"
#include "service-specific/nimotv.h"
#include "service-specific/showroom.h"
struct rtmp_common {
char *service;
+2 -1
View File
@@ -7,7 +7,8 @@
#include "rtmp-format-ver.h"
#include "lookup-config.h"
#include "showroom.h"
#include "service-specific/showroom.h"
OBS_DECLARE_MODULE()
OBS_MODULE_USE_DEFAULT_LOCALE("rtmp-services", "en-US")