obs-internal.h 34.5 KB
Newer Older
J
jp9000 已提交
1
/******************************************************************************
J
jp9000 已提交
2
    Copyright (C) 2013-2014 by Hugh Bailey <obs.jim@gmail.com>
J
jp9000 已提交
3 4 5

    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
6
    the Free Software Foundation, either version 2 of the License, or
J
jp9000 已提交
7 8 9 10 11 12 13 14 15 16 17
    (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/>.
******************************************************************************/

18
#pragma once
J
jp9000 已提交
19

J
jp9000 已提交
20
#include "util/c99defs.h"
J
jp9000 已提交
21
#include "util/darray.h"
22
#include "util/circlebuf.h"
J
jp9000 已提交
23
#include "util/dstr.h"
J
jp9000 已提交
24
#include "util/threading.h"
J
jp9000 已提交
25
#include "util/platform.h"
P
Palana 已提交
26
#include "util/profiler.h"
J
jp9000 已提交
27 28
#include "callback/signal.h"
#include "callback/proc.h"
J
jp9000 已提交
29 30

#include "graphics/graphics.h"
J
jp9000 已提交
31
#include "graphics/matrix4.h"
J
jp9000 已提交
32

J
jp9000 已提交
33
#include "media-io/audio-resampler.h"
J
jp9000 已提交
34 35 36 37
#include "media-io/video-io.h"
#include "media-io/audio-io.h"

#include "obs.h"
38

J
jp9000 已提交
39
#define NUM_TEXTURES 2
40
#define MICROSECOND_DEN 1000000
J
jp9000 已提交
41

42 43 44 45
static inline int64_t packet_dts_usec(struct encoder_packet *packet)
{
	return packet->dts * MICROSECOND_DEN / packet->timebase_den;
}
46

47 48 49 50 51
struct tick_callback {
	void (*tick)(void *param, float seconds);
	void *param;
};

52 53 54 55 56
struct draw_callback {
	void (*draw)(void *param, uint32_t cx, uint32_t cy);
	void *param;
};

57 58 59 60 61 62 63
/* ------------------------------------------------------------------------- */
/* validity checks */

static inline bool obs_object_valid(const void *obj, const char *f,
		const char *t)
{
	if (!obj) {
64
		blog(LOG_DEBUG, "%s: Null '%s' parameter", f, t);
65 66 67 68 69 70
		return false;
	}

	return true;
}

71 72 73 74 75
#define obs_ptr_valid(ptr, func) obs_object_valid(ptr, func, #ptr)
#define obs_source_valid  obs_ptr_valid
#define obs_output_valid  obs_ptr_valid
#define obs_encoder_valid obs_ptr_valid
#define obs_service_valid obs_ptr_valid
76

J
jp9000 已提交
77
/* ------------------------------------------------------------------------- */
78
/* modules */
J
jp9000 已提交
79 80

struct obs_module {
81
	char *mod_name;
J
jp9000 已提交
82 83 84
	const char *file;
	char *bin_path;
	char *data_path;
J
jp9000 已提交
85
	void *module;
J
jp9000 已提交
86 87
	bool loaded;

88
	bool        (*load)(void);
J
jp9000 已提交
89
	void        (*unload)(void);
90
	void        (*post_load)(void);
J
jp9000 已提交
91 92 93
	void        (*set_locale)(const char *locale);
	void        (*free_locale)(void);
	uint32_t    (*ver)(void);
94
	void        (*set_pointer)(obs_module_t *module);
J
jp9000 已提交
95 96 97 98 99
	const char *(*name)(void);
	const char *(*description)(void);
	const char *(*author)(void);

	struct obs_module *next;
J
jp9000 已提交
100 101
};

J
jp9000 已提交
102 103
extern void free_module(struct obs_module *mod);

J
jp9000 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
struct obs_module_path {
	char *bin;
	char *data;
};

static inline void free_module_path(struct obs_module_path *omp)
{
	if (omp) {
		bfree(omp->bin);
		bfree(omp->data);
	}
}

static inline bool check_path(const char *data, const char *path,
		struct dstr *output)
{
	dstr_copy(output, path);
	dstr_cat(output, data);

	return os_file_exists(output->array);
}

J
jp9000 已提交
126

P
Palana 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
/* ------------------------------------------------------------------------- */
/* hotkeys */

struct obs_hotkey {
	obs_hotkey_id               id;
	char                        *name;
	char                        *description;

	obs_hotkey_func             func;
	void                        *data;
	int                         pressed;

	obs_hotkey_registerer_t     registerer_type;
	void                        *registerer;

	obs_hotkey_id               pair_partner_id;
};

struct obs_hotkey_pair {
	obs_hotkey_pair_id          pair_id;
	obs_hotkey_id               id[2];
	obs_hotkey_active_func      func[2];
149 150
	bool                        pressed0;
	bool                        pressed1;
P
Palana 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
	void                        *data[2];
};

typedef struct obs_hotkey_pair obs_hotkey_pair_t;

typedef struct obs_hotkeys_platform obs_hotkeys_platform_t;

void *obs_hotkey_thread(void *param);

