summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2013-08-02 16:15:45 +0200
committerLionel Landwerlin <llandwerlin@gmail.com>2013-11-15 18:34:01 +0000
commit55b3a386d649998e4d9b10f69a97b85207d42f20 (patch)
tree89ff17423bca5c826b7882352acbcfd43c83ad08
parent504838703f9a8fcbfaa75e53809a63d1d08635e2 (diff)
downloadclutter-gst-55b3a386d649998e4d9b10f69a97b85207d42f20.tar.gz
video-player: Listen to the right object for buffer-fill signals
-rw-r--r--examples/video-player.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/video-player.c b/examples/video-player.c
index 5b6e49e..b104b5e 100644
--- a/examples/video-player.c
+++ b/examples/video-player.c
@@ -396,7 +396,7 @@ on_video_actor_notify_buffer_fill (GObject *selector,
{
gdouble buffer_fill;
- g_object_get (app->vactor, "buffer-fill", &buffer_fill, NULL);
+ g_object_get (app->player, "buffer-fill", &buffer_fill, NULL);
g_print ("Buffering - percentage=%d%%\n", (int) (buffer_fill * 100));
}