splitmuxsink: Allow time and bytes to reach their respective thresholds
[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
59   GstClockTime total_duration;
60   GstSegment play_segment;
61 };
62
63 struct _GstSplitMuxSrcClass
64 {
65   GstBinClass parent_class;
66 };
67
68 GType splitmux_src_pad_get_type (void);
69 #define SPLITMUX_TYPE_SRC_PAD splitmux_src_pad_get_type()
70 #define SPLITMUX_SRC_PAD_CAST(p) ((SplitMuxSrcPad *)(p))
71 #define SPLITMUX_SRC_PAD(obj) \
72   (G_TYPE_CHECK_INSTANCE_CAST((obj),SPLITMUX_TYPE_SRC_PAD,SplitMuxSrcPad))
73
74 struct _SplitMuxSrcPad
75 {
76   GstPad parent;
77
78   guint cur_part;
79   GstSplitMuxPartReader *reader;
80   GstPad *part_pad;
81
82   GstSegment segment;
83
84   gboolean set_next_discont;
85   gboolean clear_next_discont;
86
87   gboolean sent_stream_start;
88   gboolean sent_caps;
89   gboolean sent_segment;
90 };
91
92 struct _SplitMuxSrcPadClass
93 {
94   GstPadClass parent;
95 };
96
97 GType gst_splitmux_src_get_type (void);
98 gboolean register_splitmuxsrc (GstPlugin * plugin);
99
100 #define SPLITMUX_SRC_LOCK(s) g_mutex_lock(&(s)->lock)
101 #define SPLITMUX_SRC_UNLOCK(s) g_mutex_unlock(&(s)->lock)
102
103 #define SPLITMUX_SRC_PADS_LOCK(s) g_mutex_lock(&(s)->pads_lock)
104 #define SPLITMUX_SRC_PADS_UNLOCK(s) g_mutex_unlock(&(s)->pads_lock)
105
106 G_END_DECLS
107
108 #endif /* __GST_SPLITMUX_SRC_H__ */