splitmuxsink: Don't leak old muxer/sink in async mode
[platform/upstream/gst-plugins-good.git] / gst / multifile / gstsplitmuxsrc.h
1 /* GStreamer Split Muxed File Source
2  * Copyright (C) 2014 Jan Schmidt <jan@centricular.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 #ifndef __GST_SPLITMUX_SRC_H__
20 #define __GST_SPLITMUX_SRC_H__
21
22 #include <gst/gst.h>
23
24 #include "gstsplitmuxpartreader.h"
25
26 G_BEGIN_DECLS
27
28 #define GST_TYPE_SPLITMUX_SRC \
29   (gst_splitmux_src_get_type())
30 #define GST_SPLITMUX_SRC(obj) \
31   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SPLITMUX_SRC,GstSplitMuxSrc))
32 #define GST_SPLITMUX_SRC_CLASS(klass) \
33   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SPLITMUX_SRC,GstSplitMuxSrcClass))
34 #define GST_IS_SPLITMUX_SRC(obj) \
35   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SPLITMUX_SRC))
36 #define GST_IS_SPLITMUX_SRC_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SPLITMUX_SRC))
38
39 typedef struct _GstSplitMuxSrc GstSplitMuxSrc;
40 typedef struct _GstSplitMuxSrcClass GstSplitMuxSrcClass;
41
42 struct _GstSplitMuxSrc
43 {
44   GstBin parent;
45
46   GMutex lock;
47   gboolean     running;
48
49   gchar       *location;  /* OBJECT_LOCK */
50
51   GstSplitMuxPartReader **parts;
52   guint        num_parts;
53   guint        cur_part;
54
55   gboolean pads_complete;
56   GMutex pads_lock;
57   GList  *pads; /* pads_lock */
58   guint n_pads;
59   guint n_notlinked;
60
61   GstClockTime total_duration;
62   GstSegment play_segment;
63   guint32 segment_seqnum;
64 };
65
66 struct _GstSplitMuxSrcClass
67 {
68   GstBinClass parent_class;
69 };
70
71 GType splitmux_src_pad_get_type (void);
72 #define SPLITMUX_TYPE_SRC_PAD splitmux_src_pad_get_type()
73 #define SPLITMUX_SRC_PAD_CAST(p) ((SplitMuxSrcPad *)(p))
74 #define SPLITMUX_SRC_PAD(obj) \
75   (G_TYPE_CHECK_INSTANCE_CAST((obj),SPLITMUX_TYPE_SRC_PAD,SplitMuxSrcPad))
76
77 struct _SplitMuxSrcPad
78 {
79   GstPad parent;
80
81   guint cur_part;
82   GstSplitMuxPartReader *reader;
83   GstPad *part_pad;
84
85   GstSegment segment;
86
87   gboolean set_next_discont;
88   gboolean clear_next_discont;
89
90   gboolean sent_stream_start;
91   gboolean sent_caps;
92   gboolean sent_segment;
93 };
94
95 struct _SplitMuxSrcPadClass
96 {
97   GstPadClass parent;
98 };
99
100 GType gst_splitmux_src_get_type (void);
101 gboolean register_splitmuxsrc (GstPlugin * plugin);
102
103 #define SPLITMUX_SRC_LOCK(s) g_mutex_lock(&(s)->lock)
104 #define SPLITMUX_SRC_UNLOCK(s) g_mutex_unlock(&(s)->lock)
105
106 #define SPLITMUX_SRC_PADS_LOCK(s) g_mutex_lock(&(s)->pads_lock)
107 #define SPLITMUX_SRC_PADS_UNLOCK(s) g_mutex_unlock(&(s)->pads_lock)
108
109 G_END_DECLS
110
111 #endif /* __GST_SPLITMUX_SRC_H__ */