summaryrefslogtreecommitdiff
path: root/gst/playback/gstplaybasebin.h
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2004-07-12 09:11:41 +0000
committerWim Taymans <wim.taymans@gmail.com>2004-07-12 09:11:41 +0000
commit467c454d7575fd3ea2c31cbc1180092620b00663 (patch)
tree18dd9b95fd61f05704fb24fe2f550d83fd0ee51b /gst/playback/gstplaybasebin.h
parent83358169b7b8a79e04a5c2ae1ac899a3a8961137 (diff)
gst/playback/: More fixes on reusing of the element.
Original commit message from CVS: * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type), (gst_decode_bin_class_init), (gst_decode_bin_factory_filter), (compare_ranks), (print_feature), (gst_decode_bin_init), (gst_decode_bin_dispose), (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad), (close_link), (type_found), (gst_decode_bin_set_property), (gst_decode_bin_get_property), (gst_decode_bin_change_state), (plugin_init): * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type), (gst_play_base_bin_class_init), (gst_play_base_bin_init), (gst_play_base_bin_dispose), (queue_overrun), (gen_preroll_element), (remove_prerolls), (no_more_pads), (new_stream), (setup_source), (gst_play_base_bin_set_property), (gst_play_base_bin_get_property), (play_base_eos), (gst_play_base_bin_change_state), (gst_play_base_bin_add_element), (gst_play_base_bin_remove_element), (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream), (gst_play_base_bin_unlink_stream), (gst_play_base_bin_get_streaminfo): * gst/playback/gstplaybasebin.h: * gst/playback/gstplaybin.c: (gst_play_bin_get_type), (gst_play_bin_class_init), (gst_play_bin_init), (gst_play_bin_dispose), (gst_play_bin_set_property), (gst_play_bin_get_property), (gen_video_element), (gen_audio_element), (remove_sinks), (setup_sinks), (gst_play_bin_change_state), (gst_play_bin_get_event_masks), (gst_play_bin_send_event), (gst_play_bin_get_formats), (gst_play_bin_convert), (gst_play_bin_get_query_types), (gst_play_bin_query), (plugin_init): * gst/playback/test4.c: (main): More fixes on reusing of the element.
Diffstat (limited to 'gst/playback/gstplaybasebin.h')
-rw-r--r--gst/playback/gstplaybasebin.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/playback/gstplaybasebin.h b/gst/playback/gstplaybasebin.h
index f23850861..f03b194c7 100644
--- a/gst/playback/gstplaybasebin.h
+++ b/gst/playback/gstplaybasebin.h
@@ -42,11 +42,14 @@ struct _GstPlayBaseBin {
gboolean threaded;
GMutex *preroll_lock;
GCond *preroll_cond;
+ GList *preroll_elems;
/* internal thread */
GstElement *thread;
gchar *uri;
GstElement *source;
+ GstElement *decoder;
+ gboolean need_rebuild;
gint nstreams;
GList *streaminfo;