struct obs_core_hotkeys;
bool obs_hotkeys_platform_init(struct obs_core_hotkeys *hotkeys);
void obs_hotkeys_platform_free(struct obs_core_hotkeys *hotkeys);
bool obs_hotkeys_platform_is_pressed(obs_hotkeys_platform_t *context,
		obs_key_t key);

const char *obs_get_hotkey_translation(obs_key_t key, const char *def);

struct obs_context_data;
void obs_hotkeys_context_release(struct obs_context_data *context);

void obs_hotkeys_free(void);

struct obs_hotkey_binding {
	obs_key_combination_t       key;
175 176
	bool                        pressed;
	bool                        modifiers_match;
P
Palana 已提交
177 178 179 180 181 182 183 184 185

	obs_hotkey_id               hotkey_id;
	obs_hotkey_t                *hotkey;
};

struct obs_hotkey_name_map;
void obs_hotkey_name_map_free(void);


186
/* ------------------------------------------------------------------------- */
J
jp9000 已提交
187
/* views */
188

J
jp9000 已提交
189
struct obs_view {
190
	pthread_mutex_t                 channels_mutex;
191
	obs_source_t                    *channels[MAX_CHANNELS];
192 193
};

J
jp9000 已提交
194 195
extern bool obs_view_init(struct obs_view *view);
extern void obs_view_free(struct obs_view *view);
196 197 198 199 200 201 202


/* ------------------------------------------------------------------------- */
/* displays */

struct obs_display {
	bool                            size_changed;
J
jp9000 已提交
203
	bool                            enabled;
204
	uint32_t                        cx, cy;
205
	uint32_t                        background_color;
206
	gs_swapchain_t                  *swap;
207
	pthread_mutex_t                 draw_callbacks_mutex;
208
	pthread_mutex_t                 draw_info_mutex;
209
	DARRAY(struct draw_callback)    draw_callbacks;
210 211 212

	struct obs_display              *next;
	struct obs_display              **prev_next;
213 214 215
};

extern bool obs_display_init(struct obs_display *display,
216
		const struct gs_init_data *graphics_data);
217 218 219
extern void obs_display_free(struct obs_display *display);


220
/* ------------------------------------------------------------------------- */
J
jp9000 已提交
221
/* core */
222

223 224 225 226 227
struct obs_vframe_info {
	uint64_t timestamp;
	int count;
};

228
struct obs_core_video {
229 230 231 232 233
	graphics_t                      *graphics;
	gs_stagesurf_t                  *copy_surfaces[NUM_TEXTURES];
	gs_texture_t                    *render_textures[NUM_TEXTURES];
	gs_texture_t                    *output_textures[NUM_TEXTURES];
	gs_texture_t                    *convert_textures[NUM_TEXTURES];
234 235 236
	bool                            textures_rendered[NUM_TEXTURES];
	bool                            textures_output[NUM_TEXTURES];
	bool                            textures_copied[NUM_TEXTURES];
J
jp9000 已提交
237
	bool                            textures_converted[NUM_TEXTURES];
238
	struct circlebuf                vframe_info_buffer;
239
	gs_effect_t                     *default_effect;
P
Palana 已提交
240
	gs_effect_t                     *default_rect_effect;
241
	gs_effect_t                     *opaque_effect;
242 243
	gs_effect_t                     *solid_effect;
	gs_effect_t                     *conversion_effect;
244 245
	gs_effect_t                     *bicubic_effect;
	gs_effect_t                     *lanczos_effect;
246
	gs_effect_t                     *bilinear_lowres_effect;
247
	gs_effect_t                     *premultiplied_alpha_effect;
248
	gs_samplerstate_t               *point_sampler;
249
	gs_stagesurf_t                  *mapped_surface;
250
	int                             cur_texture;
251
	long                            raw_active;
252

J
jp9000 已提交
253
	uint64_t                        video_time;
254
	uint64_t                        video_avg_frame_time_ns;
J
jp9000 已提交
255
	double                          video_fps;
256
	video_t                         *video;
257
	pthread_t                       video_thread;
258 259
	uint32_t                        total_frames;
	uint32_t                        lagged_frames;
260 261
	bool                            thread_initialized;

J
jp9000 已提交
262 263 264 265 266 267 268 269 270
	bool                            gpu_conversion;
	const char                      *conversion_tech;
	uint32_t                        conversion_height;
	uint32_t                        plane_offsets[3];
	uint32_t                        plane_sizes[3];
	uint32_t                        plane_linewidth[3];

	uint32_t                        output_width;
	uint32_t                        output_height;
271 272
	uint32_t                        base_width;
	uint32_t                        base_height;
273
	float                           color_matrix[16];
274
	enum obs_scale_type             scale_type;
275 276

	gs_texture_t                    *transparent_texture;
J
jp9000 已提交
277 278 279 280 281 282 283 284 285

	gs_effect_t                     *deinterlace_discard_effect;
	gs_effect_t                     *deinterlace_discard_2x_effect;
	gs_effect_t                     *deinterlace_linear_effect;
	gs_effect_t                     *deinterlace_linear_2x_effect;
	gs_effect_t                     *deinterlace_blend_effect;
	gs_effect_t                     *deinterlace_blend_2x_effect;
	gs_effect_t                     *deinterlace_yadif_effect;
	gs_effect_t                     *deinterlace_yadif_2x_effect;
286 287

