From 0adf6e1237093b48651fe85def1dfa36462d13fb Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 20 Sep 2007 17:38:10 +0000 Subject: [PATCH] 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. --- tests/examples/app/appsrc_ex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/examples/app/appsrc_ex.c b/tests/examples/app/appsrc_ex.c index 5773aab..c6f8b29 100644 --- a/tests/examples/app/appsrc_ex.c +++ b/tests/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)); -- 2.7.4