I have used the Cheese back end module. It works fine but when i need to display the video stream to GtkClutterTexture. It is not displaying at all... Please any one can help on this issue. Here are my .h and .cc file:
VideoRecorderWindow.h
#include "gtkmm.h"
#include "gtk/gtk.h"
#include "giomm.h"
#include "clutter/clutter.h"
#include "clutter-gtk/clutter-gtk.h"
#include "cheese-camera.h"
class VideoRecorderWindow:public Gtk::Window
{
private:
GtkWidget *mContainer;
GtkWidget* clutter_widget;
ClutterActor *stage;
ClutterActor* mVideoPreview;
Gio::Settings *mSettings;
CheeseCamera *mCamera;
public:
VideoRecorderWindow();
virtual ~VideoRecorderWindow();
void CloseWindow();
ClutterActor* Stage();
ClutterActor* VideoPreview();
void SetupCamera();
// Glib::RefPtr<Clutter::Texture> VideoPreview();
};
VideoRecorderWindow.cc
#include "VideoRecorderWindow.h"
#include "string"
using namespace std;
#include "cheese-camera.h"
const string backgroundImagePath = "src/VideoRecorderImages/WindowColor.tiff";
const int videoRecorderWindowWidth = 382;
const int videoRecorderWindowHeight = 362;
const int clutterWidgetWidth = 362;
const int clutterWidgetHeight = 285;
VideoRecorderWindow::VideoRecorderWindow()
{
GtkWindow* gWin = this->gobj();
stage = NULL;
//initialise window settings
gtk_window_set_position(GTK_WINDOW(gWin),GTK_WIN_POS_CENTER_ALWAYS);
gtk_window_set_default_size(GTK_WINDOW(gWin),videoRecorderWindowWidth,videoRecorderWindowHeight);
gtk_window_set_decorated(GTK_WINDOW(gWin),TRUE);
modify_bg_pixmap(Gtk::STATE_NORMAL,backgroundImagePath);
//create window container to hold child widgets
mContainer = gtk_vbox_new(FALSE,0);// Only child of Window
gtk_container_add(GTK_CONTAINER(gWin),mContainer);
//create the clutter widget
clutter_widget = gtk_clutter_embed_new();
gtk_box_pack_start (GTK_BOX (mContainer), clutter_widget, FALSE, FALSE, 0);
gtk_widget_show (clutter_widget);
/* Set the size of the widget,
* because we should not set the size of its stage when using GtkClutterEmbed.
*/
gtk_widget_set_size_request(clutter_widget, clutterWidgetWidth, clutterWidgetHeight);
ClutterColor stage_color = { 0x00, 0x00, 0x00, 0xff }; /* Black */
stage = gtk_clutter_embed_get_stage (GTK_CLUTTER_EMBED (clutter_widget));
clutter_stage_set_color (CLUTTER_STAGE (stage), &stage_color);
// Show the stage
clutter_actor_show (stage);
// Create a texture for displaying video coming from camera
mVideoPreview = clutter_texture_new();
clutter_texture_set_keep_aspect_ratio(CLUTTER_TEXTURE(mVideoPreview),TRUE);
// add texture on stage.
clutter_container_add_actor (CLUTTER_CONTAINER (stage), mVideoPreview);
//set the position of of actors
clutter_actor_set_position(mVideoPreview,0,0);
clutter_actor_set_position(stage,10,10);
clutter_actor_set_size(stage,clutterWidgetWidth,clutterWidgetHeight);
//for test purpose
char *camera_name;
// create a camera object here
mCamera = cheese_camera_new(CLUTTER_TEXTURE(mVideoPreview),camera_name,320,240);
//create a GError object
GError *error;
//set up camera here
cheese_camera_setup(mCamera,camera_name,&error);
cheese_camera_set_balance_property(mCamera,(gchar*)"brightness",(gdouble)0.0);
cheese_camera_set_balance_property(mCamera,(gchar*)"contrast",(gdouble)1.0);
cheese_camera_set_balance_property(mCamera,(gchar*)"hue",(gdouble)0.0);
cheese_camera_set_balance_property(mCamera,(gchar*)"saturation",(gdouble)1.0);
cheese_camera_play(mCamera);
show_all();
}
VideoRecorderWindow::~VideoRecorderWindow()
{
delete mContainer;
delete mTitleBar;
}
TitleBar* VideoRecorderWindow::TitleBar()
{
return mTitleBar;
}
void VideoRecorderWindow::CloseWindow()
{
}
ClutterActor* VideoRecorderWindow::Stage()
{
return stage;
}
ClutterActor* VideoRecorderWindow::VideoPreview()
{
return mVideoPreview;
}