diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-09-20 17:38:10 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-09-20 17:38:10 +0000 |
commit | 28c0d24bdd9bab9820e0d8349259aeceec12058f (patch) | |
tree | 727c1aae7f74cdc6d3b30892eb55af5bdc4581a3 /examples | |
parent | ac256b5d1580ce1691d38192132b3ebbfa661e3c (diff) | |
download | gstreamer-plugins-bad-28c0d24bdd9bab9820e0d8349259aeceec12058f.tar.gz |
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.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/app/appsrc_ex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/app/appsrc_ex.c b/examples/app/appsrc_ex.c index 5773aabe4..c6f8b29e8 100644 --- a/examples/app/appsrc_ex.c +++ b/examples/app/appsrc_ex.c @@ -69,7 +69,7 @@ main (int argc, char *argv[]) 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; buf = gst_app_sink_pull_buffer (GST_APP_SINK (app->sink)); |