mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
docs/pwg/building-testapp.xml: Add extra check.
Original commit message from CVS: * docs/pwg/building-testapp.xml: Add extra check. * examples/pwg/Makefile.am: Fix buildbot.
This commit is contained in:
parent
c9a37cf682
commit
e62fd449c2
4 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2005-07-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
|
* docs/pwg/building-testapp.xml:
|
||||||
|
Add extra check.
|
||||||
|
* examples/pwg/Makefile.am:
|
||||||
|
Fix buildbot.
|
||||||
|
|
||||||
2005-07-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
2005-07-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -108,6 +108,10 @@ main (gint argc,
|
||||||
/* initialization */
|
/* initialization */
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
loop = g_main_loop_new (NULL, FALSE);
|
loop = g_main_loop_new (NULL, FALSE);
|
||||||
|
if (argc != 2) {
|
||||||
|
g_print ("Usage: %s <mp3 filename>\n", argv[0]);
|
||||||
|
return 01;
|
||||||
|
}
|
||||||
|
|
||||||
/* create elements */
|
/* create elements */
|
||||||
pipeline = gst_pipeline_new ("my_pipeline");
|
pipeline = gst_pipeline_new ("my_pipeline");
|
||||||
|
|
|
@ -7,6 +7,9 @@ libchain_la_SOURCES = chain.c
|
||||||
libchain2_la_SOURCES = chain2.c
|
libchain2_la_SOURCES = chain2.c
|
||||||
libstate_la_SOURCES = state.c
|
libstate_la_SOURCES = state.c
|
||||||
libproperties_la_SOURCES = properties.c
|
libproperties_la_SOURCES = properties.c
|
||||||
|
DISTCLEANFILES = \
|
||||||
|
boilerplate.c pads.c chain.c chain2.c state.c properties.c \
|
||||||
|
init.func caps.func chain.func state.func register.func
|
||||||
|
|
||||||
EXTRA_DIST = extract.pl
|
EXTRA_DIST = extract.pl
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,9 @@ libchain_la_SOURCES = chain.c
|
||||||
libchain2_la_SOURCES = chain2.c
|
libchain2_la_SOURCES = chain2.c
|
||||||
libstate_la_SOURCES = state.c
|
libstate_la_SOURCES = state.c
|
||||||
libproperties_la_SOURCES = properties.c
|
libproperties_la_SOURCES = properties.c
|
||||||
|
DISTCLEANFILES = \
|
||||||
|
boilerplate.c pads.c chain.c chain2.c state.c properties.c \
|
||||||
|
init.func caps.func chain.func state.func register.func
|
||||||
|
|
||||||
EXTRA_DIST = extract.pl
|
EXTRA_DIST = extract.pl
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue