mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-18 11:18:36 -05:00
Completely revamped the entire media i/o data and handlers. The original idea was to have a system that would have connecting media inputs and outputs, but at a certain point I realized that this was an unnecessary complexity for what we wanted to do. (Also, it reminded me of directshow filters, and I HATE directshow with a passion, and wouldn't wish it upon my greatest enemy) Now, audio/video outputs are connected to directly, with better callback handlers, and will eventually have the ability to automatically handle conversions such as 4:4:4 to 4:2:0 when connecting to an input that uses them. Doing this will allow the video/audio i/o handlers to also prevent duplicate conversion, as well as make it easier/simple to use. My true goal for this is to make output and encoder plugins as simple to create as possible. I want to be able to be able to create an output plugin with almost no real hassle of having to worry about image conversions, media inputs/outputs, etc. A plugin developer shouldn't have to handle that sort of stuff when he/she doesn't really need to. Plugins will be able to simply create a callback via obs_video() and/or obs_audio(), and they will automatically receive the audio/video data in the formats requested via a simple callback, without needing to do almost anything else at all.
73 lines
1.6 KiB
Plaintext
73 lines
1.6 KiB
Plaintext
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
if OS_WIN
|
|
if ARCH_X86
|
|
libobsdir = ../build/bin/32bit
|
|
else
|
|
libobsdir = ../build/bin/64bit
|
|
endif
|
|
else
|
|
libobsdir = $(libdir)
|
|
endif
|
|
|
|
libobs_LTLIBRARIES = libobs.la
|
|
libobs_la_LDFLAGS = -no-undefined --version-info 0:0:0
|
|
|
|
if OS_WIN
|
|
libobs_la_LDFLAGS += -avoid-version
|
|
endif
|
|
|
|
libobs_la_SOURCES = obs.c \
|
|
obs-display.c \
|
|
obs-module.c \
|
|
obs-output.c \
|
|
obs-scene.c \
|
|
obs-source.c \
|
|
obs-video.c \
|
|
util/base.c \
|
|
util/bmem.c \
|
|
util/cf-lexer.c \
|
|
util/cf-parser.c \
|
|
util/config-file.c \
|
|
util/dstr.c \
|
|
util/lexer.c \
|
|
util/platform.c \
|
|
util/text-lookup.c \
|
|
util/utf8.c \
|
|
media-io/audio-io.c \
|
|
media-io/format-conversion.c \
|
|
media-io/audio-resampler-ffmpeg.c \
|
|
media-io/video-io.c \
|
|
graphics/axisang.c \
|
|
graphics/bounds.c \
|
|
graphics/effect.c \
|
|
graphics/effect-parser.c \
|
|
graphics/graphics.c \
|
|
graphics/graphics-imports.c \
|
|
graphics/math-extra.c \
|
|
graphics/matrix3.c \
|
|
graphics/matrix4.c \
|
|
graphics/plane.c \
|
|
graphics/quat.c \
|
|
graphics/shader-parser.c \
|
|
graphics/texture-render.c \
|
|
graphics/vec2.c \
|
|
graphics/vec3.c \
|
|
graphics/vec4.c \
|
|
callback/calldata.c \
|
|
callback/proc.c \
|
|
callback/signal.c
|
|
|
|
if OS_WIN
|
|
libobs_la_SOURCES += util/platform-windows.c obs-windows.c
|
|
endif
|
|
|
|
if OS_OSX
|
|
libobs_la_SOURCES += util/platform-cocoa.m obs-cocoa.c
|
|
libobs_la_OBJCFLAGS = -fobjc-arc
|
|
endif
|
|
|
|
if OS_NIX
|
|
libobs_la_SOURCES += util/platform-nix.c obs-nix.c
|
|
endif
|