243 lines
5.4 KiB
C
243 lines
5.4 KiB
C
|
/******************************************************************************
|
||
|
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
|
||
|
|
||
|
This program is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
******************************************************************************/
|
||
|
|
||
|
#include "obs.h"
|
||
|
#include "obs-data.h"
|
||
|
#include "obs-module.h"
|
||
|
|
||
|
static bool obs_init_graphics(struct obs_data *obs, const char *graphics_module,
|
||
|
struct gs_init_data *graphics_data, struct video_info *vi)
|
||
|
{
|
||
|
int errorcode;
|
||
|
size_t i;
|
||
|
|
||
|
errorcode = gs_create(&obs->graphics, graphics_module, graphics_data);
|
||
|
if (errorcode != GS_SUCCESS) {
|
||
|
if (errorcode == GS_ERROR_MODULENOTFOUND)
|
||
|
blog(LOG_ERROR, "Could not find graphics module '%s'",
|
||
|
graphics_module);
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
gs_setcontext(obs->graphics);
|
||
|
|
||
|
for (i = 0; i < NUM_TEXTURES; i++) {
|
||
|
obs->copy_surfaces[i] = gs_create_stagesurface(vi->width,
|
||
|
vi->height, graphics_data->format);
|
||
|
if (!obs->copy_surfaces[i])
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
static bool obs_init_media(struct obs_data *obs,
|
||
|
struct video_info *vi, struct audio_info *ai)
|
||
|
{
|
||
|
obs->media = media_open();
|
||
|
if (!obs->media)
|
||
|
return false;
|
||
|
|
||
|
if (!obs_reset_video(obs, vi))
|
||
|
return false;
|
||
|
if (!obs_reset_audio(obs, ai))
|
||
|
return false;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
static bool obs_init_threading(struct obs_data *obs)
|
||
|
{
|
||
|
if (pthread_mutex_init(&obs->source_mutex, NULL) != 0)
|
||
|
return false;
|
||
|
if (pthread_create(&obs->video_thread, NULL, obs_video_thread,
|
||
|
obs) != 0)
|
||
|
return false;
|
||
|
|
||
|
obs->thread_initialized = true;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
static pthread_mutex_t pthread_init_val = PTHREAD_MUTEX_INITIALIZER;
|
||
|
|
||
|
obs_t obs_create(const char *graphics_module,
|
||
|
struct gs_init_data *graphics_data,
|
||
|
struct video_info *vi, struct audio_info *ai)
|
||
|
{
|
||
|
struct obs_data *obs = bmalloc(sizeof(struct obs_data));
|
||
|
|
||
|
memset(obs, 0, sizeof(struct obs_data));
|
||
|
obs->source_mutex = pthread_init_val;
|
||
|
|
||
|
if (!obs_init_graphics(obs, graphics_module, graphics_data, vi))
|
||
|
goto error;
|
||
|
if (!obs_init_media(obs, vi, ai))
|
||
|
goto error;
|
||
|
if (!obs_init_threading(obs))
|
||
|
goto error;
|
||
|
|
||
|
return obs;
|
||
|
|
||
|
error:
|
||
|
obs_destroy(obs);
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
static inline void obs_free_graphics(obs_t obs)
|
||
|
{
|
||
|
size_t i;
|
||
|
if (!obs->graphics)
|
||
|
return;
|
||
|
|
||
|
if (obs->copy_mapped)
|
||
|
stagesurface_unmap(obs->copy_surfaces[obs->cur_texture]);
|
||
|
|
||
|
for (i = 0; i < NUM_TEXTURES; i++)
|
||
|
stagesurface_destroy(obs->copy_surfaces[i]);
|
||
|
|
||
|
gs_setcontext(NULL);
|
||
|
gs_destroy(obs->graphics);
|
||
|
}
|
||
|
|
||
|
static inline void obs_free_media(obs_t obs)
|
||
|
{
|
||
|
video_output_close(obs->video);
|
||
|
audio_output_close(obs->audio);
|
||
|
media_close(obs->media);
|
||
|
}
|
||
|
|
||
|
static inline void obs_free_threading(obs_t obs)
|
||
|
{
|
||
|
void *thread_ret;
|
||
|
video_output_stop(obs->video);
|
||
|
if (obs->thread_initialized)
|
||
|
pthread_join(obs->video_thread, &thread_ret);
|
||
|
pthread_mutex_destroy(&obs->source_mutex);
|
||
|
}
|
||
|
|
||
|
void obs_destroy(obs_t obs)
|
||
|
{
|
||
|
size_t i;
|
||
|
|
||
|
if (!obs)
|
||
|
return;
|
||
|
|
||
|
for (i = 0; i < obs->displays.num; i++)
|
||
|
display_destroy(obs->displays.array[i]);
|
||
|
|
||
|
da_free(obs->input_types);
|
||
|
da_free(obs->filter_types);
|
||
|
da_free(obs->transition_types);
|
||
|
da_free(obs->output_types);
|
||
|
/*da_free(obs->services);*/
|
||
|
|
||
|
da_free(obs->displays);
|
||
|
da_free(obs->sources);
|
||
|
|
||
|
obs_free_threading(obs);
|
||
|
obs_free_media(obs);
|
||
|
obs_free_graphics(obs);
|
||
|
|
||
|
for (i = 0; i < obs->modules.num; i++)
|
||
|
free_module(obs->modules.array+i);
|
||
|
da_free(obs->modules);
|
||
|
|
||
|
bfree(obs);
|
||
|
}
|
||
|
|
||
|
bool obs_reset_video(obs_t obs, struct video_info *vi)
|
||
|
{
|
||
|
int errorcode;
|
||
|
|
||
|
if (obs->video) {
|
||
|
video_output_close(obs->video);
|
||
|
obs->video = NULL;
|
||
|
}
|
||
|
|
||
|
obs->output_width = vi->width;
|
||
|
obs->output_height = vi->height;
|
||
|
|
||
|
errorcode = video_output_open(&obs->video, obs->media, vi);
|
||
|
if (errorcode == VIDEO_OUTPUT_SUCCESS)
|
||
|
return true;
|
||
|
else if (errorcode == VIDEO_OUTPUT_INVALIDPARAM)
|
||
|
blog(LOG_ERROR, "Invalid video parameters specified");
|
||
|
else
|
||
|
blog(LOG_ERROR, "Could not open video output");
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool obs_reset_audio(obs_t obs, struct audio_info *ai)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
|
||
|
bool obs_enum_inputs(obs_t obs, size_t idx, const char **name)
|
||
|
{
|
||
|
if (idx >= obs->input_types.num)
|
||
|
return false;
|
||
|
*name = obs->input_types.array[idx].name;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
bool obs_enum_filters(obs_t obs, size_t idx, const char **name)
|
||
|
{
|
||
|
if (idx >= obs->filter_types.num)
|
||
|
return false;
|
||
|
*name = obs->filter_types.array[idx].name;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
bool obs_enum_transitions(obs_t obs, size_t idx, const char **name)
|
||
|
{
|
||
|
if (idx >= obs->transition_types.num)
|
||
|
return false;
|
||
|
*name = obs->transition_types.array[idx].name;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
bool obs_enum_outputs(obs_t obs, size_t idx, const char **name)
|
||
|
{
|
||
|
if (idx >= obs->output_types.num)
|
||
|
return false;
|
||
|
*name = obs->output_types.array[idx].name;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
|
||
|
graphics_t obs_graphics(obs_t obs)
|
||
|
{
|
||
|
return obs->graphics;
|
||
|
}
|
||
|
|
||
|
media_t obs_media(obs_t obs)
|
||
|
{
|
||
|
return obs->media;
|
||
|
}
|
||
|
|
||
|
source_t obs_get_primary_source(obs_t obs)
|
||
|
{
|
||
|
return obs->primary_source;
|
||
|
}
|
||
|
|
||
|
void obs_set_primary_source(obs_t obs, source_t source)
|
||
|
{
|
||
|
obs->primary_source = source;
|
||
|
}
|