gio: Move to gst subdirectory
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Wed, 18 Jan 2012 15:19:12 +0000 (16:19 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Wed, 18 Jan 2012 15:21:14 +0000 (16:21 +0100)
It's a plugin without external dependencies now because we
unconditionally depend on GIO anyway.

21 files changed:
configure.ac
docs/plugins/Makefile.am
ext/Makefile.am
gst/gio/Makefile.am [moved from ext/gio/Makefile.am with 100% similarity]
gst/gio/gstgio.c [moved from ext/gio/gstgio.c with 100% similarity]
gst/gio/gstgio.h [moved from ext/gio/gstgio.h with 100% similarity]
gst/gio/gstgiobasesink.c [moved from ext/gio/gstgiobasesink.c with 100% similarity]
gst/gio/gstgiobasesink.h [moved from ext/gio/gstgiobasesink.h with 100% similarity]
gst/gio/gstgiobasesrc.c [moved from ext/gio/gstgiobasesrc.c with 100% similarity]
gst/gio/gstgiobasesrc.h [moved from ext/gio/gstgiobasesrc.h with 100% similarity]
gst/gio/gstgiosink.c [moved from ext/gio/gstgiosink.c with 100% similarity]
gst/gio/gstgiosink.h [moved from ext/gio/gstgiosink.h with 100% similarity]
gst/gio/gstgiosrc.c [moved from ext/gio/gstgiosrc.c with 100% similarity]
gst/gio/gstgiosrc.h [moved from ext/gio/gstgiosrc.h with 100% similarity]
gst/gio/gstgiostreamsink.c [moved from ext/gio/gstgiostreamsink.c with 100% similarity]
gst/gio/gstgiostreamsink.h [moved from ext/gio/gstgiostreamsink.h with 100% similarity]
gst/gio/gstgiostreamsrc.c [moved from ext/gio/gstgiostreamsrc.c with 100% similarity]
gst/gio/gstgiostreamsrc.h [moved from ext/gio/gstgiostreamsrc.h with 100% similarity]
tests/check/Makefile.am
tests/examples/Makefile.am
tests/examples/gio/Makefile.am

index 88c08d8..7a1c2b6 100644 (file)
@@ -399,6 +399,7 @@ AG_GST_CHECK_PLUGIN(audiotestsrc)
 AG_GST_CHECK_PLUGIN(encoding)
 AG_GST_CHECK_PLUGIN(videoconvert)
 AG_GST_CHECK_PLUGIN(gdp)
+AG_GST_CHECK_PLUGIN(gio)
 AG_GST_CHECK_PLUGIN(playback)
 AG_GST_CHECK_PLUGIN(audioresample)
 AG_GST_CHECK_PLUGIN(subparse)
@@ -721,7 +722,6 @@ dnl not building plugins with external dependencies,
 dnl but we still need to set the conditionals
 AM_CONDITIONAL(USE_ALSA, false)
 AM_CONDITIONAL(USE_CDPARANOIA, false)
-AM_CONDITIONAL(USE_GIO, false)
 AM_CONDITIONAL(USE_IVORBIS, false)
 AM_CONDITIONAL(USE_LIBVISUAL, false)
 AM_CONDITIONAL(USE_OGG, false)
@@ -827,6 +827,7 @@ gst/audiotestsrc/Makefile
 gst/encoding/Makefile
 gst/videoconvert/Makefile
 gst/gdp/Makefile
+gst/gio/Makefile
 gst/playback/Makefile
 gst/audioresample/Makefile
 gst/subparse/Makefile
@@ -842,7 +843,6 @@ sys/xvimage/Makefile
 ext/Makefile
 ext/alsa/Makefile
 ext/cdparanoia/Makefile
-ext/gio/Makefile
 ext/libvisual/Makefile
 ext/ogg/Makefile
 ext/pango/Makefile
index 1d4355d..9946922 100644 (file)
@@ -54,10 +54,6 @@ EXTRA_HFILES = \
        $(top_srcdir)/ext/alsa/gstalsasink.h \
        $(top_srcdir)/ext/alsa/gstalsasrc.h \
        $(top_srcdir)/ext/cdparanoia/gstcdparanoiasrc.h \
-       $(top_srcdir)/ext/gio/gstgiosink.h \
-       $(top_srcdir)/ext/gio/gstgiosrc.h \
-       $(top_srcdir)/ext/gio/gstgiostreamsink.h \
-       $(top_srcdir)/ext/gio/gstgiostreamsrc.h \
        $(top_srcdir)/ext/ogg/gstoggdemux.h \
        $(top_srcdir)/ext/ogg/gstoggmux.h \
        $(top_srcdir)/ext/pango/gstclockoverlay.h \
@@ -78,6 +74,10 @@ EXTRA_HFILES = \
        $(top_srcdir)/gst/encoding/gstencodebin.h \
        $(top_srcdir)/gst/gdp/gstgdpdepay.h \
        $(top_srcdir)/gst/gdp/gstgdppay.h \
+       $(top_srcdir)/gst/gio/gstgiosink.h \
+       $(top_srcdir)/gst/gio/gstgiosrc.h \
+       $(top_srcdir)/gst/gio/gstgiostreamsink.h \
+       $(top_srcdir)/gst/gio/gstgiostreamsrc.h \
        $(top_srcdir)/gst/playback/gstplay-enum.h \
        $(top_srcdir)/gst/playback/gstsubtitleoverlay.h \
        $(top_srcdir)/gst/audiorate/gstaudiorate.h \
index f793d4b..dc8af0e 100644 (file)
@@ -10,12 +10,6 @@ else
 CDPARANOIA_DIR=
 endif
 
-if USE_GIO
-GIO_DIR=gio
-else
-GIO_DIR=
-endif
-
 if USE_LIBVISUAL
 LIBVISUAL_DIR=libvisual
 else
@@ -57,7 +51,6 @@ endif
 SUBDIRS = \
   $(ALSA_DIR) \
   $(CDPARANOIA_DIR) \
-  $(GIO_DIR) \
   $(LIBVISUAL_DIR) \
   $(OGG_DIR) \
   $(PANGO_DIR) \
@@ -67,7 +60,6 @@ SUBDIRS = \
 DIST_SUBDIRS = \
   alsa \
   cdparanoia \
-  gio \
   libvisual \
   ogg \
   pango \
similarity index 100%
rename from ext/gio/Makefile.am
rename to gst/gio/Makefile.am
similarity index 100%
rename from ext/gio/gstgio.c
rename to gst/gio/gstgio.c
similarity index 100%
rename from ext/gio/gstgio.h
rename to gst/gio/gstgio.h
similarity index 100%
rename from ext/gio/gstgiosink.c
rename to gst/gio/gstgiosink.c
similarity index 100%
rename from ext/gio/gstgiosink.h
rename to gst/gio/gstgiosink.h
similarity index 100%
rename from ext/gio/gstgiosrc.c
rename to gst/gio/gstgiosrc.c
similarity index 100%
rename from ext/gio/gstgiosrc.h
rename to gst/gio/gstgiosrc.h
index 2470f17..5014c86 100644 (file)
@@ -35,12 +35,6 @@ else
 check_alsa =
 endif
 
-if USE_GIO
-check_gio = pipelines/gio
-else
-check_gio =
-endif
-
 if USE_LIBVISUAL
 check_libvisual = elements/libvisual
 else
@@ -102,7 +96,6 @@ endif
 
 check_PROGRAMS = \
        $(check_alsa) \
-       $(check_gio) \
        $(check_ogg) \
        $(check_vorbis) \
        elements/audioconvert \
@@ -132,6 +125,7 @@ check_PROGRAMS = \
        pipelines/streamheader \
        pipelines/basetime \
        pipelines/capsfilter-renegotiation \
+       pipelines/gio \
        elements/appsink            \
        elements/appsrc             \
        elements/audiorate          \
index a994b38..506ba56 100644 (file)
@@ -4,11 +4,7 @@ else
 FT2_SUBDIRS =
 endif
 
-if USE_GIO
-GIO_SUBDIRS = gio
-endif
-
-SUBDIRS = app audio dynamic fft $(FT2_SUBDIRS) $(GIO_SUBDIRS) overlay playrec encoding
+SUBDIRS = app audio dynamic fft $(FT2_SUBDIRS) gio overlay playrec encoding
 DIST_SUBDIRS = app audio dynamic fft gio overlay seek snapshot playrec encoding
 
 include $(top_srcdir)/common/parallel-subdirs.mak
index c4306f8..457cf4f 100644 (file)
@@ -1,8 +1,6 @@
 if HAVE_GTK
-if USE_GIO
 noinst_PROGRAMS = giosrc-mounting
 giosrc_mounting_SOURCES = giosrc-mounting.c
 giosrc_mounting_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) $(GIO_CFLAGS)
 giosrc_mounting_LDADD = $(GST_LIBS) $(GTK_LIBS) $(GIO_LIBS)
 endif
-endif