upload tizen1.0 source
[framework/multimedia/gst-plugins-good0.10.git] / gst / isomp4 / gstqtmux.h
1 /* Quicktime muxer plugin for GStreamer
2  * Copyright (C) 2008-2010 Thiago Santos <thiagoss@embedded.ufcg.edu.br>
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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 /*
20  * Unless otherwise indicated, Source Code is licensed under MIT license.
21  * See further explanation attached in License Statement (distributed in the file
22  * LICENSE).
23  *
24  * Permission is hereby granted, free of charge, to any person obtaining a copy of
25  * this software and associated documentation files (the "Software"), to deal in
26  * the Software without restriction, including without limitation the rights to
27  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
28  * of the Software, and to permit persons to whom the Software is furnished to do
29  * so, subject to the following conditions:
30  *
31  * The above copyright notice and this permission notice shall be included in all
32  * copies or substantial portions of the Software.
33  *
34  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
35  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
37  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
38  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
39  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
40  * SOFTWARE.
41  */
42
43 #ifndef __GST_QT_MUX_H__
44 #define __GST_QT_MUX_H__
45
46 #include <gst/gst.h>
47 #include <gst/base/gstcollectpads.h>
48
49 #include "fourcc.h"
50 #include "atoms.h"
51 #include "atomsrecovery.h"
52 #include "gstqtmuxmap.h"
53
54 G_BEGIN_DECLS
55
56 #define GST_TYPE_QT_MUX (gst_qt_mux_get_type())
57 #define GST_QT_MUX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_QT_MUX, GstQTMux))
58 #define GST_QT_MUX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_QT_MUX, GstQTMux))
59 #define GST_IS_QT_MUX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_QT_MUX))
60 #define GST_IS_QT_MUX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_QT_MUX))
61 #define GST_QT_MUX_CAST(obj) ((GstQTMux*)(obj))
62
63
64 typedef struct _GstQTMux GstQTMux;
65 typedef struct _GstQTMuxClass GstQTMuxClass;
66 typedef struct _GstQTPad GstQTPad;
67
68 /*
69  * GstQTPadPrepareBufferFunc
70  *
71  * Receives a buffer (takes ref) and returns a new buffer that should
72  * replace the passed one.
73  *
74  * Useful for when the pad/datatype needs some manipulation before
75  * being muxed. (Originally added for image/x-jpc support, for which buffers
76  * need to be wrapped into a isom box)
77  */
78 typedef GstBuffer * (*GstQTPadPrepareBufferFunc) (GstQTPad * pad,
79     GstBuffer * buf, GstQTMux * qtmux);
80
81 #define QTMUX_NO_OF_TS   10
82
83 struct _GstQTPad
84 {
85   GstCollectData collect;       /* we extend the CollectData */
86
87   /* fourcc id of stream */
88   guint32 fourcc;
89   /* whether using format that have out of order buffers */
90   gboolean is_out_of_order;
91   /* whether upstream provides valid PTS data */
92   gboolean have_dts;
93   /* if not 0, track with constant sized samples, e.g. raw audio */
94   guint sample_size;
95   /* make sync table entry */
96   gboolean sync;
97   /* bitrates */
98   guint32 avg_bitrate, max_bitrate;
99
100   GstBuffer *last_buf;
101   /* dts of last_buf */
102   GstClockTime last_dts;
103
104   /* store the first timestamp for comparing with other streams and
105    * know if there are late streams */
106   GstClockTime first_ts;
107   GstClockTime ts_entries[QTMUX_NO_OF_TS + 2];
108   guint ts_n_entries;
109   GstBuffer *buf_entries[QTMUX_NO_OF_TS + 2];
110   guint buf_head;
111   guint buf_tail;
112
113   /* all the atom and chunk book-keeping is delegated here
114    * unowned/uncounted reference, parent MOOV owns */
115   AtomTRAK *trak;
116   /* fragmented support */
117   /* meta data book-keeping delegated here */
118   AtomTRAF *traf;
119   /* fragment buffers */
120   ATOM_ARRAY (GstBuffer *) fragment_buffers;
121   /* running fragment duration */
122   gint64 fragment_duration;
123   /* optional fragment index book-keeping */
124   AtomTFRA *tfra;
125
126   /* if nothing is set, it won't be called */
127   GstQTPadPrepareBufferFunc prepare_buf_func;
128 };
129
130 typedef enum _GstQTMuxState
131 {
132   GST_QT_MUX_STATE_NONE,
133   GST_QT_MUX_STATE_STARTED,
134   GST_QT_MUX_STATE_DATA,
135   GST_QT_MUX_STATE_EOS
136 } GstQTMuxState;
137
138 struct _GstQTMux
139 {
140   GstElement element;
141
142   GstPad *srcpad;
143   GstCollectPads *collect;
144   GSList *sinkpads;
145
146   /* state */
147   GstQTMuxState state;
148
149   /* size of header (prefix, atoms (ftyp, mdat)) */
150   guint64 header_size;
151   /* accumulated size of raw media data (a priori not including mdat header) */
152   guint64 mdat_size;
153   /* position of mdat atom (for later updating) */
154   guint64 mdat_pos;
155
156   /* keep track of the largest chunk to fine-tune brands */
157   GstClockTime longest_chunk;
158
159   /* atom helper objects */
160   AtomsContext *context;
161   AtomFTYP *ftyp;
162   AtomMOOV *moov;
163   GSList *extra_atoms; /* list of extra top-level atoms (e.g. UUID for xmp)
164                         * Stored as AtomInfo structs */
165
166   /* fragmented file index */
167   AtomMFRA *mfra;
168
169   /* fast start */
170   FILE *fast_start_file;
171
172   /* moov recovery */
173   FILE *moov_recov_file;
174
175   /* fragment sequence */
176   guint32 fragment_sequence;
177
178   /* properties */
179   guint32 timescale;
180   guint32 trak_timescale;
181   AtomsTreeFlavor flavor;
182   gboolean fast_start;
183   gboolean guess_pts;
184   gint dts_method;
185   gchar *fast_start_file_path;
186   gchar *moov_recov_file_path;
187   guint32 fragment_duration;
188   gboolean streamable;
189
190   /* for collect pads event handling function */
191   GstPadEventFunction collect_event;
192
193   /* for request pad naming */
194   guint video_pads, audio_pads;
195 };
196
197 struct _GstQTMuxClass
198 {
199   GstElementClass parent_class;
200
201   GstQTMuxFormat format;
202 };
203
204 /* type register helper struct */
205 typedef struct _GstQTMuxClassParams
206 {
207   GstQTMuxFormatProp *prop;
208   GstCaps *src_caps;
209   GstCaps *video_sink_caps;
210   GstCaps *audio_sink_caps;
211 } GstQTMuxClassParams;
212
213 #define GST_QT_MUX_PARAMS_QDATA g_quark_from_static_string("qt-mux-params")
214
215 GType gst_qt_mux_get_type (void);
216 gboolean gst_qt_mux_register (GstPlugin * plugin);
217
218 /* FIXME: ideally classification tag should be added and
219  * registered in gstreamer core gsttaglist
220  *
221  * this tag is a string in the format: entityfourcc://table_num/content
222  * FIXME Shouldn't we add a field for 'language'?
223  */
224 #define GST_TAG_3GP_CLASSIFICATION "classification"
225
226 G_END_DECLS
227
228 #endif /* __GST_QT_MUX_H__ */