	struct obs_video_info           ovi;
288 289
};

J
jp9000 已提交
290 291
struct audio_monitor;

292
struct obs_core_audio {
293
	audio_t                         *audio;
J
jp9000 已提交
294

J
jp9000 已提交
295 296 297 298 299 300 301 302
	DARRAY(struct obs_source*)      render_order;
	DARRAY(struct obs_source*)      root_nodes;

	uint64_t                        buffered_ts;
	struct circlebuf                buffered_timestamps;
	int                             buffering_wait_ticks;
	int                             total_buffering_ticks;

J
jp9000 已提交
303
	float                           user_volume;
J
jp9000 已提交
304 305 306 307 308

	pthread_mutex_t                 monitoring_mutex;
	DARRAY(struct audio_monitor*)   monitors;
	char                            *monitoring_device_name;
	char                            *monitoring_device_id;
309 310
};

311
/* user sources, output channels, and displays */
312
struct obs_core_data {
313
	struct obs_source               *first_source;
314
	struct obs_source               *first_audio_source;
315 316 317 318
	struct obs_display              *first_display;
	struct obs_output               *first_output;
	struct obs_encoder              *first_encoder;
	struct obs_service              *first_service;
319 320 321 322 323

	pthread_mutex_t                 sources_mutex;
	pthread_mutex_t                 displays_mutex;
	pthread_mutex_t                 outputs_mutex;
	pthread_mutex_t                 encoders_mutex;
324
	pthread_mutex_t                 services_mutex;
325
	pthread_mutex_t                 audio_sources_mutex;
326 327
	pthread_mutex_t                 draw_callbacks_mutex;
	DARRAY(struct draw_callback)    draw_callbacks;
328
	DARRAY(struct tick_callback)    tick_callbacks;
329

J
jp9000 已提交
330
	struct obs_view                 main_view;
331

J
jp9000 已提交
332 333
	long long                       unnamed_index;

334 335
	obs_data_t                      *private_data;

336
	volatile bool                   valid;
337 338
};

P
Palana 已提交
339 340 341 342 343 344 345 346 347 348 349
/* user hotkeys */
struct obs_core_hotkeys {
	pthread_mutex_t                 mutex;
	DARRAY(obs_hotkey_t)            hotkeys;
	obs_hotkey_id                   next_id;
	DARRAY(obs_hotkey_pair_t)       hotkey_pairs;
	obs_hotkey_pair_id              next_pair_id;

	pthread_t                       hotkey_thread;
	bool                            hotkey_thread_initialized;
	os_event_t                      *stop_event;
350 351 352
	bool                            thread_disable_press;
	bool                            strict_modifiers;
	bool                            reroute_hotkeys;
P
Palana 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365
	DARRAY(obs_hotkey_binding_t)    bindings;

	obs_hotkey_callback_router_func router_func;
	void                            *router_func_data;

	obs_hotkeys_platform_t          *platform_context;

	pthread_once_t                  name_map_init_token;
	struct obs_hotkey_name_map      *name_map;

	signal_handler_t                *signals;

	char                            *translations[OBS_KEY_LAST_VALUE];
P
Palana 已提交
366 367 368 369
	char                            *mute;
	char                            *unmute;
	char                            *push_to_mute;
	char                            *push_to_talk;
P
Palana 已提交
370 371
	char                            *sceneitem_show;
	char                            *sceneitem_hide;
P
Palana 已提交
372 373
};

374
struct obs_core {
J
jp9000 已提交
375 376 377
	struct obs_module               *first_module;
	DARRAY(struct obs_module_path)  module_paths;

378
	DARRAY(struct obs_source_info)  source_types;
J
jp9000 已提交
379 380 381 382 383 384 385 386 387
	DARRAY(struct obs_source_info)  input_types;
	DARRAY(struct obs_source_info)  filter_types;
	DARRAY(struct obs_source_info)  transition_types;
	DARRAY(struct obs_output_info)  output_types;
	DARRAY(struct obs_encoder_info) encoder_types;
	DARRAY(struct obs_service_info) service_types;
	DARRAY(struct obs_modal_ui)     modal_ui_callbacks;
	DARRAY(struct obs_modeless_ui)  modeless_ui_callbacks;

388 389
	signal_handler_t                *signals;
	proc_handler_t                  *procs;
390

391
	char                            *locale;
392
	char                            *module_config_path;
393 394
	bool                            name_store_owned;
	profiler_name_store_t           *name_store;
395

396 397
	/* segmented into multiple sub-structures to keep things a bit more
	 * clean and organized */
J
jp9000 已提交
398 399 400
	struct obs_core_video           video;
	struct obs_core_audio           audio;
	struct obs_core_data            data;
P
Palana 已提交
401
	struct obs_core_hotkeys         hotkeys;
J
jp9000 已提交
402 403
};

404
extern struct obs_core *obs;
405

406
extern void *obs_graphics_thread(void *param);
J
jp9000 已提交
407

