mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
volume: move volume example to audio
This commit is contained in:
parent
3a3b3a5b3b
commit
92d1f5251e
8 changed files with 9 additions and 10 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
1
tests/examples/audio/.gitignore
vendored
1
tests/examples/audio/.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
audiomix
|
||||
testchannels
|
||||
volume
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
1
tests/examples/volume/.gitignore
vendored
1
tests/examples/volume/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
volume
|
|
@ -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
|
Loading…
Reference in a new issue