Browse Source

frontend-tools: Rename some files

Changing the name of certain captions source files so it specifies which
caption API the files are for.  "mssapi" for Microsoft's speech API.
jp9000 8 years ago
parent
commit
1e37017d4e

+ 2 - 2
UI/frontend-plugins/frontend-tools/CMakeLists.txt

@@ -45,10 +45,10 @@ if(WIN32)
 		set(frontend-tools_PLATFORM_SOURCES
 			${frontend-tools_PLATFORM_SOURCES}
 			captions.cpp
-			captions-stream.cpp)
+			captions-mssapi-stream.cpp)
 		set(frontend-tools_PLATFORM_HEADERS
 			captions.hpp
-			captions-stream.hpp)
+			captions-mssapi-stream.hpp)
 		set(frontend-tools_PLATFORM_UI
 			forms/captions.ui)
 	endif()

+ 1 - 1
UI/frontend-plugins/frontend-tools/captions-stream.cpp → UI/frontend-plugins/frontend-tools/captions-mssapi-stream.cpp

@@ -1,4 +1,4 @@
-#include "captions-stream.hpp"
+#include "captions-mssapi-stream.hpp"
 #include <mmreg.h>
 #include <util/windows/CoTaskMemPtr.hpp>
 #include <util/threading.h>

+ 0 - 0
UI/frontend-plugins/frontend-tools/captions-stream.hpp → UI/frontend-plugins/frontend-tools/captions-mssapi-stream.hpp


+ 1 - 1
UI/frontend-plugins/frontend-tools/captions.cpp

@@ -1,5 +1,5 @@
 #include <obs-frontend-api.h>
-#include "captions-stream.hpp"
+#include "captions-mssapi-stream.hpp"
 #include "captions.hpp"
 #include "tool-helpers.hpp"
 #include <sphelper.h>