mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
dc597dcfd0
Original commit message from CVS: Plugins cleanup: * stereo2mono, mono2stereo, int2float, float2int: replaced by audioconvert. * stereosplit replaced by oneton. * vumeter replaced by level (and was broken anyway). * avifile replaced by ffmpeg. * mjpegtools duplicates functionality of jpeg. jpeg now works with jpeg-mmx, too, which makes mjpegtools unneeded. * allow for jpegmmx instead of jpeg. * openquicktime replaced by qtdemux and ffmpeg. Broken anyway. * XMMS is broken and will never be fixed. * vga is broken and will not be fixed anywhere soon. * videosink has never worked. If it works, add it back to replace xvideosink.
52 lines
545 B
Makefile
52 lines
545 B
Makefile
if USE_DXR3
|
|
DXR3_DIR=dxr3
|
|
else
|
|
DXR3_DIR=
|
|
endif
|
|
|
|
if USE_OSS
|
|
OSS_DIR=oss
|
|
else
|
|
OSS_DIR=
|
|
endif
|
|
|
|
if USE_QCAM
|
|
QCAM_DIR=qcam
|
|
else
|
|
QCAM_DIR=
|
|
endif
|
|
|
|
if USE_V4L
|
|
V4L_DIR=v4l
|
|
else
|
|
V4L_DIR=
|
|
endif
|
|
|
|
if USE_V4L2
|
|
V4L2_DIR=v4l2
|
|
else
|
|
V4L2_DIR=
|
|
endif
|
|
|
|
if USE_VCD
|
|
VCD_DIR=vcd
|
|
else
|
|
VCD_DIR=
|
|
endif
|
|
|
|
if USE_XVIDEO
|
|
XVIDEO_DIR=xvideo
|
|
else
|
|
XVIDEO_DIR=
|
|
endif
|
|
|
|
if USE_CDROM
|
|
CDROM_DIR=cdrom
|
|
else
|
|
CDROM_DIR=
|
|
endif
|
|
|
|
SUBDIRS=$(DXR3_DIR) $(OSS_DIR) $(QCAM_DIR) $(V4L_DIR) $(V4L2_DIR) \
|
|
$(VCD_DIR) $(XVIDEO_DIR) $(CDROM_DIR)
|
|
|
|
DIST_SUBDIRS=dxr3 oss qcam v4l v4l2 vcd xvideo cdrom
|