2003-12-07 13:29:10 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2003 Julien Moutte <julien@moutte.net>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2003-12-22 01:47:09 +00:00
|
|
|
#include <string.h>
|
2003-12-07 13:29:10 +00:00
|
|
|
|
|
|
|
#include "gstplay.h"
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
TIME_TICK,
|
|
|
|
STREAM_LENGTH,
|
|
|
|
HAVE_VIDEO_SIZE,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
struct _GstPlayPrivate {
|
|
|
|
char *location;
|
|
|
|
|
|
|
|
GHashTable *elements;
|
|
|
|
|
|
|
|
gint64 time_nanos;
|
|
|
|
gint64 length_nanos;
|
|
|
|
|
|
|
|
gint get_length_attempt;
|
|
|
|
|
|
|
|
guint tick_id;
|
|
|
|
guint length_id;
|
|
|
|
};
|
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
static guint gst_play_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
|
|
static GstPipelineClass *parent_class = NULL;
|
|
|
|
|
|
|
|
/* ======================================================= */
|
|
|
|
/* */
|
|
|
|
/* Private Methods */
|
|
|
|
/* */
|
|
|
|
/* ======================================================= */
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_play_pipeline_setup (GstPlay *play)
|
|
|
|
{
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Threads */
|
|
|
|
GstElement *work_thread, *audio_thread, *video_thread;
|
|
|
|
/* Main Thread elements */
|
|
|
|
GstElement *source, *autoplugger, *audioconvert, *volume, *tee, *vis_element;
|
|
|
|
/* Video Thread elements */
|
|
|
|
GstElement *video_queue, *video_cs, *video_balance, *balance_cs;
|
|
|
|
GstElement *video_scaler, *video_sink;
|
|
|
|
/* Audio Thread elements */
|
|
|
|
GstElement *audio_queue, *audio_sink;
|
|
|
|
/* Some useful pads */
|
|
|
|
GstPad *tee_pad1, *tee_pad2;
|
2003-12-07 13:29:10 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Creating main thread and its elements
|
|
|
|
{ fakesrc ! spider ! audioconvert ! volume ! tee } */
|
|
|
|
{
|
2003-12-08 16:01:49 +00:00
|
|
|
work_thread = gst_element_factory_make ("thread", "work_thread");
|
|
|
|
if (!GST_IS_ELEMENT (work_thread))
|
2003-12-07 13:29:10 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "work_thread", work_thread);
|
2003-12-07 13:29:10 +00:00
|
|
|
gst_bin_add (GST_BIN (play), work_thread);
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
|
|
|
|
/* Placeholder for datasrc */
|
2003-12-07 17:56:10 +00:00
|
|
|
source = gst_element_factory_make ("fakesrc", "source");
|
|
|
|
if (!GST_IS_ELEMENT (source))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "source", source);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Autoplugger */
|
2003-12-07 17:56:10 +00:00
|
|
|
autoplugger = gst_element_factory_make ("spider", "autoplugger");
|
|
|
|
if (!GST_IS_ELEMENT (autoplugger))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "autoplugger", autoplugger);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Make sure we convert audio to the needed format */
|
|
|
|
audioconvert = gst_element_factory_make ("audioconvert",
|
|
|
|
"audioconvert");
|
|
|
|
if (!GST_IS_ELEMENT (audioconvert))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_hash_table_insert (play->priv->elements, "volume", audioconvert);
|
|
|
|
|
|
|
|
/* Volume control */
|
|
|
|
volume = gst_element_factory_make ("volume", "volume");
|
|
|
|
if (!GST_IS_ELEMENT (volume))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_hash_table_insert (play->priv->elements, "audioconvert", volume);
|
|
|
|
|
|
|
|
/* Duplicate audio signal to audio sink and visualization thread */
|
|
|
|
tee = gst_element_factory_make ("tee", "tee");
|
|
|
|
if (!GST_IS_ELEMENT (tee))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
tee_pad1 = gst_element_get_request_pad (tee, "src%d");
|
|
|
|
tee_pad2 = gst_element_get_request_pad (tee, "src%d");
|
|
|
|
g_hash_table_insert (play->priv->elements, "tee_pad1", tee_pad1);
|
|
|
|
g_hash_table_insert (play->priv->elements, "tee_pad2", tee_pad2);
|
|
|
|
g_hash_table_insert (play->priv->elements, "tee", tee);
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (work_thread), source, autoplugger,/* audioconvert,*/
|
|
|
|
volume, tee, NULL);
|
|
|
|
gst_element_link_many (source, autoplugger,/* audioconvert,*/ volume, tee, NULL);
|
|
|
|
|
|
|
|
/* Visualization element placeholder (note: it s not added to the pipeline
|
|
|
|
yet) */
|
|
|
|
vis_element = gst_element_factory_make ("identity", "vis_element");
|
|
|
|
if (!GST_IS_ELEMENT (vis_element))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_hash_table_insert (play->priv->elements, "vis_element", vis_element);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
}
|
|
|
|
/* Creating our video output bin */
|
|
|
|
{
|
2003-12-08 16:01:49 +00:00
|
|
|
video_thread = gst_element_factory_make ("thread", "video_thread");
|
|
|
|
if (!GST_IS_ELEMENT (video_thread))
|
2003-12-07 13:29:10 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "video_thread", video_thread);
|
2003-12-07 13:29:10 +00:00
|
|
|
gst_bin_add (GST_BIN (work_thread), video_thread);
|
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Buffer queue for video data */
|
2003-12-07 13:29:10 +00:00
|
|
|
video_queue = gst_element_factory_make ("queue", "video_queue");
|
|
|
|
if (!GST_IS_ELEMENT (video_queue))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "video_queue", video_queue);
|
2003-12-07 13:29:10 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Colorspace conversion */
|
|
|
|
video_cs = gst_element_factory_make ("ffcolorspace", "video_cs");
|
|
|
|
if (!GST_IS_ELEMENT (video_cs)) {
|
|
|
|
video_cs = gst_element_factory_make ("colorspace", "video_cs");
|
|
|
|
if (!GST_IS_ELEMENT (video_cs))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_insert (play->priv->elements, "video_cs", video_cs);
|
|
|
|
|
|
|
|
/* Software colorbalance */
|
2004-01-14 21:50:39 +00:00
|
|
|
video_balance = gst_element_factory_make ("videobalance",
|
|
|
|
"video_balance");
|
|
|
|
if (!GST_IS_ELEMENT (video_balance))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_hash_table_insert (play->priv->elements, "video_balance",
|
|
|
|
video_balance);
|
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
/* Colorspace conversion */
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
balance_cs = gst_element_factory_make ("ffcolorspace", "balance_cs");
|
|
|
|
if (!GST_IS_ELEMENT (balance_cs)) {
|
|
|
|
balance_cs = gst_element_factory_make ("colorspace", "balance_cs");
|
|
|
|
if (!GST_IS_ELEMENT (balance_cs))
|
2003-12-21 22:11:46 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2003-12-07 13:29:10 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "balance_cs", balance_cs);
|
2003-12-07 13:29:10 +00:00
|
|
|
|
|
|
|
/* Software scaling of video stream */
|
|
|
|
video_scaler = gst_element_factory_make ("videoscale", "video_scaler");
|
|
|
|
if (!GST_IS_ELEMENT (video_scaler))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "video_scaler", video_scaler);
|
2003-12-07 13:29:10 +00:00
|
|
|
|
|
|
|
/* Placeholder for future video sink bin */
|
|
|
|
video_sink = gst_element_factory_make ("fakesink", "video_sink");
|
|
|
|
if (!GST_IS_ELEMENT (video_sink))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "video_sink", video_sink);
|
2003-12-07 13:29:10 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
gst_bin_add_many (GST_BIN (video_thread), video_queue, video_cs,
|
|
|
|
video_balance, balance_cs, video_scaler, video_sink, NULL);
|
|
|
|
gst_element_link_many (video_queue, video_cs, video_balance, balance_cs,
|
2003-12-07 13:29:10 +00:00
|
|
|
video_scaler, video_sink, NULL);
|
|
|
|
gst_element_add_ghost_pad (video_thread,
|
|
|
|
gst_element_get_pad (video_queue, "sink"),
|
2004-01-14 21:50:39 +00:00
|
|
|
"sink");
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
gst_element_link (autoplugger, video_thread);
|
2004-01-14 21:50:39 +00:00
|
|
|
}
|
2003-12-07 13:29:10 +00:00
|
|
|
/* Creating our audio output bin
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
{ queue ! fakesink } */
|
|
|
|
{
|
2003-12-08 16:01:49 +00:00
|
|
|
audio_thread = gst_element_factory_make ("thread", "audio_thread");
|
|
|
|
if (!GST_IS_ELEMENT (audio_thread))
|
2003-12-07 13:29:10 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "audio_thread", audio_thread);
|
2003-12-07 13:29:10 +00:00
|
|
|
gst_bin_add (GST_BIN (work_thread), audio_thread);
|
|
|
|
|
|
|
|
/* Buffer queue for our audio thread */
|
|
|
|
audio_queue = gst_element_factory_make ("queue", "audio_queue");
|
|
|
|
if (!GST_IS_ELEMENT (audio_queue))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "audio_queue", audio_queue);
|
2003-12-07 13:29:10 +00:00
|
|
|
|
|
|
|
/* Placeholder for future audio sink bin */
|
|
|
|
audio_sink = gst_element_factory_make ("fakesink", "audio_sink");
|
|
|
|
if (!GST_IS_ELEMENT (audio_sink))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_insert (play->priv->elements, "audio_sink", audio_sink);
|
2003-12-07 13:29:10 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
gst_bin_add_many (GST_BIN (audio_thread), audio_queue, audio_sink, NULL);
|
|
|
|
gst_element_link (audio_queue, audio_sink);
|
2003-12-07 13:29:10 +00:00
|
|
|
gst_element_add_ghost_pad (audio_thread,
|
|
|
|
gst_element_get_pad (audio_queue, "sink"),
|
2004-01-14 21:50:39 +00:00
|
|
|
"sink");
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
gst_pad_link (tee_pad2, gst_element_get_pad (audio_queue, "sink"));
|
|
|
|
}
|
2003-12-07 17:56:10 +00:00
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-12-07 19:02:31 +00:00
|
|
|
static void
|
|
|
|
gst_play_have_video_size (GstElement *element, gint width,
|
|
|
|
gint height, GstPlay *play)
|
|
|
|
{
|
|
|
|
g_return_if_fail (play != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PLAY (play));
|
|
|
|
g_signal_emit (G_OBJECT (play), gst_play_signals[HAVE_VIDEO_SIZE],
|
|
|
|
0, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_play_tick_callback (GstPlay *play)
|
|
|
|
{
|
2004-01-14 02:37:12 +00:00
|
|
|
GstElement* audio_sink_element;
|
|
|
|
GstClockTime time;
|
2003-12-07 19:02:31 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (!GST_IS_PLAY (play)) {
|
|
|
|
play->priv->tick_id = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-12-07 19:02:31 +00:00
|
|
|
|
2004-01-14 02:37:12 +00:00
|
|
|
audio_sink_element = g_hash_table_lookup (play->priv->elements,
|
|
|
|
"audio_sink_element");
|
|
|
|
time = gst_element_get_time (audio_sink_element);
|
|
|
|
play->priv->time_nanos = GST_CLOCK_TIME_IS_VALID (time) ? time : 0;
|
2003-12-07 19:02:31 +00:00
|
|
|
|
|
|
|
g_signal_emit (G_OBJECT (play), gst_play_signals[TIME_TICK],
|
2003-12-11 22:29:14 +00:00
|
|
|
0,play->priv->time_nanos);
|
2003-12-07 19:02:31 +00:00
|
|
|
|
2003-12-08 16:01:49 +00:00
|
|
|
if (GST_STATE (GST_ELEMENT (play)) == GST_STATE_PLAYING)
|
|
|
|
return TRUE;
|
2003-12-14 17:00:18 +00:00
|
|
|
else {
|
|
|
|
play->priv->tick_id = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_play_get_length_callback (GstPlay *play)
|
|
|
|
{
|
|
|
|
GstElement *audio_sink_element, *video_sink_element;
|
|
|
|
GstFormat format = GST_FORMAT_TIME;
|
|
|
|
gint64 value;
|
|
|
|
gboolean q = FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
|
|
|
|
|
|
|
/* We try to get length from all real sink elements */
|
2003-12-11 22:29:14 +00:00
|
|
|
audio_sink_element = g_hash_table_lookup (play->priv->elements,
|
2003-12-08 16:01:49 +00:00
|
|
|
"audio_sink_element");
|
2003-12-11 22:29:14 +00:00
|
|
|
video_sink_element = g_hash_table_lookup (play->priv->elements,
|
2003-12-08 16:01:49 +00:00
|
|
|
"video_sink_element");
|
|
|
|
if (!GST_IS_ELEMENT (audio_sink_element) &&
|
2003-12-14 17:00:18 +00:00
|
|
|
!GST_IS_ELEMENT (video_sink_element)) {
|
|
|
|
play->priv->length_id = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
|
|
|
|
/* Audio first and then Video */
|
2003-12-21 19:48:40 +00:00
|
|
|
if (GST_IS_ELEMENT (audio_sink_element))
|
|
|
|
q = gst_element_query (audio_sink_element, GST_QUERY_TOTAL, &format,
|
|
|
|
&value);
|
|
|
|
if ( (!q) && (GST_IS_ELEMENT (video_sink_element)) )
|
2003-12-08 16:01:49 +00:00
|
|
|
q = gst_element_query (video_sink_element, GST_QUERY_TOTAL, &format,
|
|
|
|
&value);
|
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (q) {
|
|
|
|
play->priv->length_nanos = value;
|
|
|
|
g_signal_emit (G_OBJECT (play), gst_play_signals[STREAM_LENGTH],
|
|
|
|
0,play->priv->length_nanos);
|
|
|
|
play->priv->length_id = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
play->priv->get_length_attempt++;
|
2003-12-08 16:01:49 +00:00
|
|
|
|
|
|
|
/* We try 16 times */
|
2003-12-14 17:00:18 +00:00
|
|
|
if (play->priv->get_length_attempt > 15) {
|
|
|
|
play->priv->length_id = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
else
|
|
|
|
return TRUE;
|
2003-12-07 19:02:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_play_state_change (GstElement *element, GstElementState old,
|
|
|
|
GstElementState state)
|
|
|
|
{
|
|
|
|
GstPlay *play;
|
|
|
|
|
|
|
|
g_return_if_fail (element != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PLAY (element));
|
|
|
|
|
|
|
|
play = GST_PLAY (element);
|
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (state == GST_STATE_PLAYING) {
|
|
|
|
if (play->priv->tick_id) {
|
|
|
|
g_source_remove (play->priv->tick_id);
|
|
|
|
play->priv->tick_id = 0;
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
play->priv->tick_id = g_timeout_add (200,
|
|
|
|
(GSourceFunc) gst_play_tick_callback,
|
|
|
|
play);
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
play->priv->get_length_attempt = 0;
|
|
|
|
|
|
|
|
if (play->priv->length_id) {
|
|
|
|
g_source_remove (play->priv->length_id);
|
|
|
|
play->priv->length_id = 0;
|
2003-12-07 19:02:31 +00:00
|
|
|
}
|
2003-12-14 17:00:18 +00:00
|
|
|
|
|
|
|
play->priv->length_id = g_timeout_add (200,
|
|
|
|
(GSourceFunc) gst_play_get_length_callback,
|
|
|
|
play);
|
|
|
|
}
|
2003-12-07 19:02:31 +00:00
|
|
|
|
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->state_change)
|
|
|
|
GST_ELEMENT_CLASS (parent_class)->state_change (element, old, state);
|
|
|
|
}
|
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
/* =========================================== */
|
|
|
|
/* */
|
|
|
|
/* Init & Dispose & Class init */
|
|
|
|
/* */
|
|
|
|
/* =========================================== */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_play_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
GstPlay *play;
|
|
|
|
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PLAY (object));
|
|
|
|
|
|
|
|
play = GST_PLAY (object);
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (play->priv->length_id) {
|
|
|
|
g_source_remove (play->priv->length_id);
|
|
|
|
play->priv->length_id = 0;
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (play->priv->tick_id) {
|
|
|
|
g_source_remove (play->priv->tick_id);
|
|
|
|
play->priv->tick_id = 0;
|
|
|
|
}
|
2003-12-07 13:29:10 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (play->priv->location) {
|
|
|
|
g_free (play->priv->location);
|
|
|
|
play->priv->location = NULL;
|
|
|
|
}
|
2003-12-07 13:29:10 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (play->priv->elements) {
|
|
|
|
g_hash_table_destroy (play->priv->elements);
|
|
|
|
play->priv->elements = NULL;
|
|
|
|
}
|
2003-12-07 13:29:10 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_play_init (GstPlay *play)
|
|
|
|
{
|
2003-12-11 22:29:14 +00:00
|
|
|
play->priv = g_new0 (GstPlayPrivate, 1);
|
|
|
|
play->priv->location = NULL;
|
|
|
|
play->priv->length_nanos = 0;
|
|
|
|
play->priv->time_nanos = 0;
|
|
|
|
play->priv->elements = g_hash_table_new (g_str_hash, g_str_equal);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
if (!gst_play_pipeline_setup (play))
|
|
|
|
g_warning ("libgstplay: failed initializing pipeline");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_play_class_init (GstPlayClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2003-12-07 19:02:31 +00:00
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
|
|
|
gobject_class->dispose = gst_play_dispose;
|
|
|
|
|
2003-12-07 19:02:31 +00:00
|
|
|
element_class->state_change = gst_play_state_change;
|
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
gst_play_signals[TIME_TICK] =
|
|
|
|
g_signal_new ("time_tick", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GstPlayClass, time_tick), NULL, NULL,
|
|
|
|
gst_marshal_VOID__INT64, G_TYPE_NONE, 1, G_TYPE_INT64);
|
|
|
|
gst_play_signals[STREAM_LENGTH] =
|
|
|
|
g_signal_new ("stream_length", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GstPlayClass, stream_length), NULL, NULL,
|
|
|
|
gst_marshal_VOID__INT64, G_TYPE_NONE, 1, G_TYPE_INT64);
|
|
|
|
gst_play_signals[HAVE_VIDEO_SIZE] =
|
|
|
|
g_signal_new ("have_video_size", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GstPlayClass, have_video_size), NULL, NULL,
|
|
|
|
gst_marshal_VOID__INT_INT, G_TYPE_NONE, 2,
|
|
|
|
G_TYPE_INT, G_TYPE_INT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ======================================================= */
|
|
|
|
/* */
|
|
|
|
/* Public Methods */
|
|
|
|
/* */
|
|
|
|
/* ======================================================= */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_play_set_location:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
* @location: a const #char* indicating location to play
|
|
|
|
*
|
|
|
|
* Set location of @play to @location.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if location was set successfully.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_play_set_location (GstPlay *play, const char *location)
|
|
|
|
{
|
2004-01-14 21:50:39 +00:00
|
|
|
GstElement *work_thread, *source, *autoplugger;
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
GstElement *audioconvert, *video_thread;
|
2003-12-07 17:56:10 +00:00
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
if (play->priv->location)
|
|
|
|
g_free (play->priv->location);
|
2003-12-07 13:29:10 +00:00
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
play->priv->location = g_strdup (location);
|
2003-12-07 13:29:10 +00:00
|
|
|
|
|
|
|
if (GST_STATE (GST_ELEMENT (play)) != GST_STATE_READY)
|
|
|
|
gst_element_set_state (GST_ELEMENT (play), GST_STATE_READY);
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
work_thread = g_hash_table_lookup (play->priv->elements, "work_thread");
|
2003-12-08 16:01:49 +00:00
|
|
|
if (!GST_IS_ELEMENT (work_thread))
|
2003-12-07 17:56:10 +00:00
|
|
|
return FALSE;
|
2003-12-11 22:29:14 +00:00
|
|
|
source = g_hash_table_lookup (play->priv->elements, "source");
|
2003-12-07 17:56:10 +00:00
|
|
|
if (!GST_IS_ELEMENT (source))
|
|
|
|
return FALSE;
|
2003-12-11 22:29:14 +00:00
|
|
|
autoplugger = g_hash_table_lookup (play->priv->elements, "autoplugger");
|
2003-12-07 17:56:10 +00:00
|
|
|
if (!GST_IS_ELEMENT (autoplugger))
|
|
|
|
return FALSE;
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
audioconvert = g_hash_table_lookup (play->priv->elements, "audioconvert");
|
|
|
|
if (!GST_IS_ELEMENT (audioconvert))
|
|
|
|
return FALSE;
|
|
|
|
video_thread = g_hash_table_lookup (play->priv->elements, "video_thread");
|
|
|
|
if (!GST_IS_ELEMENT (video_thread))
|
|
|
|
return FALSE;
|
2003-12-07 17:56:10 +00:00
|
|
|
|
|
|
|
/* Spider can autoplugg only once. We remove the actual one and put a new
|
|
|
|
autoplugger */
|
|
|
|
gst_element_unlink (source, autoplugger);
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
gst_element_unlink (autoplugger, video_thread);
|
|
|
|
gst_element_unlink (autoplugger, audioconvert);
|
2003-12-07 17:56:10 +00:00
|
|
|
gst_bin_remove (GST_BIN (work_thread), autoplugger);
|
|
|
|
|
|
|
|
autoplugger = gst_element_factory_make ("spider", "autoplugger");
|
|
|
|
if (!GST_IS_ELEMENT (autoplugger))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
gst_bin_add (GST_BIN (work_thread), autoplugger);
|
|
|
|
gst_element_link (source, autoplugger);
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
gst_element_link (autoplugger, video_thread);
|
|
|
|
gst_element_link (autoplugger, audioconvert);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
|
|
|
/* FIXME: Why don't we have an interface to do that kind of stuff ? */
|
2003-12-11 22:29:14 +00:00
|
|
|
g_object_set (G_OBJECT (source), "location", play->priv->location, NULL);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
play->priv->length_nanos = 0LL;
|
|
|
|
play->priv->time_nanos = 0LL;
|
2003-12-07 17:56:10 +00:00
|
|
|
|
|
|
|
g_signal_emit (G_OBJECT (play), gst_play_signals[STREAM_LENGTH], 0, 0LL);
|
|
|
|
g_signal_emit (G_OBJECT (play), gst_play_signals[TIME_TICK], 0, 0LL);
|
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_play_get_location:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
*
|
|
|
|
* Get current location of @play.
|
|
|
|
*
|
|
|
|
* Returns: a const #char* pointer to current location.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
gst_play_get_location (GstPlay *play)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (play != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), NULL);
|
2003-12-11 22:29:14 +00:00
|
|
|
return g_strdup (play->priv->location);
|
2003-12-07 13:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_play_seek_to_time:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
* @time_nanos: a #gint64 indicating a time position.
|
|
|
|
*
|
|
|
|
* Performs a seek on @play until @time_nanos.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_play_seek_to_time (GstPlay * play, gint64 time_nanos)
|
|
|
|
{
|
2003-12-14 17:00:18 +00:00
|
|
|
GstElement *audio_sink_element, *video_sink_element;
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
|
|
|
|
2003-12-08 16:01:49 +00:00
|
|
|
if (time_nanos < 0LL)
|
|
|
|
time_nanos = 0LL;
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
audio_sink_element = g_hash_table_lookup (play->priv->elements,
|
2003-12-08 16:01:49 +00:00
|
|
|
"audio_sink_element");
|
2003-12-14 17:00:18 +00:00
|
|
|
video_sink_element = g_hash_table_lookup (play->priv->elements,
|
|
|
|
"video_sink_element");
|
|
|
|
|
|
|
|
if (GST_IS_ELEMENT (audio_sink_element) &&
|
|
|
|
GST_IS_ELEMENT (video_sink_element)) {
|
|
|
|
gboolean s = FALSE;
|
2003-12-16 22:52:01 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
s = gst_element_seek (audio_sink_element, GST_FORMAT_TIME |
|
|
|
|
GST_SEEK_METHOD_SET | GST_SEEK_FLAG_FLUSH,
|
|
|
|
time_nanos);
|
|
|
|
if (!s) {
|
|
|
|
s = gst_element_seek (video_sink_element, GST_FORMAT_TIME |
|
2003-12-08 16:01:49 +00:00
|
|
|
GST_SEEK_METHOD_SET | GST_SEEK_FLAG_FLUSH,
|
|
|
|
time_nanos);
|
|
|
|
}
|
2003-12-14 17:00:18 +00:00
|
|
|
|
|
|
|
if (s) {
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
GstClockTime time;
|
|
|
|
time = gst_element_get_time (audio_sink_element);
|
|
|
|
play->priv->time_nanos = GST_CLOCK_TIME_IS_VALID (time) ? time : 0;
|
2003-12-14 17:00:18 +00:00
|
|
|
g_signal_emit (G_OBJECT (play), gst_play_signals[TIME_TICK],
|
|
|
|
0,play->priv->time_nanos);
|
|
|
|
}
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-12-07 17:56:10 +00:00
|
|
|
/**
|
|
|
|
* gst_play_set_data_src:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
* @data_src: a #GstElement.
|
|
|
|
*
|
|
|
|
* Set @data_src as the source element of @play.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if call succeeded.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_play_set_data_src (GstPlay *play, GstElement *data_src)
|
|
|
|
{
|
|
|
|
GstElement *work_thread, *old_data_src, *autoplugger;
|
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
|
|
|
|
|
|
|
/* We bring back the pipeline to READY */
|
|
|
|
if (GST_STATE (GST_ELEMENT (play)) != GST_STATE_READY)
|
|
|
|
gst_element_set_state (GST_ELEMENT (play), GST_STATE_READY);
|
|
|
|
|
|
|
|
/* Getting needed objects */
|
2003-12-11 22:29:14 +00:00
|
|
|
work_thread = g_hash_table_lookup (play->priv->elements, "work_thread");
|
2003-12-08 16:01:49 +00:00
|
|
|
if (!GST_IS_ELEMENT (work_thread))
|
2003-12-07 17:56:10 +00:00
|
|
|
return FALSE;
|
2003-12-11 22:29:14 +00:00
|
|
|
old_data_src = g_hash_table_lookup (play->priv->elements, "source");
|
2003-12-07 17:56:10 +00:00
|
|
|
if (!GST_IS_ELEMENT (old_data_src))
|
|
|
|
return FALSE;
|
2003-12-11 22:29:14 +00:00
|
|
|
autoplugger = g_hash_table_lookup (play->priv->elements, "autoplugger");
|
2003-12-07 17:56:10 +00:00
|
|
|
if (!GST_IS_ELEMENT (autoplugger))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Unlinking old source from autoplugger, removing it from pipeline, adding
|
|
|
|
the new one and connecting it to autoplugger FIXME: we should put a new
|
|
|
|
autoplugger here as spider can autoplugg only once */
|
|
|
|
gst_element_unlink (old_data_src, autoplugger);
|
|
|
|
gst_bin_remove (GST_BIN (work_thread), old_data_src);
|
|
|
|
gst_bin_add (GST_BIN (work_thread), data_src);
|
|
|
|
gst_element_link (data_src, autoplugger);
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_replace (play->priv->elements, "source", data_src);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_play_set_video_sink:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
* @video_sink: a #GstElement.
|
|
|
|
*
|
|
|
|
* Set @video_sink as the video sink element of @play.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if call succeeded.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_play_set_video_sink (GstPlay *play, GstElement *video_sink)
|
|
|
|
{
|
2003-12-07 19:02:31 +00:00
|
|
|
GstElement *video_thread, *old_video_sink, *video_scaler, *video_sink_element;
|
2003-12-07 17:56:10 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
2003-12-21 19:48:40 +00:00
|
|
|
g_return_val_if_fail (video_sink != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_ELEMENT (video_sink), FALSE);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
|
|
|
/* We bring back the pipeline to READY */
|
|
|
|
if (GST_STATE (GST_ELEMENT (play)) != GST_STATE_READY)
|
|
|
|
gst_element_set_state (GST_ELEMENT (play), GST_STATE_READY);
|
|
|
|
|
|
|
|
/* Getting needed objects */
|
2003-12-11 22:29:14 +00:00
|
|
|
video_thread = g_hash_table_lookup (play->priv->elements, "video_thread");
|
2003-12-08 16:01:49 +00:00
|
|
|
if (!GST_IS_ELEMENT (video_thread))
|
2003-12-07 17:56:10 +00:00
|
|
|
return FALSE;
|
2003-12-11 22:29:14 +00:00
|
|
|
old_video_sink = g_hash_table_lookup (play->priv->elements, "video_sink");
|
2003-12-07 17:56:10 +00:00
|
|
|
if (!GST_IS_ELEMENT (old_video_sink))
|
|
|
|
return FALSE;
|
2003-12-11 22:29:14 +00:00
|
|
|
video_scaler = g_hash_table_lookup (play->priv->elements, "video_scaler");
|
2003-12-07 17:56:10 +00:00
|
|
|
if (!GST_IS_ELEMENT (video_scaler))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Unlinking old video sink from video scaler, removing it from pipeline,
|
|
|
|
adding the new one and linking it */
|
|
|
|
gst_element_unlink (video_scaler, old_video_sink);
|
|
|
|
gst_bin_remove (GST_BIN (video_thread), old_video_sink);
|
|
|
|
gst_bin_add (GST_BIN (video_thread), video_sink);
|
|
|
|
gst_element_link (video_scaler, video_sink);
|
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_replace (play->priv->elements, "video_sink", video_sink);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
2003-12-07 19:02:31 +00:00
|
|
|
video_sink_element = gst_play_get_sink_element (play, video_sink,
|
|
|
|
GST_PLAY_SINK_TYPE_VIDEO);
|
2003-12-14 17:00:18 +00:00
|
|
|
if (GST_IS_ELEMENT (video_sink_element)) {
|
|
|
|
g_hash_table_replace (play->priv->elements, "video_sink_element",
|
|
|
|
video_sink_element);
|
2004-01-07 21:49:25 +00:00
|
|
|
if (GST_IS_X_OVERLAY (video_sink_element)) {
|
|
|
|
g_signal_connect (G_OBJECT (video_sink_element),
|
|
|
|
"desired_size_changed",
|
|
|
|
G_CALLBACK (gst_play_have_video_size), play);
|
|
|
|
}
|
2003-12-14 17:00:18 +00:00
|
|
|
}
|
2003-12-07 19:02:31 +00:00
|
|
|
|
2003-12-16 22:52:01 +00:00
|
|
|
gst_element_set_state (video_sink, GST_STATE (GST_ELEMENT(play)));
|
|
|
|
|
2003-12-07 17:56:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_play_set_audio_sink:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
* @audio_sink: a #GstElement.
|
|
|
|
*
|
|
|
|
* Set @audio_sink as the audio sink element of @play.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if call succeeded.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_play_set_audio_sink (GstPlay *play, GstElement *audio_sink)
|
|
|
|
{
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
GstElement *old_audio_sink, *audio_thread, *audio_queue, *audio_sink_element;
|
2003-12-07 17:56:10 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
2003-12-21 19:48:40 +00:00
|
|
|
g_return_val_if_fail (audio_sink != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_ELEMENT (audio_sink), FALSE);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
|
|
|
/* We bring back the pipeline to READY */
|
|
|
|
if (GST_STATE (GST_ELEMENT (play)) != GST_STATE_READY)
|
|
|
|
gst_element_set_state (GST_ELEMENT (play), GST_STATE_READY);
|
|
|
|
|
|
|
|
/* Getting needed objects */
|
2003-12-11 22:29:14 +00:00
|
|
|
old_audio_sink = g_hash_table_lookup (play->priv->elements, "audio_sink");
|
2003-12-07 17:56:10 +00:00
|
|
|
if (!GST_IS_ELEMENT (old_audio_sink))
|
|
|
|
return FALSE;
|
2003-12-11 22:29:14 +00:00
|
|
|
audio_thread = g_hash_table_lookup (play->priv->elements, "audio_thread");
|
2003-12-08 16:01:49 +00:00
|
|
|
if (!GST_IS_ELEMENT (audio_thread))
|
2003-12-07 17:56:10 +00:00
|
|
|
return FALSE;
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
audio_queue = g_hash_table_lookup (play->priv->elements, "audio_queue");
|
|
|
|
if (!GST_IS_ELEMENT (audio_queue))
|
2003-12-07 17:56:10 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Unlinking old audiosink, removing it from pipeline, putting the new one
|
|
|
|
and linking it */
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
gst_element_unlink (audio_queue, old_audio_sink);
|
2003-12-07 17:56:10 +00:00
|
|
|
gst_bin_remove (GST_BIN (audio_thread), old_audio_sink);
|
|
|
|
gst_bin_add (GST_BIN (audio_thread), audio_sink);
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
gst_element_link (audio_queue, audio_sink);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
2003-12-11 22:29:14 +00:00
|
|
|
g_hash_table_replace (play->priv->elements, "audio_sink", audio_sink);
|
2003-12-07 17:56:10 +00:00
|
|
|
|
2003-12-08 16:01:49 +00:00
|
|
|
audio_sink_element = gst_play_get_sink_element (play, audio_sink,
|
|
|
|
GST_PLAY_SINK_TYPE_AUDIO);
|
2003-12-14 17:00:18 +00:00
|
|
|
if (GST_IS_ELEMENT (audio_sink_element)) {
|
|
|
|
g_hash_table_replace (play->priv->elements, "audio_sink_element",
|
|
|
|
audio_sink_element);
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
|
2003-12-16 22:52:01 +00:00
|
|
|
gst_element_set_state (audio_sink, GST_STATE (GST_ELEMENT(play)));
|
|
|
|
|
2003-12-08 16:01:49 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_play_set_visualization:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
* @element: a #GstElement.
|
|
|
|
*
|
|
|
|
* Set @video_sink as the video sink element of @play.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if call succeeded.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_play_set_visualization (GstPlay *play, GstElement *vis_element)
|
|
|
|
{
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
GstElement *work_thread, *old_vis_element, *video_thread;
|
|
|
|
GstPad *tee_pad1;
|
2003-12-08 16:01:49 +00:00
|
|
|
gboolean was_playing = FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
2003-12-21 19:48:40 +00:00
|
|
|
g_return_val_if_fail (vis_element != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_ELEMENT (vis_element), FALSE);
|
2003-12-08 16:01:49 +00:00
|
|
|
|
|
|
|
/* Getting needed objects */
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
work_thread = g_hash_table_lookup (play->priv->elements, "work_thread");
|
|
|
|
if (!GST_IS_ELEMENT (work_thread))
|
2003-12-08 16:01:49 +00:00
|
|
|
return FALSE;
|
2003-12-11 22:29:14 +00:00
|
|
|
old_vis_element = g_hash_table_lookup (play->priv->elements,
|
|
|
|
"vis_element");
|
2003-12-08 16:01:49 +00:00
|
|
|
if (!GST_IS_ELEMENT (old_vis_element))
|
|
|
|
return FALSE;
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
tee_pad1 = g_hash_table_lookup (play->priv->elements, "tee_pad1");
|
|
|
|
if (!GST_IS_PAD (tee_pad1))
|
2003-12-08 16:01:49 +00:00
|
|
|
return FALSE;
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
video_thread = g_hash_table_lookup (play->priv->elements, "video_thread");
|
|
|
|
if (!GST_IS_ELEMENT (video_thread))
|
2004-01-14 21:50:39 +00:00
|
|
|
return FALSE;
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
|
|
|
|
/* Let's check if the current vis element has a managing bin. If yes that
|
|
|
|
means the element is inside the pipeline and need to be unlinked and
|
|
|
|
removed. We also need to pause the pipeline if it is currently playing. */
|
|
|
|
if (gst_element_get_managing_bin (old_vis_element)) {
|
|
|
|
GstPad *vis_element_pad;
|
|
|
|
|
|
|
|
/* We bring back the pipeline to PAUSED */
|
|
|
|
if (GST_STATE (GST_ELEMENT (play)) == GST_STATE_PLAYING) {
|
|
|
|
gst_element_set_state (GST_ELEMENT (play), GST_STATE_PAUSED);
|
|
|
|
was_playing = TRUE;
|
|
|
|
}
|
2003-12-08 16:01:49 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Unlinking, removing the old element then adding and linking the new one */
|
|
|
|
vis_element_pad = gst_element_get_pad (old_vis_element, "sink");
|
|
|
|
if (GST_IS_PAD (vis_element_pad))
|
|
|
|
gst_pad_unlink (tee_pad1, vis_element_pad);
|
|
|
|
gst_element_unlink (old_vis_element, video_thread);
|
|
|
|
gst_bin_remove (GST_BIN (work_thread), old_vis_element);
|
|
|
|
gst_bin_add (GST_BIN (work_thread), vis_element);
|
|
|
|
vis_element_pad = gst_element_get_pad (vis_element, "sink");
|
|
|
|
if (GST_IS_PAD (vis_element_pad))
|
|
|
|
gst_pad_link (tee_pad1, vis_element_pad);
|
|
|
|
gst_element_link (vis_element, video_thread);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gst_object_unref (GST_OBJECT (old_vis_element));
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_replace (play->priv->elements, "vis_element", vis_element);
|
2003-12-08 16:01:49 +00:00
|
|
|
|
|
|
|
if (was_playing)
|
|
|
|
gst_element_set_state (GST_ELEMENT (play), GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_play_connect_visualization:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
* @connect: a #gboolean indicating wether or not
|
|
|
|
* visualization should be connected.
|
|
|
|
*
|
|
|
|
* Connect or disconnect visualization bin in @play.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if call succeeded.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_play_connect_visualization (GstPlay * play, gboolean connect)
|
|
|
|
{
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
GstElement *work_thread, *vis_element, *autoplugger, *video_thread;
|
|
|
|
GstElement *audioconvert, *source;
|
|
|
|
GstPad *tee_pad1, *vis_element_pad;
|
2003-12-08 16:01:49 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), FALSE);
|
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Getting needed objects */
|
|
|
|
work_thread = g_hash_table_lookup (play->priv->elements, "work_thread");
|
|
|
|
if (!GST_IS_ELEMENT (work_thread))
|
|
|
|
return FALSE;
|
|
|
|
vis_element = g_hash_table_lookup (play->priv->elements, "vis_element");
|
|
|
|
if (!GST_IS_ELEMENT (vis_element))
|
|
|
|
return FALSE;
|
|
|
|
tee_pad1 = g_hash_table_lookup (play->priv->elements, "tee_pad1");
|
|
|
|
if (!GST_IS_PAD (tee_pad1))
|
2003-12-08 16:01:49 +00:00
|
|
|
return FALSE;
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
video_thread = g_hash_table_lookup (play->priv->elements, "video_thread");
|
|
|
|
if (!GST_IS_ELEMENT (video_thread))
|
2003-12-08 16:01:49 +00:00
|
|
|
return FALSE;
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
autoplugger = g_hash_table_lookup (play->priv->elements, "autoplugger");
|
|
|
|
if (!GST_IS_ELEMENT (autoplugger))
|
|
|
|
return FALSE;
|
|
|
|
source = g_hash_table_lookup (play->priv->elements, "source");
|
|
|
|
if (!GST_IS_ELEMENT (source))
|
|
|
|
return FALSE;
|
|
|
|
audioconvert = g_hash_table_lookup (play->priv->elements, "audioconvert");
|
|
|
|
if (!GST_IS_ELEMENT (audioconvert))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Check if the vis element is in the pipeline. That means visualization is
|
|
|
|
connected already */
|
|
|
|
if (gst_element_get_managing_bin (vis_element)) {
|
|
|
|
|
|
|
|
/* If we are supposed to connect then nothing to do we return */
|
|
|
|
if (connect) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We have to modify the pipeline. Changing autoplugger requires going to
|
|
|
|
READY */
|
|
|
|
gst_element_set_state (GST_ELEMENT (play), GST_STATE_READY);
|
|
|
|
|
|
|
|
/* Otherwise we unlink and remove the vis element refing it so that
|
|
|
|
it won't be destroyed when removed from the bin. */
|
|
|
|
vis_element_pad = gst_element_get_pad (vis_element, "sink");
|
|
|
|
if (GST_IS_PAD (vis_element_pad))
|
|
|
|
gst_pad_unlink (tee_pad1, vis_element_pad);
|
|
|
|
gst_element_unlink (vis_element, video_thread);
|
|
|
|
gst_object_ref (GST_OBJECT (vis_element));
|
|
|
|
gst_bin_remove (GST_BIN (work_thread), vis_element);
|
|
|
|
|
|
|
|
/* Removing autoplugger */
|
|
|
|
gst_element_unlink (source, autoplugger);
|
|
|
|
gst_element_unlink (autoplugger, audioconvert);
|
|
|
|
gst_bin_remove (GST_BIN (work_thread), autoplugger);
|
2003-12-08 16:01:49 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
autoplugger = gst_element_factory_make ("spider", "autoplugger");
|
|
|
|
if (!GST_IS_ELEMENT (autoplugger))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Adding and connecting a new autoplugger connected to video_thread */
|
|
|
|
gst_bin_add (GST_BIN (work_thread), autoplugger);
|
|
|
|
gst_element_link (source, autoplugger);
|
|
|
|
gst_element_link (autoplugger, video_thread);
|
|
|
|
gst_element_link (autoplugger, audioconvert);
|
|
|
|
|
|
|
|
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);
|
2003-12-14 17:00:18 +00:00
|
|
|
}
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
else {
|
|
|
|
GstCaps *filtered_caps;
|
2003-12-08 16:01:49 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* If we are supposed to disconnect then nothing to do we return */
|
|
|
|
if (!connect) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We have to modify the pipeline. Changing autoplugger requires going to
|
|
|
|
READY */
|
|
|
|
gst_element_set_state (GST_ELEMENT (play), GST_STATE_READY);
|
|
|
|
|
|
|
|
/* Removing autoplugger */
|
|
|
|
gst_element_unlink (source, autoplugger);
|
|
|
|
gst_element_unlink (autoplugger, video_thread);
|
|
|
|
gst_element_unlink (autoplugger, audioconvert);
|
|
|
|
gst_bin_remove (GST_BIN (work_thread), autoplugger);
|
|
|
|
|
|
|
|
autoplugger = gst_element_factory_make ("spider", "autoplugger");
|
|
|
|
if (!GST_IS_ELEMENT (autoplugger))
|
|
|
|
return FALSE;
|
2003-12-08 16:01:49 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
/* Adding and connecting a new autoplugger */
|
|
|
|
gst_bin_add (GST_BIN (work_thread), autoplugger);
|
|
|
|
gst_element_link (source, autoplugger);
|
|
|
|
gst_element_link (autoplugger, audioconvert);
|
|
|
|
|
|
|
|
g_hash_table_replace (play->priv->elements, "autoplugger", autoplugger);
|
|
|
|
|
|
|
|
/* Otherwise we add the element to the bin and link it to video_thread */
|
|
|
|
gst_bin_add (GST_BIN (work_thread), vis_element);
|
|
|
|
vis_element_pad = gst_element_get_pad (vis_element, "sink");
|
|
|
|
if (GST_IS_PAD (vis_element_pad))
|
|
|
|
gst_pad_link (tee_pad1, vis_element_pad);
|
|
|
|
|
|
|
|
filtered_caps = gst_caps_from_string ("video/x-raw-rgb, "
|
|
|
|
"framerate = 30.0; "
|
|
|
|
"video/x-raw-yuv, "
|
|
|
|
"framerate = 30.0");
|
2003-12-08 16:01:49 +00:00
|
|
|
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
if (!gst_element_link_filtered (vis_element, video_thread, filtered_caps))
|
|
|
|
g_message ("failed linking filtered vis with video thread");
|
|
|
|
|
|
|
|
gst_caps_free (filtered_caps);
|
|
|
|
}
|
|
|
|
|
2003-12-07 17:56:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-12-07 19:02:31 +00:00
|
|
|
/**
|
|
|
|
* gst_play_get_sink_element:
|
|
|
|
* @play: a #GstPlay.
|
|
|
|
* @element: a #GstElement.
|
|
|
|
* @sink_type: a #GstPlaySinkType.
|
|
|
|
*
|
|
|
|
* Searches recursively for a sink #GstElement with
|
|
|
|
* type @sink_type in @element which is supposed to be a #GstBin.
|
|
|
|
*
|
|
|
|
* Returns: the sink #GstElement of @element.
|
|
|
|
*/
|
|
|
|
GstElement *
|
|
|
|
gst_play_get_sink_element (GstPlay *play,
|
gst-libs/gst/play/gstplay.c: Reworked the pipeline from scratch. Visualization is back and switch went out as i reali...
Original commit message from CVS:
2004-01-23 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
(gst_play_set_location), (gst_play_seek_to_time),
(gst_play_set_audio_sink), (gst_play_set_visualization),
(gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
the pipeline from scratch. Visualization is back and switch went out as
i realized it was not possible to use the way i wanted.
* sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
(gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
clearing in state change from READY to NULL. So that one can clean the
X ressources keeping the element.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
(gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
(gst_xvimagesink_colorbalance_set_value),
(gst_xvimagesink_colorbalance_get_value),
(gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
(gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
change from READY to NULL and fixed some stupid bugs in colorbalance
get/set values. Also added the following feature : when nobody tries to
set some values to the colorbalance levels before the xcontext is
grabbed, then when creating channels list from Xv attributes we set the
internal values to the Xv defaults. This way we handle buggy Xv drivers
that set default hue values far from the middle of the range (Thanks
to Jon Trowbridge for pointing that issue).
* sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
colorbalance levels have been set before xcontext is grabbed.
2004-01-22 23:54:34 +00:00
|
|
|
GstElement *element, GstPlaySinkType sink_type)
|
2003-12-07 19:02:31 +00:00
|
|
|
{
|
|
|
|
GList *elements = NULL;
|
|
|
|
const GList *pads = NULL;
|
|
|
|
gboolean has_src, has_correct_type;
|
|
|
|
|
|
|
|
g_return_val_if_fail (play != NULL, NULL);
|
|
|
|
g_return_val_if_fail (element != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PLAY (play), NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
|
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (!GST_IS_BIN (element)) {
|
|
|
|
/* since its not a bin, we'll presume this
|
|
|
|
* element is a sink element */
|
|
|
|
return element;
|
|
|
|
}
|
2003-12-07 19:02:31 +00:00
|
|
|
|
|
|
|
elements = (GList *) gst_bin_get_list (GST_BIN (element));
|
|
|
|
|
|
|
|
/* traverse all elements looking for a src pad */
|
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
while (elements) {
|
|
|
|
element = GST_ELEMENT (elements->data);
|
|
|
|
|
|
|
|
/* Recursivity :) */
|
|
|
|
|
|
|
|
if (GST_IS_BIN (element)) {
|
|
|
|
element = gst_play_get_sink_element (play, element, sink_type);
|
|
|
|
if (GST_IS_ELEMENT (element))
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pads = gst_element_get_pad_list (element);
|
|
|
|
has_src = FALSE;
|
|
|
|
has_correct_type = FALSE;
|
|
|
|
while (pads) {
|
|
|
|
/* check for src pad */
|
|
|
|
if (GST_PAD_DIRECTION (GST_PAD (pads->data)) == GST_PAD_SRC) {
|
|
|
|
has_src = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* If not a src pad checking caps */
|
2004-01-12 16:48:48 +00:00
|
|
|
GstCaps *caps;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
gboolean has_video_cap = FALSE;
|
|
|
|
gboolean has_audio_cap = FALSE;
|
|
|
|
|
2004-01-12 16:48:48 +00:00
|
|
|
caps = gst_pad_get_caps (GST_PAD (pads->data));
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2004-01-12 16:48:48 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
if (strcmp (gst_structure_get_name (structure),
|
|
|
|
"audio/x-raw-int") == 0) {
|
|
|
|
has_audio_cap = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (gst_structure_get_name (structure),
|
|
|
|
"video/x-raw-yuv") == 0 ||
|
|
|
|
strcmp (gst_structure_get_name (structure),
|
|
|
|
"video/x-raw-rgb") == 0) {
|
|
|
|
has_video_cap = TRUE;
|
|
|
|
}
|
|
|
|
|
2004-01-12 16:48:48 +00:00
|
|
|
gst_caps_free (caps);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
switch (sink_type) {
|
|
|
|
case GST_PLAY_SINK_TYPE_AUDIO:
|
|
|
|
if (has_audio_cap)
|
|
|
|
has_correct_type = TRUE;
|
|
|
|
break;;
|
|
|
|
case GST_PLAY_SINK_TYPE_VIDEO:
|
|
|
|
if (has_video_cap)
|
|
|
|
has_correct_type = TRUE;
|
|
|
|
break;;
|
|
|
|
case GST_PLAY_SINK_TYPE_ANY:
|
|
|
|
if ((has_video_cap) || (has_audio_cap))
|
|
|
|
has_correct_type = TRUE;
|
|
|
|
break;;
|
|
|
|
default:
|
|
|
|
has_correct_type = FALSE;
|
2003-12-14 17:00:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pads = g_list_next (pads);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((!has_src) && (has_correct_type))
|
|
|
|
return element;
|
2003-12-07 19:02:31 +00:00
|
|
|
}
|
2003-12-14 17:00:18 +00:00
|
|
|
|
|
|
|
elements = g_list_next (elements);
|
|
|
|
}
|
|
|
|
|
2003-12-07 19:02:31 +00:00
|
|
|
/* we didn't find a sink element */
|
2003-12-14 17:00:18 +00:00
|
|
|
|
2003-12-07 19:02:31 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-12-07 17:56:10 +00:00
|
|
|
GstPlay *
|
|
|
|
gst_play_new (void)
|
|
|
|
{
|
|
|
|
GstPlay *play = g_object_new (GST_TYPE_PLAY, NULL);
|
|
|
|
|
|
|
|
return play;
|
|
|
|
}
|
|
|
|
|
2003-12-07 13:29:10 +00:00
|
|
|
/* =========================================== */
|
|
|
|
/* */
|
|
|
|
/* Object typing & Creation */
|
|
|
|
/* */
|
|
|
|
/* =========================================== */
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_play_get_type (void)
|
|
|
|
{
|
|
|
|
static GType play_type = 0;
|
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
if (!play_type) {
|
|
|
|
static const GTypeInfo play_info = {
|
|
|
|
sizeof (GstPlayClass),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_play_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (GstPlay),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_play_init,
|
|
|
|
NULL
|
|
|
|
};
|
2003-12-07 13:29:10 +00:00
|
|
|
|
2003-12-14 17:00:18 +00:00
|
|
|
play_type = g_type_register_static (GST_TYPE_PIPELINE, "GstPlay",
|
|
|
|
&play_info, 0);
|
|
|
|
}
|
2003-12-07 13:29:10 +00:00
|
|
|
|
|
|
|
return play_type;
|
|
|
|
}
|