J
jp9000 已提交
408 409
extern gs_effect_t *obs_load_effect(gs_effect_t **effect, const char *file);

J
jp9000 已提交
410 411 412 413
extern bool audio_callback(void *param,
		uint64_t start_ts_in, uint64_t end_ts_in, uint64_t *out_ts,
		uint32_t mixers, struct audio_output_data *mixes);

414 415 416 417 418 419 420
extern void start_raw_video(video_t *video,
		const struct video_scale_info *conversion,
		void (*callback)(void *param, struct video_data *frame),
		void *param);
extern void stop_raw_video(video_t *video,
		void (*callback)(void *param, struct video_data *frame),
		void *param);
J
jp9000 已提交
421 422

/* ------------------------------------------------------------------------- */
423
/* obs shared context data */
J
jp9000 已提交
424

425 426
struct obs_context_data {
	char                            *name;
427
	void                            *data;
428 429 430
	obs_data_t                      *settings;
	signal_handler_t                *signals;
	proc_handler_t                  *procs;
431
	enum obs_obj_type               type;
J
jp9000 已提交
432

P
Palana 已提交
433 434 435 436
	DARRAY(obs_hotkey_id)           hotkeys;
	DARRAY(obs_hotkey_pair_id)      hotkey_pairs;
	obs_data_t                      *hotkey_data;

J
jp9000 已提交
437 438 439
	DARRAY(char*)                   rename_cache;
	pthread_mutex_t                 rename_cache_mutex;

440 441 442
	pthread_mutex_t                 *mutex;
	struct obs_context_data         *next;
	struct obs_context_data         **prev_next;
J
jp9000 已提交
443 444

	bool                            private;
445 446 447 448
};

extern bool obs_context_data_init(
		struct obs_context_data *context,
449
		enum obs_obj_type       type,
450
		obs_data_t              *settings,
P
Palana 已提交
451
		const char              *name,
J
jp9000 已提交
452 453
		obs_data_t              *hotkey_data,
		bool                    private);
454 455 456 457 458 459 460 461 462 463
extern void obs_context_data_free(struct obs_context_data *context);

extern void obs_context_data_insert(struct obs_context_data *context,
		pthread_mutex_t *mutex, void *first);
extern void obs_context_data_remove(struct obs_context_data *context);

extern void obs_context_data_setname(struct obs_context_data *context,
		const char *name);


P
Palana 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
/* ------------------------------------------------------------------------- */
/* ref-counting  */

struct obs_weak_ref {
	volatile long refs;
	volatile long weak_refs;
};

static inline void obs_ref_addref(struct obs_weak_ref *ref)
{
	os_atomic_inc_long(&ref->refs);
}

static inline bool obs_ref_release(struct obs_weak_ref *ref)
{
	return os_atomic_dec_long(&ref->refs) == -1;
}

static inline void obs_weak_ref_addref(struct obs_weak_ref *ref)
{
	os_atomic_inc_long(&ref->weak_refs);
}

static inline bool obs_weak_ref_release(struct obs_weak_ref *ref)
{
	return os_atomic_dec_long(&ref->weak_refs) == -1;
}

static inline bool obs_weak_ref_get_ref(struct obs_weak_ref *ref)
{
	long owners = ref->refs;
	while (owners > -1) {
		if (os_atomic_compare_swap_long(&ref->refs, owners, owners + 1))
			return true;

		owners = ref->refs;
	}

	return false;
}


506 507 508
/* ------------------------------------------------------------------------- */
/* sources  */

509 510
struct async_frame {
	struct obs_source_frame *frame;
511
	long unused_count;
512 513 514
	bool used;
};

J
jp9000 已提交
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
enum audio_action_type {
	AUDIO_ACTION_VOL,
	AUDIO_ACTION_MUTE,
	AUDIO_ACTION_PTT,
	AUDIO_ACTION_PTM,
};

struct audio_action {
	uint64_t timestamp;
	enum audio_action_type type;
	union {
		float vol;
		bool  set;
	};
};

531 532 533 534 535
struct obs_weak_source {
	struct obs_weak_ref ref;
	struct obs_source *source;
};

536 537 538 539 540
struct audio_cb_info {
	obs_source_audio_capture_t callback;
	void *param;
};

541 542 543
struct obs_source {
	struct obs_context_data         context;
	struct obs_source_info          info;
544
	struct obs_weak_source          *control;
545

J
jp9000 已提交
546 547
	/* general exposed flags that can be set for the source */
	uint32_t                        flags;
548
	uint32_t                        default_flags;
J
jp9000 已提交
549

550 551 552
	/* indicates ownership of the info.id buffer */
	bool                            owns_info_id;

553
	/* signals to call the source update in the video thread */
554 555
	bool                            defer_update;

556
	/* ensures show/hide are only called once */
J
jp9000 已提交
557
	volatile long                   show_refs;
558

559
	/* ensures activate/deactivate are only called once */
J
jp9000 已提交
560
	volatile long                   activate_refs;
561

J
jp9000 已提交
562 563 564
	/* used to indicate that the source has been removed and all
	 * references to it should be released (not exactly how I would prefer
	 * to handle things but it's the best option) */
565
	bool                            removed;
J
jp9000 已提交
566

567 568 569
	bool                            active;
	bool                            showing;

570 571 572
	/* used to temporarily disable sources if needed */
	bool                            enabled;

J
jp9000 已提交
573
	/* timing (if video is present, is based upon video) */
574 575
	volatile bool                   timing_set;
	volatile uint64_t               timing_adjust;
576
	uint64_t                        resample_offset;
J
jp9000 已提交
577
	uint64_t                        last_audio_ts;
578
	uint64_t                        next_audio_ts_min;
579
	uint64_t                        next_audio_sys_ts_min;
580 581
	uint64_t                        last_frame_ts;
	uint64_t                        last_sys_timestamp;
582
	bool                            async_rendered;
J
jp9000 已提交
583 584

