summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2011-04-08 12:07:24 +0100
committerBastien Nocera <hadess@hadess.net>2011-04-08 12:07:24 +0100
commit96625f8ca74f13480e3883bd819335df442a880c (patch)
tree8180e07f7c70dd89e861909592ac3d4d610b486e
parentccf907d50e713b2052be604cfbc834f6bb22c7ed (diff)
thumbnailer: Fix wrong variable name
Which fixes the build.
-rw-r--r--src/totem-video-thumbnailer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/totem-video-thumbnailer.c b/src/totem-video-thumbnailer.c
index 09a12171..5530964a 100644
--- a/src/totem-video-thumbnailer.c
+++ b/src/totem-video-thumbnailer.c
@@ -608,9 +608,9 @@ create_gallery (BaconVideoWidget *bvw, const char *input, const char *output)
current_column = current_row = x = y = 0;
for (pos = screenshot_interval; pos <= stream_length; pos += screenshot_interval) {
if (pos == stream_length)
- screenshot = capture_frame_at_time (app, input, output, pos - 1);
+ screenshot = capture_frame_at_time (bvw, input, output, pos - 1);
else
- screenshot = capture_frame_at_time (app, input, output, pos);
+ screenshot = capture_frame_at_time (bvw, input, output, pos);
if (pixbuf == NULL) {
screenshot_width = gdk_pixbuf_get_width (screenshot);