Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
9c389165
Commit
9c389165
authored
Jan 22, 2013
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Decklink output
parent
88ed3dba
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
814 additions
and
1 deletion
+814
-1
NEWS
NEWS
+1
-0
configure.ac
configure.ac
+1
-1
modules/LIST
modules/LIST
+1
-0
modules/video_output/Modules.am
modules/video_output/Modules.am
+7
-0
modules/video_output/decklink.cpp
modules/video_output/decklink.cpp
+803
-0
po/POTFILES.in
po/POTFILES.in
+1
-0
No files found.
NEWS
View file @
9c389165
...
...
@@ -64,6 +64,7 @@ Audio Filters:
* new VSXu visualization plugin
Video Outputs:
* DecklinkOutput: New module using Blackmagic cards
* OpenGL: use glsl instead of ARB to do the YUV->RGB conversions
* Fix the power management issue on Windows for standby management
...
...
configure.ac
View file @
9c389165
...
...
@@ -1764,7 +1764,7 @@ if test "${enable_decklink}" != "no"
then
if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
then
VLC_ADD_CXXFLAGS([decklink],[-I${with_decklink_sdk}/include])
VLC_ADD_CXXFLAGS([decklink
decklinkoutput
],[-I${with_decklink_sdk}/include])
fi
VLC_SAVE_FLAGS
CXXFLAGS="${CXXFLAGS} ${CXXFLAGS_decklink}"
...
...
modules/LIST
View file @
9c389165
...
...
@@ -85,6 +85,7 @@ $Id$
* dc1394: IIDC (DCAM) FireWire input module
* ddummy: dummy decoder
* decklink: input module to read from a Blackmagic SDI card
* decklinkoutput: output module to write to Blackmagic SDI card
* decomp: Decompression module
* deinterlace: naive deinterlacing filter
* demux_cdg: Demuxer for CD-G files (Karaoke)
...
...
modules/video_output/Modules.am
View file @
9c389165
...
...
@@ -10,6 +10,13 @@ SOURCES_vout_macosx = macosx.m opengl.h opengl.c
SOURCES_vout_ios = ios.m opengl.h opengl.c
SOURCES_android_surface = androidsurface.c
if HAVE_DECKLINK
libdecklinkoutput_plugin_la_SOURCES = decklink.cpp
libdecklinkoutput_plugin_la_CXXFLAGS = $(AM_CFLAGS) $(CXXFLAGS_decklinkoutput)
libdecklinkoutput_plugin_la_LIBADD = $(AM_LIBADD) $(LIBS_decklink) $(LIBDL)
libvlc_LTLIBRARIES += libdecklinkoutput_plugin.la
endif
### OpenGL ###
# TODO: merge all three source files (?)
libgles2_plugin_la_SOURCES = opengl.c opengl.h gl.c
...
...
modules/video_output/decklink.cpp
0 → 100644
View file @
9c389165
This diff is collapsed.
Click to expand it.
po/POTFILES.in
View file @
9c389165
...
...
@@ -1141,6 +1141,7 @@ modules/video_filter/yuvp.c
modules/video_output/aa.c
modules/video_output/androidsurface.c
modules/video_output/caca.c
modules/video_output/decklink.cpp
modules/video_output/directfb.c
modules/video_output/drawable.c
modules/video_output/egl.c
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment