root/modules/access/Modules.am

Revision 9dcd81a1dc9e0cfa685c61f67f43fa85cb7f9d5b, 1.3 kB (checked in by Pierre d'Herbemont <pdherbemont@videolan.org>, 6 months ago)

qtcapture: New access_demux module (QTKit based) to capture video from your iSight Camera on Mac OS X.

Usage: 'vlc qtcapture://'.

This is a 2 hours hacked module. We don't grab sound yet, and there are a lot of FIXME.

Note: For some reason QTKit needs a the main thread to be a cocoa thread. Don't expect it to run with -I dummy for instance.

  • Property mode set to 100644
Line 
1 # Automake forgets to add a proper tag to libtool with Objective-C files.
2 # Moreover Libtool should default tag to CC when none is specified but
3 # obviously does not. Here is a fix for that.
4 LIBTOOL=@LIBTOOL@ --tag=CC
5
6 BASE_SUBDIRS = dvb mms cdda rtsp rtmp v4l2 vcd vcdx screen
7 EXTRA_SUBDIRS = bda dshow
8 SUBDIRS = $(BASE_SUBDIRS)
9 DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
10
11 if HAVE_WIN32
12 SUBDIRS += bda dshow
13 endif
14
15 SOURCES_access_file = file.c
16 SOURCES_access_mmap = mmap.c
17 SOURCES_access_directory = directory.c
18 SOURCES_access_dv = dv.c
19 SOURCES_access_udp = udp.c
20 SOURCES_access_tcp = tcp.c
21 SOURCES_access_http = http.c
22 SOURCES_access_ftp = ftp.c
23 SOURCES_access_smb = smb.c
24 SOURCES_access_gnomevfs = gnomevfs.c
25 SOURCES_access_eyetv = eyetv.m
26 SOURCES_dvdnav = dvdnav.c
27 SOURCES_dvdread = dvdread.c
28 SOURCES_dc1394 = dc1394.c
29 SOURCES_access_fake = fake.c
30 SOURCES_pvr = pvr.c videodev2.h
31 SOURCES_v4l = v4l.c videodev_mjpeg.h
32 SOURCES_qtcapture = qtcapture.m
33 SOURCES_cdda = \
34         cdda.c \
35         vcd/cdrom.c \
36         vcd/cdrom.h \
37         vcd/cdrom_internals.h \
38         $(NULL)
39 SOURCES_access_jack = jack.c
40
41 libvlc_LTLIBRARIES += \
42         libaccess_file_plugin.la \
43         libaccess_directory_plugin.la \
44         libaccess_udp_plugin.la \
45         libaccess_tcp_plugin.la \
46         libaccess_http_plugin.la \
47         libaccess_ftp_plugin.la \
48         libaccess_fake_plugin.la \
49         $(NULL)
Note: See TracBrowser for help on using the browser.