obs.h 14.3 KB
Newer Older
J
jp9000 已提交
1 2 3 4 5
/******************************************************************************
    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
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 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

#include "util/c99defs.h"
#include "graphics/graphics.h"
#include "graphics/vec2.h"
#include "media-io/media-io.h"

#include "obs-defs.h"

/*
 * Main libobs header used by applications.
 */

#ifdef __cplusplus
extern "C" {
#endif

35 36 37 38 39 40 41
/* LIBOBS_API_VER must be returned by module_version in each module */

#define LIBOBS_API_MAJOR_VER  0 /* increment if major breaking changes */
#define LIBOBS_API_MINOR_VER  1 /* increment if minor non-breaking additions */
#define LIBOBS_API_VER       ((LIBOBS_API_MAJOR_VER << 16) | \
                               LIBOBS_API_MINOR_VER)

42
enum obs_source_type {
J
jp9000 已提交
43 44 45 46 47 48
	SOURCE_INPUT,
	SOURCE_FILTER,
	SOURCE_TRANSITION,
	SOURCE_SCENE
};

49 50 51 52 53
enum obs_video_type {
	OBS_VIDEO_YUV,
	OBS_VIDEO_RGB
};

54
/* used for changing the order of items (for example, filters in a source,
J
jp9000 已提交
55
 * or items in a scene) */
J
jp9000 已提交
56 57 58 59 60 61 62
enum order_movement {
	ORDER_MOVE_UP,
	ORDER_MOVE_DOWN,
	ORDER_MOVE_TOP,
	ORDER_MOVE_BOTTOM
};

63
struct obs_video_info {
64
	/* graphics module to use (usually "libobs-opengl" or "libobs-d3d11") */
65
	const char          *graphics_module;
66 67

	/* output fps numerator and denominator */
68 69
	uint32_t            fps_num;
	uint32_t            fps_den;
70 71 72 73 74 75

	/* window dimensions for what's drawn on screen */
	uint32_t            window_width;
	uint32_t            window_height;

	/* base compositing dimensions */
76 77
	uint32_t            base_width;
	uint32_t            base_height;
78 79

	/* output dimensions and format */
80 81 82
	uint32_t            output_width;
	uint32_t            output_height;
	enum video_format   output_format;
83 84

	/* video adapter ID to use (NOTE: do not use for optimus laptops) */
85
	uint32_t            adapter;
86 87

	/* window to render */
88 89 90
	struct gs_window    window;
};

91 92 93 94 95 96
struct filtered_audio {
	void                *data;
	uint32_t            frames;
	uint64_t            timestamp;
};

97
struct source_audio {
J
jp9000 已提交
98 99
	const void          *data;
	uint32_t            frames;
100 101

	/* audio will be automatically resampled/upmixed/downmixed */
J
jp9000 已提交
102
	enum speaker_layout speakers;
103
	enum audio_format   format;
J
jp9000 已提交
104
	uint32_t            samples_per_sec;
105 106

	/* can be 0 if 'immediate' */
J
jp9000 已提交
107
	uint64_t            timestamp;
108 109 110
};

struct source_frame {
J
jp9000 已提交
111 112 113 114 115 116
	void                *data;
	uint32_t            width;
	uint32_t            height;
	uint32_t            row_bytes;
	uint64_t            timestamp;

117
	enum video_format   format;
J
jp9000 已提交
118 119
	float               yuv_matrix[16];
	bool                flip;
120 121 122 123 124 125 126 127 128 129
};

static inline void source_frame_destroy(struct source_frame *frame)
{
	if (frame) {
		bfree(frame->data);
		bfree(frame);
	}
}

J
jp9000 已提交
130 131 132 133 134 135
/* opaque types */
struct obs_display;
struct obs_source;
struct obs_scene;
struct obs_scene_item;
struct obs_output;
136
struct obs_service;
J
jp9000 已提交
137

138 139 140 141 142
typedef struct obs_display    *obs_display_t;
typedef struct obs_source     *obs_source_t;
typedef struct obs_scene      *obs_scene_t;
typedef struct obs_scene_item *obs_sceneitem_t;
typedef struct obs_output     *obs_output_t;
143
typedef struct obs_service    *obs_service_t;
J
jp9000 已提交
144

145 146 147
/* typedefs */
typedef void (*ENUM_SOURCES_PROC)(obs_source_t source, void *param);

J
jp9000 已提交
148 149 150 151
/* ------------------------------------------------------------------------- */
/* OBS context */

/**
152
 * Starts up and shuts down OBS
J
jp9000 已提交
153
 *
154
 *   Creates the OBS context.
J
jp9000 已提交
155
 */
