volume: move volume example to audio

This commit is contained in:
Stefan Sauer 2011-10-27 09:51:46 +02:00
parent 3a3b3a5b3b
commit 92d1f5251e
8 changed files with 9 additions and 10 deletions

View file

@ -77,6 +77,7 @@ CRUFT_FILES = \
$(top_builddir)/common/shave \
$(top_builddir)/common/shave-libtool \
$(top_builddir)/gst-libs/gst/audio/testchannels \
$(top_builddir)/tests/examples/volume/volume \
$(top_builddir)/tools/gst-discoverer

View file

@ -1028,7 +1028,6 @@ tests/examples/overlay/Makefile
tests/examples/seek/Makefile
tests/examples/snapshot/Makefile
tests/examples/playrec/Makefile
tests/examples/volume/Makefile
tests/examples/v4l/Makefile
tests/files/Makefile
tests/icles/Makefile

View file

@ -8,8 +8,9 @@ if USE_GIO
GIO_SUBDIRS = gio
endif
SUBDIRS = app audio dynamic $(FT2_SUBDIRS) $(GIO_SUBDIRS) overlay playrec volume v4l encoding
SUBDIRS = app audio dynamic $(FT2_SUBDIRS) $(GIO_SUBDIRS) overlay playrec v4l encoding
DIST_SUBDIRS = app audio dynamic gio overlay seek snapshot playrec volume v4l encoding
include $(top_srcdir)/common/parallel-subdirs.mak

View file

@ -1,3 +1,4 @@
audiomix
testchannels
volume

View file

@ -1,5 +1,5 @@
if HAVE_GTK
GTK_EXAMPLES = audiomix
GTK_EXAMPLES = audiomix volume
else
GTK_EXAMPLES =
endif
@ -15,4 +15,8 @@ if HAVE_GTK
audiomix_SOURCES = audiomix.c
audiomix_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -D_GNU_SOURCE
audiomix_LDADD = $(GST_LIBS) $(GTK_LIBS) $(LIBM)
volume_SOURCES = volume.c
volume_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -D_GNU_SOURCE
volume_LDADD = $(GST_LIBS) $(GTK_LIBS) $(LIBM)
endif

View file

@ -1 +0,0 @@
volume

View file

@ -1,6 +0,0 @@
if HAVE_GTK
noinst_PROGRAMS = volume
volume_SOURCES = volume.c
volume_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -D_GNU_SOURCE
volume_LDADD = $(GST_LIBS) $(GTK_LIBS) $(LIBM)
endif