mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
examples/app/appsrc_ex.c: Fix compilation after changing the name of a method.
Original commit message from CVS: * examples/app/appsrc_ex.c: (main): Fix compilation after changing the name of a method.
This commit is contained in:
parent
ac256b5d15
commit
28c0d24bdd
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-09-20 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
|
* examples/app/appsrc_ex.c: (main):
|
||||||
|
Fix compilation after changing the name of a method.
|
||||||
|
|
||||||
2007-09-20 Stefan Kost <ensonic@users.sf.net>
|
2007-09-20 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
* ext/alsaspdif/alsaspdifsink.c:
|
* ext/alsaspdif/alsaspdifsink.c:
|
||||||
|
|
|
@ -69,7 +69,7 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
gst_app_src_end_of_stream (GST_APP_SRC (app->src));
|
gst_app_src_end_of_stream (GST_APP_SRC (app->src));
|
||||||
|
|
||||||
while (!gst_app_sink_end_of_stream (GST_APP_SINK (app->sink))) {
|
while (!gst_app_sink_is_eos (GST_APP_SINK (app->sink))) {
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
|
|
||||||
buf = gst_app_sink_pull_buffer (GST_APP_SINK (app->sink));
|
buf = gst_app_sink_pull_buffer (GST_APP_SINK (app->sink));
|
||||||
|
|
Loading…
Reference in a new issue