156
EXPORT bool obs_startup(void);
157
EXPORT void obs_shutdown(void);
J
jp9000 已提交
158 159 160 161

/**
 * Sets base video ouput base resolution/fps/format
 *
162
 *   NOTE: Cannot set base video if currently streaming/recording.
J
jp9000 已提交
163
 */
164
EXPORT bool obs_reset_video(struct obs_video_info *ovi);
165

J
jp9000 已提交
166 167 168 169 170
/**
 * Sets base audio output format/channels/samples/etc
 *
 *   NOTE: Cannot reset base audio if currently streaming/recording.
 */
171
EXPORT bool obs_reset_audio(struct audio_info *ai);
J
jp9000 已提交
172 173 174 175 176 177 178 179

/**
 * Loads a plugin module
 *
 *   A plugin module contains exports for inputs/fitlers/transitions/outputs.
 * See obs-source.h and obs-output.h for more information on the exports to
 * use.
 */
180
EXPORT int obs_load_module(const char *path);
J
jp9000 已提交
181 182

/**
183
 * Enumerates all available inputs source types.
J
jp9000 已提交
184 185 186 187
 *
 *   Inputs are general source inputs (such as capture sources, device sources,
 * etc).
 */
188
EXPORT bool obs_enum_input_types(size_t idx, const char **name);
189

J
jp9000 已提交
190
/**
191
 * Enumerates all available filter source types.
J
jp9000 已提交
192 193 194 195
 *
 *   Filters are sources that are used to modify the video/audio output of
 * other sources.
 */
196
EXPORT bool obs_enum_filter_types(size_t idx, const char **name);
197

J
jp9000 已提交
198
/**
199
 * Enumerates all available transition source types.
J
jp9000 已提交
200 201 202 203
 *
 *   Transitions are sources used to transition between two or more other
 * sources.
 */
204
EXPORT bool obs_enum_transition_types(size_t idx, const char **name);
205

J
jp9000 已提交
206
/**
207
 * Enumerates all available ouput types.
J
jp9000 已提交
208 209 210 211
 *
 *   Outputs handle color space conversion, encoding, and output to file or
 * streams.
 */
212
EXPORT bool obs_enum_output_types(size_t idx, const char **name);
J
jp9000 已提交
213 214

/** Gets the graphics context for this OBS context */
215 216
EXPORT graphics_t obs_graphics(void);

J
jp9000 已提交
217
/** Get the media context for this OBS context (used for outputs) */
218
EXPORT media_t obs_media(void);
J
jp9000 已提交
219 220

/**
221 222
 * Adds a source to the user source list and increments the reference counter
 * for that source.
J
jp9000 已提交
223
 *
224 225 226
 *   The user source list is the list of sources that are accessible by a user.
 * Typically when a transition is active, it is not meant to be accessible by
 * users, so there's no reason for a user to see such a source.
J
jp9000 已提交
227
 */
228 229
EXPORT bool obs_add_source(obs_source_t source);

230
/** Sets the primary output source for a channel. */
231
EXPORT void obs_set_output_source(uint32_t channel, obs_source_t source);
232 233 234 235 236

/**
 * Gets the primary output source for a channel and increments the reference
 * counter for that source.  Use obs_source_release to release.
 */
237
EXPORT obs_source_t obs_get_output_source(uint32_t channel);
J
jp9000 已提交
238

239 240 241
/** Enumerates user sources */
EXPORT void obs_enum_sources(ENUM_SOURCES_PROC enum_proc, void *param);

J
jp9000 已提交
242 243 244 245
/**
 * Returns the location of a plugin data file.
 *
 *   file: Name of file to locate.  For example, "myplugin/mydata.data"
246
 *   returns: Path string, or NULL if not found.  Use bfree to free string.
J
jp9000 已提交
247 248 249
 */
EXPORT char *obs_find_plugin_file(const char *file);

J
jp9000 已提交
250 251 252 253 254 255 256 257 258 259 260

/* ------------------------------------------------------------------------- */
/* Display context */

/**
 * Creates an extra display context.
 *
 *   An extra display can be used for things like separate previews,
 * viewing sources independently, and other things.  Creates a new swap chain
 * linked to a specific window to display a source.
 */
261 262 263
EXPORT obs_display_t obs_display_create(struct gs_init_data *graphics_data);
EXPORT void obs_display_destroy(obs_display_t display);

J
jp9000 已提交
264
/** Sets the source to be used for a display context. */
265 266 267 268
EXPORT void obs_display_setsource(obs_display_t display, uint32_t channel,
		obs_source_t source);