	/* audio */
585
	bool                            audio_failed;
586
	bool                            audio_pending;
587
	bool                            pending_stop;
J
jp9000 已提交
588
	bool                            user_muted;
J
jp9000 已提交
589
	bool                            muted;
590 591
	struct obs_source               *next_audio_source;
	struct obs_source               **prev_next_audio_source;
592 593
	uint64_t                        audio_ts;
	struct circlebuf                audio_input_buf[MAX_AUDIO_CHANNELS];
594
	size_t                          last_audio_input_buf_size;
J
jp9000 已提交
595
	DARRAY(struct audio_action)     audio_actions;
596
	float                           *audio_output_buf[MAX_AUDIO_MIXES][MAX_AUDIO_CHANNELS];
597
	struct resample_info            sample_info;
598
	audio_resampler_t               *resampler;
J
jp9000 已提交
599
	pthread_mutex_t                 audio_actions_mutex;
600
	pthread_mutex_t                 audio_buf_mutex;
601
	pthread_mutex_t                 audio_mutex;
602 603
	pthread_mutex_t                 audio_cb_mutex;
	DARRAY(struct audio_cb_info)    audio_cb_list;
604
	struct obs_audio_data           audio_data;
605
	size_t                          audio_storage_size;
606
	uint32_t                        audio_mixers;
J
jp9000 已提交
607
	float                           user_volume;
J
jp9000 已提交
608
	float                           volume;
J
jp9000 已提交
609
	int64_t                         sync_offset;
610
	int64_t                         last_sync_offset;
C
cg2121 已提交
611
	float                           balance;
J
jp9000 已提交
612 613

	/* async video data */
614
	gs_texture_t                    *async_texture;
615
	gs_texrender_t                  *async_texrender;
616
	struct obs_source_frame         *cur_async_frame;
617
	bool                            async_gpu_conversion;
618
	enum video_format               async_format;
J
jp9000 已提交
619
	enum video_format               async_cache_format;
620
	enum gs_color_format            async_texture_format;
621
	float                           async_color_matrix[16];
622 623 624
	bool                            async_full_range;
	float                           async_color_range_min[3];
	float                           async_color_range_max[3];
625
	int                             async_plane_offset[2];
626
	bool                            async_flip;
627
	bool                            async_active;
628
	bool                            async_update_texture;
629
	bool                            async_unbuffered;
630
	bool                            async_decoupled;
631
	struct obs_source_frame         *async_preload_frame;
632
	DARRAY(struct async_frame)      async_cache;
633 634
	DARRAY(struct obs_source_frame*)async_frames;
	pthread_mutex_t                 async_mutex;
635 636
	uint32_t                        async_width;
	uint32_t                        async_height;
J
jp9000 已提交
637 638
	uint32_t                        async_cache_width;
	uint32_t                        async_cache_height;
639 640
	uint32_t                        async_convert_width;
	uint32_t                        async_convert_height;
J
jp9000 已提交
641

J
jp9000 已提交
642 643 644 645 646 647 648 649 650 651 652 653
	/* async video deinterlacing */
	uint64_t                        deinterlace_offset;
	uint64_t                        deinterlace_frame_ts;
	gs_effect_t                     *deinterlace_effect;
	struct obs_source_frame         *prev_async_frame;
	gs_texture_t                    *async_prev_texture;
	gs_texrender_t                  *async_prev_texrender;
	uint32_t                        deinterlace_half_duration;
	enum obs_deinterlace_mode       deinterlace_mode;
	bool                            deinterlace_top_first;
	bool                            deinterlace_rendered;

J
jp9000 已提交
654
	/* filters */
655 656 657 658
	struct obs_source               *filter_parent;
	struct obs_source               *filter_target;
	DARRAY(struct obs_source*)      filters;
	pthread_mutex_t                 filter_mutex;
659
	gs_texrender_t                  *filter_texrender;
660
	enum obs_allow_direct_render    allow_direct;
661
	bool                            rendering_filter;
P
Palana 已提交
662 663 664 665 666

