Finish hooking up VLC and removing quicktime
This commit is contained in:
@@ -50,7 +50,7 @@ class MediaPluginLibVLC :
|
|||||||
public MediaPluginBase
|
public MediaPluginBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MediaPluginLibVLC(LLPluginInstance::sendMessageFunction host_send_func, void *host_user_data);
|
MediaPluginLibVLC(LLPluginInstance::sendMessageFunction host_send_func, LLPluginInstance* host_user_data);
|
||||||
~MediaPluginLibVLC();
|
~MediaPluginLibVLC();
|
||||||
|
|
||||||
/*virtual*/ void receiveMessage(const char* message_string) override;
|
/*virtual*/ void receiveMessage(const char* message_string) override;
|
||||||
@@ -104,7 +104,7 @@ private:
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
MediaPluginLibVLC::MediaPluginLibVLC(LLPluginInstance::sendMessageFunction host_send_func, void *host_user_data) :
|
MediaPluginLibVLC::MediaPluginLibVLC(LLPluginInstance::sendMessageFunction host_send_func, LLPluginInstance*host_user_data) :
|
||||||
MediaPluginBase(host_send_func, host_user_data)
|
MediaPluginBase(host_send_func, host_user_data)
|
||||||
{
|
{
|
||||||
mTextureWidth = 0;
|
mTextureWidth = 0;
|
||||||
@@ -700,14 +700,21 @@ bool MediaPluginLibVLC::init()
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
int init_media_plugin(LLPluginInstance::sendMessageFunction host_send_func,
|
/*int init_media_plugin(LLPluginInstance::sendMessageFunction host_send_func,
|
||||||
void* host_user_data,
|
LLPluginInstance* host_user_data,
|
||||||
LLPluginInstance::sendMessageFunction *plugin_send_func,
|
LLPluginInstance::receiveMessageFunction *plugin_send_func,
|
||||||
void **plugin_user_data)
|
void **plugin_user_data)
|
||||||
{
|
{
|
||||||
MediaPluginLibVLC* self = new MediaPluginLibVLC(host_send_func, host_user_data);
|
MediaPluginLibVLC* self = new MediaPluginLibVLC(host_send_func, host_user_data);
|
||||||
*plugin_send_func = MediaPluginLibVLC::staticReceiveMessage;
|
*plugin_send_func = MediaPluginLibVLC::staticReceiveMessage;
|
||||||
*plugin_user_data = (void*)self;
|
*plugin_user_data = (void*)self;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}*/
|
||||||
|
int create_plugin(LLPluginInstance::sendMessageFunction send_message_function,
|
||||||
|
LLPluginInstance* plugin_instance,
|
||||||
|
BasicPluginBase** plugin_object)
|
||||||
|
{
|
||||||
|
*plugin_object = new MediaPluginLibVLC(send_message_function, plugin_instance);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,91 +0,0 @@
|
|||||||
# -*- cmake -*-
|
|
||||||
|
|
||||||
project(media_plugin_quicktime)
|
|
||||||
|
|
||||||
include(00-Common)
|
|
||||||
include(LLCommon)
|
|
||||||
include(LLImage)
|
|
||||||
include(LLPlugin)
|
|
||||||
include(LLMath)
|
|
||||||
include(LLRender)
|
|
||||||
include(LLWindow)
|
|
||||||
include(Linking)
|
|
||||||
include(PluginAPI)
|
|
||||||
include(MediaPluginBase)
|
|
||||||
include(FindOpenGL)
|
|
||||||
include(QuickTimePlugin)
|
|
||||||
|
|
||||||
include_directories(
|
|
||||||
${LLPLUGIN_INCLUDE_DIRS}
|
|
||||||
${MEDIA_PLUGIN_BASE_INCLUDE_DIRS}
|
|
||||||
${LLCOMMON_INCLUDE_DIRS}
|
|
||||||
${LLMATH_INCLUDE_DIRS}
|
|
||||||
${LLIMAGE_INCLUDE_DIRS}
|
|
||||||
${LLRENDER_INCLUDE_DIRS}
|
|
||||||
${LLWINDOW_INCLUDE_DIRS}
|
|
||||||
)
|
|
||||||
|
|
||||||
if (DARWIN)
|
|
||||||
include(CMakeFindFrameworks)
|
|
||||||
find_library(CARBON_LIBRARY Carbon)
|
|
||||||
endif (DARWIN)
|
|
||||||
|
|
||||||
### media_plugin_quicktime
|
|
||||||
|
|
||||||
set(media_plugin_quicktime_SOURCE_FILES
|
|
||||||
media_plugin_quicktime.cpp
|
|
||||||
)
|
|
||||||
|
|
||||||
add_library(media_plugin_quicktime
|
|
||||||
SHARED
|
|
||||||
${media_plugin_quicktime_SOURCE_FILES}
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(media_plugin_quicktime
|
|
||||||
${LLPLUGIN_LIBRARIES}
|
|
||||||
${MEDIA_PLUGIN_BASE_LIBRARIES}
|
|
||||||
${LLCOMMON_LIBRARIES}
|
|
||||||
${QUICKTIME_LIBRARY}
|
|
||||||
${PLUGIN_API_WINDOWS_LIBRARIES}
|
|
||||||
)
|
|
||||||
|
|
||||||
add_dependencies(media_plugin_quicktime
|
|
||||||
${LLPLUGIN_LIBRARIES}
|
|
||||||
${MEDIA_PLUGIN_BASE_LIBRARIES}
|
|
||||||
${LLCOMMON_LIBRARIES}
|
|
||||||
)
|
|
||||||
|
|
||||||
if (WINDOWS)
|
|
||||||
set_target_properties(
|
|
||||||
media_plugin_quicktime
|
|
||||||
PROPERTIES
|
|
||||||
LINK_FLAGS "/MANIFEST:NO /NODEFAULTLIB:LIBCMT"
|
|
||||||
LINK_FLAGS_DEBUG "/MANIFEST:NO /NODEFAULTLIB:\"LIBCMT;LIBCMTD\""
|
|
||||||
)
|
|
||||||
endif (WINDOWS)
|
|
||||||
|
|
||||||
if (QUICKTIME)
|
|
||||||
|
|
||||||
add_definitions(-DLL_QUICKTIME_ENABLED=1)
|
|
||||||
|
|
||||||
if (DARWIN)
|
|
||||||
# Don't prepend 'lib' to the executable name, and don't embed a full path in the library's install name
|
|
||||||
set_target_properties(
|
|
||||||
media_plugin_quicktime
|
|
||||||
PROPERTIES
|
|
||||||
PREFIX ""
|
|
||||||
BUILD_WITH_INSTALL_RPATH 1
|
|
||||||
INSTALL_NAME_DIR "@executable_path"
|
|
||||||
LINK_FLAGS "-exported_symbols_list '${CMAKE_CURRENT_SOURCE_DIR}/../base_media/media_plugin_base.exp'"
|
|
||||||
)
|
|
||||||
|
|
||||||
# We use a bunch of deprecated system APIs.
|
|
||||||
set_source_files_properties(
|
|
||||||
media_plugin_quicktime.cpp PROPERTIES
|
|
||||||
COMPILE_FLAGS -Wno-deprecated-declarations
|
|
||||||
)
|
|
||||||
find_library(CARBON_LIBRARY Carbon)
|
|
||||||
target_link_libraries(media_plugin_quicktime ${CARBON_LIBRARY})
|
|
||||||
endif (DARWIN)
|
|
||||||
endif (QUICKTIME)
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user