EXPORT obs_source_t obs_display_getsource(obs_display_t display,
		uint32_t channel);
J
jp9000 已提交
269 270 271 272 273


/* ------------------------------------------------------------------------- */
/* Sources */

274 275 276 277 278 279
/**
 * Gets the translated display name of a source
 */
EXPORT const char *obs_source_getdisplayname(enum obs_source_type type,
		const char *name, const char *locale);

J
jp9000 已提交
280 281 282 283 284 285
/**
 * Creates a source of the specified type with the specified settings.
 *
 *   The "source" context is used for anything related to presenting
 * or modifying video/audio.
 */
286
EXPORT obs_source_t obs_source_create(enum obs_source_type type,
287
		const char *name, const char *settings);
288 289 290 291 292 293 294 295 296 297

/**
 * Adds/releases a reference to a source.  When the last reference is
 * released, the source is destroyed.
 */
EXPORT int obs_source_addref(obs_source_t source);
EXPORT int obs_source_release(obs_source_t source);

/** Nofifies all references that the source should be released */
EXPORT void obs_source_remove(obs_source_t source);
298 299 300

/** Returns true if the source should be released */
EXPORT bool obs_source_removed(obs_source_t source);
301

J
jp9000 已提交
302 303 304 305 306 307 308
/**
 * Retrieves flags that specify what type of data the source presents/modifies.
 *
 *   SOURCE_VIDEO if it presents/modifies video_frame
 *   SOURCE_ASYNC if the video is asynchronous.
 *   SOURCE_AUDIO if it presents/modifies audio (always async)
 */
J
jp9000 已提交
309
EXPORT uint32_t obs_source_get_output_flags(obs_source_t source);
310

J
jp9000 已提交
311
/** Specifies whether the source can be configured */
312 313
EXPORT bool obs_source_hasconfig(obs_source_t source);

J
jp9000 已提交
314
/** Opens a configuration panel and attaches it to the parent window */
315 316
EXPORT void obs_source_config(obs_source_t source, void *parent);

J
jp9000 已提交
317
/** Renders a video source. */
318 319
EXPORT void obs_source_video_render(obs_source_t source);

J
jp9000 已提交
320
/** Gets the width of a source (if it has video) */
J
jp9000 已提交
321
EXPORT uint32_t obs_source_getwidth(obs_source_t source);
322

J
jp9000 已提交
323
/** Gets the height of a source (if it has video) */
J
jp9000 已提交
324
EXPORT uint32_t obs_source_getheight(obs_source_t source);
325

J
jp9000 已提交
326 327 328 329 330
/**
 * Gets a custom parameter from the source.
 *
 *   Used for efficiently modifying source properties in real time.
 */
331 332 333
EXPORT size_t obs_source_getparam(obs_source_t source, const char *param,
		void *buf, size_t buf_size);

J
jp9000 已提交
334 335 336 337 338
/**
 * Sets a custom parameter for the source.
 *
 *   Used for efficiently modifying source properties in real time.
 */
339 340
EXPORT void obs_source_setparam(obs_source_t source, const char *param,
		const void *data, size_t size);
341

J
jp9000 已提交
342
/** If the source is a filter, returns the target source of the filter */
343 344
EXPORT obs_source_t obs_filter_gettarget(obs_source_t filter);

J
jp9000 已提交
345
/** Adds a filter to the source (which is used whenever the source is used) */
346
EXPORT void obs_source_filter_add(obs_source_t source, obs_source_t filter);
347

J
jp9000 已提交
348
/** Removes a filter from the source */
349 350
EXPORT void obs_source_filter_remove(obs_source_t source, obs_source_t filter);

J
jp9000 已提交
351
/** Modifies the order of a specific filter */
352 353
EXPORT void obs_source_filter_setorder(obs_source_t source, obs_source_t filter,
		enum order_movement movement);
J
jp9000 已提交
354 355

/** Gets the settings string for a source */
356
EXPORT const char *obs_source_get_settings(obs_source_t source);
J
jp9000 已提交
357 358 359 360 361

/* ------------------------------------------------------------------------- */
/* Functions used by sources */

/** Saves the settings string for a source */
362 363
EXPORT void obs_source_save_settings(obs_source_t source, const char *settings);

J
jp9000 已提交
364
/** Outputs asynchronous video data */
365
EXPORT void obs_source_obs_async_video(obs_source_t source,
366
		const struct source_frame *frame);
367

J
jp9000 已提交
368
/** Outputs audio data (always asynchronous) */
369 370 371 372 373 374
EXPORT void obs_source_obs_async_audio(obs_source_t source,
		const struct source_audio *audio);

