Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gst-plugins-good
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
6a6f7fc4
Commit
6a6f7fc4
authored
Jun 24, 2017
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meson: build raw1394 plugin
https://bugzilla.gnome.org/show_bug.cgi?id=784134
parent
dd13973c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletion
+23
-1
ext/meson.build
ext/meson.build
+1
-1
ext/raw1394/meson.build
ext/raw1394/meson.build
+22
-0
No files found.
ext/meson.build
View file @
6a6f7fc4
...
...
@@ -10,7 +10,7 @@ if cc.get_id() != 'msvc'
subdir('dv')
endif
subdir('libpng')
#
subdir('raw1394')
subdir('raw1394')
subdir('pulse')
subdir('shout2')
subdir('soup')
...
...
ext/raw1394/meson.build
0 → 100644
View file @
6a6f7fc4
raw1394_dep = dependency('libraw1394', version: '>= 2.0.0', required: false)
avc1394_dep = dependency('libavc1394', version: '>= 0.5.4', required: false)
iec61883_dep = dependency('libiec61883', version: '>= 1.0.0', required: false)
have_1394 = false
if raw1394_dep.found() and iec61883_dep.found() and avc1394_dep.found()
if cc.has_function('avc1394_send_command', dependencies: avc1394_dep)
if cc.has_function('rom1394_free_directory', dependencies: avc1394_dep)
have_1394 = true
endif
endif
endif
if have_1394
library('gst1394',
'gst1394.c', 'gst1394probe.c', 'gstdv1394src.c', 'gsthdv1394src.c', 'gst1394clock.c',
c_args : gst_plugins_good_args + ['-DHAVE_LIBIEC61883'],
include_directories : [configinc, libsinc],
dependencies : [gstvideo_dep, gstbase_dep, raw1394_dep, avc1394_dep, iec61883_dep],
install : true,
install_dir : plugins_install_dir)
endif
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