diff options
Diffstat (limited to 'test/control.c')
-rw-r--r-- | test/control.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/control.c b/test/control.c index 7f013e2..2d954f9 100644 --- a/test/control.c +++ b/test/control.c @@ -75,6 +75,9 @@ void reallocate_buffers(ThreadData *td, int width, int height) td->pixels = gdk_pixbuf_get_pixels(td->pixbuf); gtk_image_set_from_pixbuf(GTK_IMAGE(td->image), td->pixbuf); memset(td->buffer, 0, num_bytes); + + if (uca_cam_alloc(td->cam, 20) != UCA_NO_ERROR) + g_print("Couldn't allocate buffer for 20 frames\n"); } static gboolean delete_event(GtkWidget *widget, GdkEvent *event, gpointer data) |