/** Gets the current async video frame */
EXPORT struct source_frame *obs_source_getframe(obs_source_t source);

J
jp9000 已提交
375
/** Releases the current async video frame */
376 377
EXPORT void obs_source_releaseframe(obs_source_t source,
		struct source_frame *frame);
J
jp9000 已提交
378 379 380 381 382 383 384 385 386 387 388


/* ------------------------------------------------------------------------- */
/* Scenes */

/**
 * Creates a scene.
 *
 *   A scene is a source which is a container of other sources with specific
 * display oriantations.  Scenes can also be used like any other source.
 */
389 390 391
EXPORT obs_scene_t obs_scene_create(void);
EXPORT void        obs_scene_destroy(obs_scene_t scene);

J
jp9000 已提交
392
/** Gets the scene's source context */
393
EXPORT obs_source_t obs_scene_getsource(obs_scene_t scene);
J
jp9000 已提交
394 395

/** Adds/creates a new scene item for a source */
396
EXPORT obs_sceneitem_t obs_scene_add(obs_scene_t scene, obs_source_t source);
J
jp9000 已提交
397 398

/** Removes/destroys a scene item */
399
EXPORT void  obs_sceneitem_destroy(obs_sceneitem_t item);
J
jp9000 已提交
400 401

/* Functions for gettings/setting specific oriantation of a scene item */
402 403 404
EXPORT void obs_sceneitem_setpos(obs_sceneitem_t item, const struct vec2 *pos);
EXPORT void obs_sceneitem_setrot(obs_sceneitem_t item, float rot);
EXPORT void obs_sceneitem_setorigin(obs_sceneitem_t item,
J
jp9000 已提交
405
		const struct vec2 *origin);
406 407 408 409
EXPORT void obs_sceneitem_setscale(obs_sceneitem_t item,
		const struct vec2 *scale);
EXPORT void obs_sceneitem_setorder(obs_sceneitem_t item,
		enum order_movement movement);
J
jp9000 已提交
410

411 412 413 414
EXPORT void  obs_sceneitem_getpos(obs_sceneitem_t item, struct vec2 *pos);
EXPORT float obs_sceneitem_getrot(obs_sceneitem_t item);
EXPORT void  obs_sceneitem_getorigin(obs_sceneitem_t item, struct vec2 *center);
EXPORT void  obs_sceneitem_getscale(obs_sceneitem_t item, struct vec2 *scale);
J
jp9000 已提交
415 416 417 418 419 420 421 422 423 424 425


/* ------------------------------------------------------------------------- */
/* Outputs */

/**
 * Creates an output.
 *
 *   Outputs allow outputting to file, outputting to network, outputting to
 * directshow, or other custom outputs.
 */
426 427 428
EXPORT obs_output_t obs_output_create(const char *name, const char *settings);
EXPORT void obs_output_destroy(obs_output_t output);

J
jp9000 已提交
429
/** Starts the output. */
430 431
EXPORT void obs_output_start(obs_output_t output);

J
jp9000 已提交
432
/** Stops the output. */
433 434
EXPORT void obs_output_stop(obs_output_t output);

J
jp9000 已提交
435
/** Specifies whether the output can be configured */
436 437
EXPORT bool obs_output_canconfig(obs_output_t output);

J
jp9000 已提交
438
/** Opens a configuration panel with the specified parent window */
439 440
EXPORT void obs_output_config(obs_output_t output, void *parent);

J
jp9000 已提交
441
/** Specifies whether the output can be paused */
442 443
EXPORT bool obs_output_canpause(obs_output_t output);

J
jp9000 已提交
444
/** Pauses the output (if the functionality is allowed by the output */
445
EXPORT void obs_output_pause(obs_output_t output);
J
jp9000 已提交
446 447

/* Gets the current output settings string */
448
EXPORT const char *obs_output_get_settings(obs_output_t output);
J
jp9000 已提交
449 450

/* Saves the output settings string, typically used only by outputs */
451 452
EXPORT void obs_output_save_settings(obs_output_t output,
		const char *settings);
J
jp9000 已提交
453

454 455 456 457 458 459 460

/* ------------------------------------------------------------------------- */
/* Stream Services */
EXPORT obs_service_t obs_service_create(const char *service,
		const char *settings);
EXPORT void obs_service_destroy(obs_service_t service);

461
EXPORT void obs_service_setdata(obs_service_t service,const char *attribute,
462 463 464 465 466
		const char *data);
EXPORT const char *obs_service_getdata(obs_service_t service,
		const char *attribute);


J
jp9000 已提交
467 468 469
#ifdef __cplusplus
}
#endif