mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +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
476fbd3ddf
commit
0adf6e1237
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue