mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
69fad589ac
Original commit message from CVS: * sys/Makefile.am: * sys/wasapi/Makefile.am: * sys/wasapi/gstwasapi.c: * sys/wasapi/gstwasapisink.c: * sys/wasapi/gstwasapisink.h: * sys/wasapi/gstwasapisrc.c: * sys/wasapi/gstwasapisrc.h: * sys/wasapi/gstwasapiutil.c: * sys/wasapi/gstwasapiutil.h: New plugin for audio capture and playback using Windows Audio Session API (WASAPI) available with Vista and newer (#520901). Comes with hardcoded caps and obviously needs lots of love. Haven't had time to work on this code since it was written, was initially just a quick experiment to play around with this new API.
65 lines
763 B
Makefile
65 lines
763 B
Makefile
# if USE_DXR3
|
|
# DXR3_DIR=dxr3
|
|
# else
|
|
# DXR3_DIR=
|
|
# endif
|
|
|
|
# if USE_QCAM
|
|
# QCAM_DIR=qcam
|
|
# else
|
|
# QCAM_DIR=
|
|
# endif
|
|
|
|
if USE_VCD
|
|
VCD_DIR=vcd
|
|
else
|
|
VCD_DIR=
|
|
endif
|
|
|
|
# if USE_CDROM
|
|
# CDROM_DIR=cdrom
|
|
# else
|
|
# CDROM_DIR=
|
|
# endif
|
|
|
|
if USE_FBDEV
|
|
FBDEV_DIR=fbdev
|
|
else
|
|
FBDEV_DIR=
|
|
endif
|
|
|
|
if USE_DVB
|
|
DVB_DIR=dvb
|
|
else
|
|
DVB_DIR=
|
|
endif
|
|
|
|
if USE_OSS4
|
|
OSS4_DIR=oss4
|
|
else
|
|
OSS4_DIR=
|
|
endif
|
|
|
|
if USE_QUICKTIME
|
|
QT_DIR=qtwrapper
|
|
else
|
|
QT_DIR=
|
|
endif
|
|
|
|
if USE_WININET
|
|
WININET_DIR=wininet
|
|
else
|
|
WININET_DIR=
|
|
endif
|
|
|
|
if USE_ACM
|
|
ACM_DIR=acmenc
|
|
else
|
|
ACM_DIR=
|
|
endif
|
|
|
|
SUBDIRS = $(ACM_DIR) $(DVB_DIR) $(FBDEV_DIR) $(OSS4_DIR) $(QT_DIR) $(VCD_DIR) $(WININET_DIR)
|
|
|
|
DIST_SUBDIRS = acmenc dvb fbdev dshowdecwrapper dshowsrcwrapper dshowvideosink \
|
|
oss4 qtwrapper vcd wasapi wininet winks winscreencap
|
|
|