	/* sources specific hotkeys */
	obs_hotkey_pair_id              mute_unmute_key;
	obs_hotkey_id                   push_to_mute_key;
	obs_hotkey_id                   push_to_talk_key;
667 668 669 670 671 672
	bool                            push_to_mute_enabled;
	bool                            push_to_mute_pressed;
	bool                            user_push_to_mute_pressed;
	bool                            push_to_talk_enabled;
	bool                            push_to_talk_pressed;
	bool                            user_push_to_talk_pressed;
P
Palana 已提交
673 674 675 676
	uint64_t                        push_to_mute_delay;
	uint64_t                        push_to_mute_stop_time;
	uint64_t                        push_to_talk_delay;
	uint64_t                        push_to_talk_stop_time;
J
jp9000 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693

	/* transitions */
	uint64_t                        transition_start_time;
	uint64_t                        transition_duration;
	pthread_mutex_t                 transition_tex_mutex;
	gs_texrender_t                  *transition_texrender[2];
	pthread_mutex_t                 transition_mutex;
	obs_source_t                    *transition_sources[2];
	bool                            transitioning_video;
	bool                            transitioning_audio;
	bool                            transition_source_active[2];
	uint32_t                        transition_alignment;
	uint32_t                        transition_actual_cx;
	uint32_t                        transition_actual_cy;
	uint32_t                        transition_cx;
	uint32_t                        transition_cy;
	uint32_t                        transition_fixed_duration;
694
	bool                            transition_use_fixed_duration;
J
jp9000 已提交
695 696 697
	enum obs_transition_mode        transition_mode;
	enum obs_transition_scale_type  transition_scale_type;
	struct matrix4                  transition_matrices[2];
J
jp9000 已提交
698 699 700

	struct audio_monitor            *monitor;
	enum obs_monitoring_type        monitoring_type;
701 702

	obs_data_t                      *private_settings;
J
jp9000 已提交
703 704
};

705
extern struct obs_source_info *get_source_info(const char *id);
706
extern bool obs_source_init_context(struct obs_source *source,
707
		obs_data_t *settings, const char *name,
J
jp9000 已提交
708
		obs_data_t *hotkey_data, bool private);
J
jp9000 已提交
709

J
jp9000 已提交
710 711 712 713 714 715 716 717
extern bool obs_transition_init(obs_source_t *transition);
extern void obs_transition_free(obs_source_t *transition);
extern void obs_transition_tick(obs_source_t *transition);
extern void obs_transition_enum_sources(obs_source_t *transition,
		obs_source_enum_proc_t enum_callback, void *param);
extern void obs_transition_save(obs_source_t *source, obs_data_t *data);
extern void obs_transition_load(obs_source_t *source, obs_data_t *data);

J
jp9000 已提交
718 719 720 721
struct audio_monitor *audio_monitor_create(obs_source_t *source);
void audio_monitor_reset(struct audio_monitor *monitor);
extern void audio_monitor_destroy(struct audio_monitor *monitor);

722 723
extern void obs_source_destroy(struct obs_source *source);

724 725 726 727 728
enum view_type {
	MAIN_VIEW,
	AUX_VIEW
};

729 730 731 732
static inline void obs_source_dosignal(struct obs_source *source,
		const char *signal_obs, const char *signal_source)
{
	struct calldata data;
733
	uint8_t stack[128];
734

735
	calldata_init_fixed(&data, stack, sizeof(stack));
736
	calldata_set_ptr(&data, "source", source);
J
jp9000 已提交
737
	if (signal_obs && !source->context.private)
738 739 740 741 742 743
		signal_handler_signal(obs->signals, signal_obs, &data);
	if (signal_source)
		signal_handler_signal(source->context.signals, signal_source,
				&data);
}

744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
/* maximum timestamp variance in nanoseconds */
#define MAX_TS_VAR          2000000000ULL

static inline bool frame_out_of_bounds(const obs_source_t *source, uint64_t ts)
{
	if (ts < source->last_frame_ts)
		return ((source->last_frame_ts - ts) > MAX_TS_VAR);
	else
		return ((ts - source->last_frame_ts) > MAX_TS_VAR);
}

static inline enum gs_color_format convert_video_format(
		enum video_format format)
{
	if (format == VIDEO_FORMAT_RGBA)
		return GS_RGBA;
	else if (format == VIDEO_FORMAT_BGRA)
		return GS_BGRA;

	return GS_BGRX;
}

766 767 768
extern void obs_source_activate(obs_source_t *source, enum view_type type);
extern void obs_source_deactivate(obs_source_t *source, enum view_type type);
extern void obs_source_video_tick(obs_source_t *source, float seconds);
769 770
extern float obs_source_get_target_volume(obs_source_t *source,
		obs_source_t *target);
J
jp9000 已提交
771

772 773 774
extern void obs_source_audio_render(obs_source_t *source, uint32_t mixers,
		size_t channels, size_t sample_rate, size_t size);

775 776
extern void add_alignment(struct vec2 *v, uint32_t align, int cx, int cy);

777 778
extern struct obs_source_frame *filter_async_video(obs_source_t *source,
		struct obs_source_frame *in);
779 780 781
extern bool update_async_texture(struct obs_source *source,
		const struct obs_source_frame *frame,
		gs_texture_t *tex, gs_texrender_t *texrender);
782 783 784 785 786
extern bool set_async_texture_size(struct obs_source *source,
		const struct obs_source_frame *frame);
