mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/multifile/gstmultifilesrc.c: Need to use gsize here for the size, fixes compiler warning.
Original commit message from CVS: * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create): Need to use gsize here for the size, fixes compiler warning. * tests/examples/equalizer/.cvsignore: * tests/examples/equalizer/Makefile.am: * tests/examples/spectrum/.cvsignore: * tests/examples/spectrum/Makefile.am: Add missing files to fix the build.
This commit is contained in:
parent
26a52d2733
commit
0e176540b5
6 changed files with 35 additions and 1 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2008-02-08 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
|
||||
Need to use gsize here for the size, fixes compiler warning.
|
||||
|
||||
* tests/examples/equalizer/.cvsignore:
|
||||
* tests/examples/equalizer/Makefile.am:
|
||||
* tests/examples/spectrum/.cvsignore:
|
||||
* tests/examples/spectrum/Makefile.am:
|
||||
Add missing files to fix the build.
|
||||
|
||||
2008-02-08 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -266,7 +266,7 @@ static GstFlowReturn
|
|||
gst_multi_file_src_create (GstPushSrc * src, GstBuffer ** buffer)
|
||||
{
|
||||
GstMultiFileSrc *multifilesrc;
|
||||
guint size;
|
||||
gsize size;
|
||||
gchar *data;
|
||||
gchar *filename;
|
||||
GstBuffer *buf;
|
||||
|
|
1
tests/examples/equalizer/.gitignore
vendored
Normal file
1
tests/examples/equalizer/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
demo
|
8
tests/examples/equalizer/Makefile.am
Normal file
8
tests/examples/equalizer/Makefile.am
Normal file
|
@ -0,0 +1,8 @@
|
|||
if HAVE_GTK
|
||||
noinst_PROGRAMS = demo
|
||||
endif
|
||||
|
||||
demo_SOURCES = demo.c
|
||||
demo_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
|
||||
demo_LDFLAGS = $(GST_BASE_LIBS) $(GST_LIBS) $(GTK_LIBS)
|
||||
|
2
tests/examples/spectrum/.gitignore
vendored
Normal file
2
tests/examples/spectrum/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
demo-audiotest
|
||||
demo-osssrc
|
12
tests/examples/spectrum/Makefile.am
Normal file
12
tests/examples/spectrum/Makefile.am
Normal file
|
@ -0,0 +1,12 @@
|
|||
if HAVE_GTK
|
||||
noinst_PROGRAMS = demo-osssrc demo-audiotest
|
||||
endif
|
||||
|
||||
demo_osssrc_SOURCES = demo-osssrc.c
|
||||
demo_osssrc_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
|
||||
demo_osssrc_LDFLAGS = $(GST_BASE_LIBS) $(GST_LIBS) $(GTK_LIBS)
|
||||
|
||||
demo_audiotest_SOURCES = demo-audiotest.c
|
||||
demo_audiotest_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
|
||||
demo_audiotest_LDFLAGS = $(GST_BASE_LIBS) $(GST_LIBS) $(GTK_LIBS)
|
||||
|
Loading…
Reference in a new issue