Plugins cleanup:

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.
This commit is contained in:
Ronald S. Bultje 2003-06-25 19:17:58 +00:00
parent 238caf563d
commit e8d8431c03
3 changed files with 31 additions and 112 deletions

2
common

@ -1 +1 @@
Subproject commit 9a3a505fcc52865de0bedbb3ee1ce0a6dcc9a025 Subproject commit 4e379694ae9ff9843d65cf08928642eea44abdf8

View file

@ -105,12 +105,8 @@ HAVE_BROKEN=yes,disabled,
[ [
AC_MSG_WARN([building broken plug-ins -- no bug reports on these, only patches :)]) AC_MSG_WARN([building broken plug-ins -- no bug reports on these, only patches :)])
USE_SMOOTHWAVE="yes" USE_SMOOTHWAVE="yes"
USE_VGA="yes"
USE_XMMS="yes"
],[ ],[
USE_SMOOTHWAVE="no" USE_SMOOTHWAVE="no"
USE_VGA="no"
USE_XMMS="no"
AC_MSG_NOTICE([not building broken plug-ins]) AC_MSG_NOTICE([not building broken plug-ins])
]) ])
@ -251,15 +247,17 @@ AC_SUBST(GST_PLUGIN_LDFLAGS)
dnl these are all the gst plug-ins, compilable without additional libs dnl these are all the gst plug-ins, compilable without additional libs
GST_PLUGINS_ALL="\ GST_PLUGINS_ALL="\
ac3parse adder audioscale auparse avi asfdemux audioconvert cdxaparse chart\ ac3parse adder audioscale auparse avi \
cutter debug deinterlace effectv festival filter flx goom\ asfdemux audioconvert cdxaparse chart \
intfloat law level\ cutter debug deinterlace effectv festival \
median mixmatrix mpeg1enc mpeg1sys mpeg1videoparse mpeg2enc mpeg2sub\ filter flx goom law level median mixmatrix \
mpeg1enc mpeg1sys mpeg1videoparse mpeg2enc mpeg2sub \
mpegaudio mpegaudioparse mpegstream mpegtypes \ mpegaudio mpegaudioparse mpegstream mpegtypes \
monoscope oneton passthrough playondemand qtdemux realmedia rtp rtjpeg silence sine\ monoscope oneton passthrough playondemand qtdemux \
smooth smpte spectrum speed stereo stereomono synaesthesia\ realmedia rtp rtjpeg silence sine smooth smpte \
udp vbidec videocrop videoflip videoscale videotestsrc volenv volume\ spectrum speed stereo synaesthesia udp vbidec \
vumeter wavenc wavparse y4m" videocrop videoflip videoscale videotestsrc \
volenv volume wavenc wavparse y4m"
dnl see if we can build C++ plug-ins dnl see if we can build C++ plug-ins
if test "x$HAVE_CXX" = "xyes"; then if test "x$HAVE_CXX" = "xyes"; then
@ -363,12 +361,6 @@ GST_CHECK_FEATURE(VCD, [Video CD], vcdsrc, [
AC_CHECK_HEADER(linux/cdrom.h, HAVE_VCD="yes", HAVE_VCD="no") AC_CHECK_HEADER(linux/cdrom.h, HAVE_VCD="yes", HAVE_VCD="no")
]) ])
dnl *** VGA ***
translit(dnm, m, l) AM_CONDITIONAL(USE_VGA, true)
GST_CHECK_FEATURE(VGA, [VGA], vgavideosink, [
AC_CHECK_HEADER(asm/vga.h, HAVE_VGA="yes", HAVE_VGA="no")
])
dnl *** CDROM Audio *** dnl *** CDROM Audio ***
translit(dnm, m, l) AM_CONDITIONAL(USE_CDROM, true) translit(dnm, m, l) AM_CONDITIONAL(USE_CDROM, true)
GST_CHECK_FEATURE(CDROM, [CDROM Audio], cdrom, [ GST_CHECK_FEATURE(CDROM, [CDROM Audio], cdrom, [
@ -746,8 +738,19 @@ dnl *** jpeg ***
dnl FIXME: we could use header checks here as well IMO dnl FIXME: we could use header checks here as well IMO
translit(dnm, m, l) AM_CONDITIONAL(USE_JPEG, true) translit(dnm, m, l) AM_CONDITIONAL(USE_JPEG, true)
GST_CHECK_FEATURE(JPEG, [jpeg], jpegenc jpegdec, [ GST_CHECK_FEATURE(JPEG, [jpeg], jpegenc jpegdec, [
AC_ARG_WITH(jpeg-mmx,
[ --with-jpeg-mmx, path to MMX'ified JPEG library])
OLD_LIBS="$LIBS"
if test x$with_jpeg_mmx != x; then
LIBS="$LIBS -L$with_jpeg_mmx"
fi
AC_CHECK_LIB(jpeg-mmx, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
JPEG_LIBS="$LIBS -ljpeg-mmx"
LIBS="$OLD_LIBS"
if test x$HAVE_JPEG != xyes; then
AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no") AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
JPEG_LIBS="-ljpeg" JPEG_LIBS="-ljpeg"
fi
AC_SUBST(JPEG_LIBS) AC_SUBST(JPEG_LIBS)
]) ])
@ -826,49 +829,6 @@ GST_CHECK_FEATURE(MIKMOD, [mikmod plug-in], mikmod, [
AC_SUBST(MIKMOD_CFLAGS, "$LIBMIKMODCFLAGS") AC_SUBST(MIKMOD_CFLAGS, "$LIBMIKMODCFLAGS")
]) ])
dnl *** mjpegtools ***
translit(dnm, m, l) AM_CONDITIONAL(USE_MJPEGTOOLS, true)
GST_CHECK_FEATURE(MJPEGTOOLS, [mjpegtools], jpegmmxenc jpegmmxdec, [
PKG_CHECK_MODULES(MJPEGTOOLS, mjpegtools, HAVE_MJPEGTOOLS="yes", HAVE_MJPEGTOOLS="no")
if [ test x$HAVE_MJPEGTOOLS = x"yes" ]; then
dnl some headers we might want to need
AC_CHECK_HEADERS(stdint.h, HAVE_STDINT_H="yes", HAVE_STDINT_H="no")
if [ test x$HAVE_STDINT_H = x"no" ]; then
AC_CHECK_HEADERS(inttypes.h sys/types.h, HAVE_INTTYPES_H="yes", [
AC_MSG_WARN(No valid header files found, mjpegtools plugins disabled)
HAVE_INTTYPES_H="no" HAVE_MJPEGTOOLS="no"
])
fi
AC_CHECK_HEADERS(stdbool.h, HAVE_STDBOOL_H="yes", HAVE_STDBOOL_H="no")
dnl sizeof PRId64 etc...
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
case 8 in
$ac_cv_sizeof_int)
PRID64_STRING_FORMAT="d"
;;
$ac_cv_sizeof_long)
PRID64_STRING_FORMAT="ld"
;;
$ac_cv_sizeof_long_long)
PRID64_STRING_FORMAT="lld"
;;
*)
AC_MSG_WARN(No suitable variant for 64bits integers found, mjpegtools plugins disabled)
HAVE_MJPEGTOOLS="no"
;;
esac
AC_DEFINE_UNQUOTED(PRID64_STRING_FORMAT, "$PRID64_STRING_FORMAT",
[ A printf type definition for 64 bit integers ])
AC_SUBST(MJPEGTOOLS_LIBS)
AC_SUBST(MJPEGTOOLS_CFLAGS)
fi
])
dnl *** mpeg2dec *** dnl *** mpeg2dec ***
translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true) translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true)
GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [ GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
@ -878,13 +838,6 @@ GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
AC_SUBST(MPEG2DEC_LIBS) AC_SUBST(MPEG2DEC_LIBS)
]) ])
dnl *** openquicktime ***
translit(dnm, m, l) AM_CONDITIONAL(USE_OPENQUICKTIME, true)
GST_CHECK_FEATURE(OPENQUICKTIME, [Open Quicktime], quicktime_parser quicktime_decoder quicktime_demux,[
GST_CHECK_LIBHEADER(OPENQUICKTIME, openquicktime, quicktime_init,, openquicktime/openquicktime.h, OPENQUICKTIME_LIBS="-lopenquicktime")
AC_SUBST(OPENQUICKTIME_LIBS)
])
dnl *** raw1394 *** dnl *** raw1394 ***
translit(dnm, m, l) AM_CONDITIONAL(USE_RAW1394, true) translit(dnm, m, l) AM_CONDITIONAL(USE_RAW1394, true)
GST_CHECK_FEATURE(RAW1394, [raw1394 library], dv1394src, [ GST_CHECK_FEATURE(RAW1394, [raw1394 library], dv1394src, [
@ -965,12 +918,6 @@ GST_CHECK_FEATURE(VORBIS, [vorbis plug-in], vorbisenc vorbisdec, [
AS_SCRUB_INCLUDE(VORBIS_CFLAGS) AS_SCRUB_INCLUDE(VORBIS_CFLAGS)
]) ])
dnl *** XMMS ***
translit(dnm, m, l) AM_CONDITIONAL(USE_XMMS, true)
GST_CHECK_FEATURE(XMMS, [xmms plug-in], xmms, [
AM_PATH_XMMS(0.1.0, HAVE_XMMS=yes, HAVE_XMMS=no)
])
dnl *** XVID *** dnl *** XVID ***
translit(dnm, m, l) AM_CONDITIONAL(USE_XVID, true) translit(dnm, m, l) AM_CONDITIONAL(USE_XVID, true)
GST_CHECK_FEATURE(XVID, [xvid plugins], xvid, [ GST_CHECK_FEATURE(XVID, [xvid plugins], xvid, [
@ -1188,7 +1135,6 @@ gst/festival/Makefile
gst/filter/Makefile gst/filter/Makefile
gst/flx/Makefile gst/flx/Makefile
gst/goom/Makefile gst/goom/Makefile
gst/intfloat/Makefile
gst/law/Makefile gst/law/Makefile
gst/level/Makefile gst/level/Makefile
gst/median/Makefile gst/median/Makefile
@ -1221,7 +1167,6 @@ gst/smpte/Makefile
gst/spectrum/Makefile gst/spectrum/Makefile
gst/speed/Makefile gst/speed/Makefile
gst/stereo/Makefile gst/stereo/Makefile
gst/stereomono/Makefile
gst/synaesthesia/Makefile gst/synaesthesia/Makefile
gst/udp/Makefile gst/udp/Makefile
gst/vbidec/Makefile gst/vbidec/Makefile
@ -1231,7 +1176,6 @@ gst/videoscale/Makefile
gst/videotestsrc/Makefile gst/videotestsrc/Makefile
gst/volenv/Makefile gst/volenv/Makefile
gst/volume/Makefile gst/volume/Makefile
gst/vumeter/Makefile
gst/wavenc/Makefile gst/wavenc/Makefile
gst/wavparse/Makefile gst/wavparse/Makefile
gst/y4m/Makefile gst/y4m/Makefile
@ -1243,7 +1187,6 @@ sys/qcam/Makefile
sys/v4l/Makefile sys/v4l/Makefile
sys/v4l2/Makefile sys/v4l2/Makefile
sys/vcd/Makefile sys/vcd/Makefile
sys/vga/Makefile
sys/xvideo/Makefile sys/xvideo/Makefile
ext/Makefile ext/Makefile
ext/a52dec/Makefile ext/a52dec/Makefile
@ -1276,9 +1219,7 @@ ext/libpng/Makefile
ext/mad/Makefile ext/mad/Makefile
ext/mas/Makefile ext/mas/Makefile
ext/mikmod/Makefile ext/mikmod/Makefile
ext/mjpegtools/Makefile
ext/mpeg2dec/Makefile ext/mpeg2dec/Makefile
ext/openquicktime/Makefile
ext/raw1394/Makefile ext/raw1394/Makefile
ext/sdl/Makefile ext/sdl/Makefile
ext/shout/Makefile ext/shout/Makefile
@ -1290,7 +1231,6 @@ ext/sndfile/Makefile
ext/swfdec/Makefile ext/swfdec/Makefile
ext/vorbis/Makefile ext/vorbis/Makefile
ext/tarkin/Makefile ext/tarkin/Makefile
ext/xmms/Makefile
ext/xvid/Makefile ext/xvid/Makefile
gst-libs/Makefile gst-libs/Makefile
gst-libs/gst/Makefile gst-libs/gst/Makefile

View file

@ -172,24 +172,12 @@ else
MIKMOD_DIR= MIKMOD_DIR=
endif endif
if USE_MJPEGTOOLS
MJPEGTOOLS_DIR=mjpegtools
else
MJPEGTOOLS_DIR=
endif
if USE_MPEG2DEC if USE_MPEG2DEC
MPEG2DEC_DIR=mpeg2dec MPEG2DEC_DIR=mpeg2dec
else else
MPEG2DEC_DIR= MPEG2DEC_DIR=
endif endif
if USE_OPENQUICKTIME
OPENQUICKTIME_DIR=openquicktime
else
OPENQUICKTIME_DIR=
endif
if USE_RAW1394 if USE_RAW1394
RAW1394_DIR=raw1394 RAW1394_DIR=raw1394
else else
@ -256,12 +244,6 @@ else
XVID_DIR= XVID_DIR=
endif endif
if USE_XMMS
XMMS_DIR=xmms
else
XMMS_DIR=
endif
if USE_LIBPNG if USE_LIBPNG
SNAPSHOT_DIR=snapshot SNAPSHOT_DIR=snapshot
else else
@ -276,22 +258,19 @@ SUBDIRS=$(A52DEC_DIR) $(AALIB_DIR) $(ALSA_DIR) \
$(HERMES_DIR) $(JACK_DIR) $(JPEG_DIR) \ $(HERMES_DIR) $(JACK_DIR) $(JPEG_DIR) \
$(LADSPA_DIR) $(LAME_DIR) $(LCS_DIR) \ $(LADSPA_DIR) $(LAME_DIR) $(LCS_DIR) \
$(LIBDV_DIR) $(LIBFAME_DIR) $(LIBPNG_DIR) \ $(LIBDV_DIR) $(LIBFAME_DIR) $(LIBPNG_DIR) \
$(MAD_DIR) $(MIKMOD_DIR) $(MJPEGTOOLS_DIR) $(MPEG2DEC_DIR) \ $(MAD_DIR) $(MIKMOD_DIR) $(MPEG2DEC_DIR) \
$(OPENQUICKTIME_DIR) $(RAW1394_DIR) \ $(RAW1394_DIR) $(SDL_DIR) $(SHOUT_DIR) $(SIDPLAY_DIR) \
$(SDL_DIR) $(SHOUT_DIR) $(SIDPLAY_DIR) \
$(SMOOTHWAVE_DIR) $(SWFDEC_DIR) $(TARKIN_DIR) \ $(SMOOTHWAVE_DIR) $(SWFDEC_DIR) $(TARKIN_DIR) \
$(VORBIS_DIR) $(XVID_DIR) $(XMMS_DIR) $(SNAPSHOT_DIR) $(VORBIS_DIR) $(XVID_DIR) $(SNAPSHOT_DIR)
DIST_SUBDIRS=\ DIST_SUBDIRS=\
a52dec aalib alsa \ a52dec aalib alsa arts artsd \
arts artsd \
audiofile cdparanoia divx dv \ audiofile cdparanoia divx dv \
dvdread dvdnav esd mas ffmpeg \ dvdread dvdnav esd mas ffmpeg \
flac gdk_pixbuf gnomevfs gsm \ flac gdk_pixbuf gnomevfs gsm \
hermes ivorbis jack jpeg \ hermes ivorbis jack jpeg \
ladspa lame lcs libfame libpng \ ladspa lame lcs libfame libpng \
mad mikmod mjpegtools mpeg2dec \ mad mikmod mpeg2dec raw1394 \
openquicktime raw1394 \
sdl snapshot shout shout2 sidplay \ sdl snapshot shout shout2 sidplay \
smoothwave swfdec tarkin vorbis \ smoothwave swfdec tarkin vorbis \
xmms xvid xvid