extern void remove_async_frame(obs_source_t *source,
		struct obs_source_frame *frame);

J
jp9000 已提交
787 788 789 790 791 792
extern void set_deinterlace_texture_size(obs_source_t *source);
extern void deinterlace_process_last_frame(obs_source_t *source,
		uint64_t sys_time);
extern void deinterlace_update_async_video(obs_source_t *source);
extern void deinterlace_render(obs_source_t *s);

J
jp9000 已提交
793 794 795 796

/* ------------------------------------------------------------------------- */
/* outputs  */

797 798 799 800 801 802 803 804 805 806 807 808
enum delay_msg {
	DELAY_MSG_PACKET,
	DELAY_MSG_START,
	DELAY_MSG_STOP,
};

struct delay_data {
	enum delay_msg msg;
	uint64_t ts;
	struct encoder_packet packet;
};

809 810
typedef void (*encoded_callback_t)(void *data, struct encoder_packet *packet);

811 812 813 814 815
struct obs_weak_output {
	struct obs_weak_ref ref;
	struct obs_output *output;
};

816 817 818 819 820 821 822
#define CAPTION_LINE_CHARS (32)
#define CAPTION_LINE_BYTES (4*CAPTION_LINE_CHARS)
struct caption_text {
	char text[CAPTION_LINE_BYTES+1];
	struct caption_text *next;
};

J
jp9000 已提交
823
struct obs_output {
824
	struct obs_context_data         context;
825
	struct obs_output_info          info;
826
	struct obs_weak_output          *control;
827

828 829 830
	/* indicates ownership of the info.id buffer */
	bool                            owns_info_id;

831 832
	bool                            received_video;
	bool                            received_audio;
833
	volatile bool                   data_active;
834
	volatile bool                   end_data_capture_thread_active;
835
	int64_t                         video_offset;
836
	int64_t                         audio_offsets[MAX_AUDIO_MIXES];
J
jp9000 已提交
837 838
	int64_t                         highest_audio_ts;
	int64_t                         highest_video_ts;
839
	pthread_t                       end_data_capture_thread;
840
	os_event_t                      *stopping_event;
J
jp9000 已提交
841
	pthread_mutex_t                 interleaved_mutex;
842
	DARRAY(struct encoder_packet)   interleaved_packets;
843
	int                             stop_code;
J
jp9000 已提交
844

J
jp9000 已提交
845 846 847
	int                             reconnect_retry_sec;
	int                             reconnect_retry_max;
	int                             reconnect_retries;
848
	int                             reconnect_retry_cur_sec;
J
jp9000 已提交
849
	pthread_t                       reconnect_thread;
850
	os_event_t                      *reconnect_stop_event;
851
	volatile bool                   reconnecting;
J
jp9000 已提交
852 853
	volatile bool                   reconnect_thread_active;

854 855
	uint32_t                        starting_drawn_count;
	uint32_t                        starting_lagged_count;
J
jp9000 已提交
856 857
	uint32_t                        starting_frame_count;

858 859
	int                             total_frames;

860
	volatile bool                   active;
861 862 863
	video_t                         *video;
	audio_t                         *audio;
	obs_encoder_t                   *video_encoder;
864
	obs_encoder_t                   *audio_encoders[MAX_AUDIO_MIXES];
865
	obs_service_t                   *service;
866
	size_t                          mixer_mask;
J
jp9000 已提交
867

868 869 870
	uint32_t                        scaled_width;
	uint32_t                        scaled_height;

J
jp9000 已提交
871 872 873 874 875
	bool                            video_conversion_set;
	bool                            audio_conversion_set;
	struct video_scale_info         video_conversion;
	struct audio_convert_info       audio_conversion;

876 877 878 879 880
	pthread_mutex_t                 caption_mutex;
	double                          caption_timestamp;
	struct caption_text             *caption_head;
	struct caption_text             *caption_tail;

881
	bool                            valid;
882 883 884 885 886 887 888 889 890

	uint64_t                        active_delay_ns;
	encoded_callback_t              delay_callback;
	struct circlebuf                delay_data; /* struct delay_data */
	pthread_mutex_t                 delay_mutex;
	uint32_t                        delay_sec;
	uint32_t                        delay_flags;
	uint32_t                        delay_cur_flags;
	volatile long                   delay_restart_refs;
891 892
	volatile bool                   delay_active;
	volatile bool                   delay_capturing;
893 894

	char                            *last_error_message;
J
jp9000 已提交
895 896
};

897 898 899 900 901 902 903 904 905 906 907 908 909 910
static inline void do_output_signal(struct obs_output *output,
		const char *signal)
{
	struct calldata params = {0};
	calldata_set_ptr(&params, "output", output);
	signal_handler_signal(output->context.signals, signal, &params);
	calldata_free(&params);
}

extern void process_delay(void *data, struct encoder_packet *packet);
extern void obs_output_cleanup_delay(obs_output_t *output);
extern bool obs_output_delay_start(obs_output_t *output);
extern void obs_output_delay_stop(obs_output_t *output);
extern bool obs_output_actual_start(obs_output_t *output);
911 912
extern void obs_output_actual_stop(obs_output_t *output, bool force,
		uint64_t ts);
