127 lines
3.2 KiB
C
127 lines
3.2 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 "graphics/vec4.h"
|
||
|
|
||
|
static void tick_sources(obs_t obs, uint64_t cur_time, uint64_t *last_time)
|
||
|
{
|
||
|
size_t i;
|
||
|
uint64_t delta_time;
|
||
|
float seconds;
|
||
|
|
||
|
if (!last_time)
|
||
|
*last_time = cur_time - video_getframetime(obs->video);
|
||
|
delta_time = cur_time - *last_time;
|
||
|
seconds = (float)((double)delta_time / 1000000000.0);
|
||
|
|
||
|
for (i = 0; i < obs->sources.num; i++)
|
||
|
source_video_tick(obs->sources.array[i], seconds);
|
||
|
|
||
|
*last_time = cur_time;
|
||
|
}
|
||
|
|
||
|
static inline void render_displays(obs_t obs)
|
||
|
{
|
||
|
size_t i;
|
||
|
struct vec4 clear_color;
|
||
|
vec4_set(&clear_color, 0.3f, 0.0f, 0.0f, 1.0f);
|
||
|
|
||
|
//gs_enable_depthtest(false);
|
||
|
|
||
|
gs_ortho(0.0f, (float)obs->output_width,
|
||
|
0.0f, (float)obs->output_height,
|
||
|
-100.0f, 100.0f);
|
||
|
|
||
|
for (i = 0; i < obs->displays.num; i++) {
|
||
|
display_t display = obs->displays.array[i];
|
||
|
|
||
|
gs_load_swapchain(display->swap);
|
||
|
|
||
|
gs_beginscene();
|
||
|
gs_setviewport(0, 0, gs_getwidth(), gs_getheight());
|
||
|
|
||
|
if (display->source)
|
||
|
source_video_render(display->source);
|
||
|
|
||
|
gs_endscene();
|
||
|
gs_present();
|
||
|
}
|
||
|
|
||
|
gs_load_swapchain(NULL);
|
||
|
|
||
|
gs_beginscene();
|
||
|
gs_clear(GS_CLEAR_COLOR|GS_CLEAR_DEPTH|GS_CLEAR_STENCIL,
|
||
|
&clear_color, 1.0f, 0);
|
||
|
|
||
|
gs_setviewport(0, 0, gs_getwidth(), gs_getheight());
|
||
|
|
||
|
if (obs->primary_source)
|
||
|
source_video_render(obs->primary_source);
|
||
|
|
||
|
gs_endscene();
|
||
|
gs_present();
|
||
|
}
|
||
|
|
||
|
static bool swap_frame(obs_t obs, uint64_t timestamp)
|
||
|
{
|
||
|
stagesurf_t last_surface = obs->copy_surfaces[obs->cur_texture];
|
||
|
stagesurf_t surface;
|
||
|
struct video_frame frame;
|
||
|
|
||
|
if (obs->copy_mapped) {
|
||
|
stagesurface_unmap(last_surface);
|
||
|
obs->copy_mapped = false;
|
||
|
}
|
||
|
|
||
|
obs->textures_copied[obs->cur_texture] = true;
|
||
|
gs_stage_texture(last_surface, NULL);
|
||
|
|
||
|
if (++obs->cur_texture == NUM_TEXTURES)
|
||
|
obs->cur_texture = 0;
|
||
|
|
||
|
if (obs->textures_copied[obs->cur_texture]) {
|
||
|
surface = obs->copy_surfaces[obs->cur_texture];
|
||
|
obs->copy_mapped = stagesurface_map(surface, &frame.data,
|
||
|
&frame.row_size);
|
||
|
|
||
|
if (obs->copy_mapped) {
|
||
|
frame.timestamp = timestamp;
|
||
|
video_output_frame(obs->video, &frame);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return obs->copy_mapped;
|
||
|
}
|
||
|
|
||
|
void *obs_video_thread(void *param)
|
||
|
{
|
||
|
struct obs_data *obs = param;
|
||
|
uint64_t last_time = 0;
|
||
|
|
||
|
while (video_output_wait(obs->video)) {
|
||
|
uint64_t cur_time = video_gettime(obs->video);
|
||
|
|
||
|
tick_sources(obs, cur_time, &last_time);
|
||
|
render_displays(obs);
|
||
|
swap_frame(obs, cur_time);
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|