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;
}
link|improve this question

78% accept rate
2  
You probably want to make a standalone, 1-file, compilable test case and then people can help you debug it. – Havoc P Feb 11 '11 at 19:00
@Havoc: SO how should i present my issue to be more precise. – boom Feb 14 '11 at 4:31
1  
The best way to ask for debugging help is to create a single source code file that can be compiled and tested, that's as small as possible while illustrating the issue. The code you posted isn't a complete should-be-working example, so it isn't clear enough (to me anyway) what might be wrong. Also it's likely that in creating a minimal example, you'll find the problem yourself. – Havoc P Feb 14 '11 at 17:54
@Havoc: Hi i have added the .hand .cc file from my implementation. You can check it out. The cheese source code can be have from the link: projects.gnome.org/cheese – boom Feb 15 '11 at 9:00
@Havoc: Oops all well now... in main i have called gtk_clutter_init, and clutter_init both.... SO all set for go.... video recording and image capture.... – boom Feb 15 '11 at 13:55
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.