mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
d1d7fb884d
Original commit message from CVS: * configure.ac: * sys/Makefile.am: * sys/dshowvideosink/Makefile.am: * sys/dshowvideosink/README: * sys/dshowvideosink/dshowvideofakesrc.cpp: * sys/dshowvideosink/dshowvideofakesrc.h: * sys/dshowvideosink/dshowvideosink.cpp: * sys/dshowvideosink/dshowvideosink.h: Add a new win32 videosink. Uses the DirectShow renderers for high-performance video rendering on win32. Currently only supports some YUV formats. Rank PRIMARY, since it's much more useful for the common cases that the directdraw sink (which only does RGB).
59 lines
672 B
Makefile
59 lines
672 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
|
|
|
|
SUBDIRS = $(DVB_DIR) $(FBDEV_DIR) $(OSS4_DIR) $(QT_DIR) $(VCD_DIR) $(WININET_DIR)
|
|
|
|
DIST_SUBDIRS = dvb fbdev dshowdecwrapper dshowsrcwrapper dshowvideosink \
|
|
oss4 qtwrapper vcd wininet
|
|
|