913

914 915
extern const struct obs_output_info *find_output(const char *id);

J
jp9000 已提交
916 917 918
extern void obs_output_remove_encoder(struct obs_output *output,
		struct obs_encoder *encoder);

919 920
extern void obs_encoder_packet_create_instance(struct encoder_packet *dst,
		const struct encoder_packet *src);
921 922
void obs_output_destroy(obs_output_t *output);

J
jp9000 已提交
923 924 925 926

/* ------------------------------------------------------------------------- */
/* encoders  */

927 928 929 930 931
struct obs_weak_encoder {
	struct obs_weak_ref ref;
	struct obs_encoder *encoder;
};

932
struct encoder_callback {
933
	bool sent_first_packet;
J
jp9000 已提交
934 935 936 937 938
	void (*new_packet)(void *param, struct encoder_packet *packet);
	void *param;
};

struct obs_encoder {
939
	struct obs_context_data         context;
940
	struct obs_encoder_info         info;
941
	struct obs_weak_encoder         *control;
J
jp9000 已提交
942

J
jp9000 已提交
943 944
	pthread_mutex_t                 init_mutex;

945 946 947 948 949 950
	uint32_t                        samplerate;
	size_t                          planes;
	size_t                          blocksize;
	size_t                          framesize;
	size_t                          framesize_bytes;

951 952
	size_t                          mixer_idx;

953 954
	uint32_t                        scaled_width;
	uint32_t                        scaled_height;
955
	enum video_format               preferred_format;
956

J
jp9000 已提交
957 958
	volatile bool                   active;
	bool                            initialized;
J
jp9000 已提交
959

960 961 962
	/* indicates ownership of the info.id buffer */
	bool                            owns_info_id;

963 964 965 966 967
	uint32_t                        timebase_num;
	uint32_t                        timebase_den;

	int64_t                         cur_pts;

968 969 970 971 972 973 974 975
	struct circlebuf                audio_input_buffer[MAX_AV_PLANES];
	uint8_t                         *audio_output_buffer[MAX_AV_PLANES];

	/* if a video encoder is paired with an audio encoder, make it start
	 * up at the specific timestamp.  if this is the audio encoder,
	 * wait_for_video makes it wait until it's ready to sync up with
	 * video */
	bool                            wait_for_video;
976
	bool                            first_received;
977
	struct obs_encoder              *paired_encoder;
978
	int64_t                         offset_usec;
979
	uint64_t                        first_raw_ts;
980 981
	uint64_t                        start_ts;

J
jp9000 已提交
982
	pthread_mutex_t                 outputs_mutex;
983
	DARRAY(obs_output_t*)            outputs;
J
jp9000 已提交
984 985 986

	bool                            destroy_on_stop;

987
	/* stores the video/audio media output pointer.  video_t *or audio_t **/
J
jp9000 已提交
988
	void                            *media;
989 990 991

	pthread_mutex_t                 callbacks_mutex;
	DARRAY(struct encoder_callback) callbacks;
P
Palana 已提交
992 993

	const char                      *profile_encoder_encode_name;
J
jp9000 已提交
994
};
J
jp9000 已提交
995

996 997
extern struct obs_encoder_info *find_encoder(const char *id);

998
extern bool obs_encoder_initialize(obs_encoder_t *encoder);
999
extern void obs_encoder_shutdown(obs_encoder_t *encoder);
1000

1001
extern void obs_encoder_start(obs_encoder_t *encoder,
1002 1003
		void (*new_packet)(void *param, struct encoder_packet *packet),
		void *param);
1004
extern void obs_encoder_stop(obs_encoder_t *encoder,
1005 1006 1007
		void (*new_packet)(void *param, struct encoder_packet *packet),
		void *param);

J
jp9000 已提交
1008 1009 1010 1011
extern void obs_encoder_add_output(struct obs_encoder *encoder,
		struct obs_output *output);
extern void obs_encoder_remove_output(struct obs_encoder *encoder,
		struct obs_output *output);
1012

1013 1014
void obs_encoder_destroy(obs_encoder_t *encoder);

1015 1016 1017
/* ------------------------------------------------------------------------- */
/* services */

1018 1019 1020 1021 1022
struct obs_weak_service {
	struct obs_weak_ref ref;
	struct obs_service *service;
};

1023 1024 1025
struct obs_service {
	struct obs_context_data         context;
	struct obs_service_info         info;
1026
	struct obs_weak_service         *control;
1027

1028 1029 1030
	/* indicates ownership of the info.id buffer */
	bool                            owns_info_id;

1031 1032 1033
	bool                            active;
	bool                            destroy;
	struct obs_output               *output;
1034
};
1035

1036 1037
extern const struct obs_service_info *find_service(const char *id);

1038 1039 1040 1041
extern void obs_service_activate(struct obs_service *service);
extern void obs_service_deactivate(struct obs_service *service, bool remove);
extern bool obs_service_initialize(struct obs_service *service,
		struct obs_output *output);
1042 1043 1044

void obs_service_destroy(obs_service_t *service);