remove debug message
authordoursse <doursse>
Thu, 15 May 2008 17:46:13 +0000 (17:46 +0000)
committerdoursse <doursse@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 15 May 2008 17:46:13 +0000 (17:46 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/libs/emotion@34582 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/modules/gstreamer/emotion_gstreamer.c

index 944613f..38186a4 100644 (file)
@@ -237,8 +237,6 @@ em_init(Evas_Object  *obj,
    if (!emotion_video)
       return 0;
 
-   fprintf (stderr, "[Emotion] [gst] Init\n");
-
    ev = calloc(1, sizeof(Emotion_Gstreamer_Video));
    if (!ev) return 0;
 
@@ -304,8 +302,6 @@ em_shutdown(void *video)
    if (!ev)
      return 0;
 
-   fprintf(stderr, "[Emotion] [gst] shutdown\n");
-
    ecore_main_fd_handler_del(ev->fd_ev_handler);
 
    close(ev->fd_ev_write);
@@ -331,8 +327,6 @@ em_file_open(const char   *file,
 
    ev = (Emotion_Gstreamer_Video *)video;
 
-   fprintf(stderr, "[Emotion] [gst] open\n");
-
    ev->pipeline = gst_pipeline_new ("pipeline");
    if (!ev->pipeline)
      return 0;
@@ -478,7 +472,6 @@ em_play(void   *video,
 {
    Emotion_Gstreamer_Video *ev;
 
-   fprintf(stderr, "[Emotion] [gst] play %p\n", ev->pipeline);
    ev = (Emotion_Gstreamer_Video *)video;
    gst_element_set_state (ev->pipeline, GST_STATE_PLAYING);
    ev->play = 1;
@@ -500,7 +493,6 @@ em_stop(void *video)
      ev->eos_timer = NULL;
    }
 
-/*    fprintf(stderr, "[Emotion] [gst] stop\n"); */
    gst_element_set_state (ev->pipeline, GST_STATE_PAUSED);
    ev->play = 0;
 }