Bump GLib requirement to >= 2.62
[platform/upstream/gstreamer.git] / subprojects / gst-plugins-bad / gst / mpegtsdemux / mpegtsbase.c
1 /*
2  * mpegtsbase.c -
3  * Copyright (C) 2007 Alessandro Decina
4  *               2010 Edward Hervey
5  * Copyright (C) 2011, Hewlett-Packard Development Company, L.P.
6  *  Author: Youness Alaoui <youness.alaoui@collabora.co.uk>, Collabora Ltd.
7  *  Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>, Collabora Ltd.
8  *  Author: Edward Hervey <bilboed@bilboed.com>, Collabora Ltd.
9  *
10  * Authors:
11  *   Alessandro Decina <alessandro@nnva.org>
12  *   Zaheer Abbas Merali <zaheerabbas at merali dot org>
13  *   Edward Hervey <edward.hervey@collabora.co.uk>
14  *
15  * This library is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU Library General Public
17  * License as published by the Free Software Foundation; either
18  * version 2 of the License, or (at your option) any later version.
19  *
20  * This library is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23  * Library General Public License for more details.
24  *
25  * You should have received a copy of the GNU Library General Public
26  * License along with this library; if not, write to the
27  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
28  * Boston, MA 02110-1301, USA.
29  */
30
31 #ifdef HAVE_CONFIG_H
32 #include "config.h"
33 #endif
34
35 #include <stdlib.h>
36 #include <string.h>
37
38 #include <glib.h>
39
40 #include <glib/gi18n-lib.h>
41 #include "mpegtsbase.h"
42 #include "gstmpegdesc.h"
43
44 #define RUNNING_STATUS_RUNNING 4
45
46 GST_DEBUG_CATEGORY_STATIC (mpegts_base_debug);
47 #define GST_CAT_DEFAULT mpegts_base_debug
48
49 static GQuark QUARK_PROGRAMS;
50 static GQuark QUARK_PROGRAM_NUMBER;
51 static GQuark QUARK_PID;
52 static GQuark QUARK_PCR_PID;
53 static GQuark QUARK_STREAMS;
54 static GQuark QUARK_STREAM_TYPE;
55
56 static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
57     GST_PAD_SINK,
58     GST_PAD_ALWAYS,
59     GST_STATIC_CAPS ("video/mpegts, " "systemstream = (boolean) true ")
60     );
61
62 #define DEFAULT_IGNORE_PCR FALSE
63
64 enum
65 {
66   PROP_0,
67   PROP_PARSE_PRIVATE_SECTIONS,
68   PROP_IGNORE_PCR,
69   /* FILL ME */
70 };
71
72 static void mpegts_base_dispose (GObject * object);
73 static void mpegts_base_finalize (GObject * object);
74 static void mpegts_base_set_property (GObject * object, guint prop_id,
75     const GValue * value, GParamSpec * pspec);
76 static void mpegts_base_get_property (GObject * object, guint prop_id,
77     GValue * value, GParamSpec * pspec);
78
79 static void mpegts_base_free_program (MpegTSBaseProgram * program);
80 static void mpegts_base_deactivate_program (MpegTSBase * base,
81     MpegTSBaseProgram * program);
82 static gboolean mpegts_base_sink_activate (GstPad * pad, GstObject * parent);
83 static gboolean mpegts_base_sink_activate_mode (GstPad * pad,
84     GstObject * parent, GstPadMode mode, gboolean active);
85 static GstFlowReturn mpegts_base_chain (GstPad * pad, GstObject * parent,
86     GstBuffer * buf);
87 static gboolean mpegts_base_sink_event (GstPad * pad, GstObject * parent,
88     GstEvent * event);
89 static gboolean mpegts_base_sink_query (GstPad * pad, GstObject * parent,
90     GstQuery * query);
91 static gboolean mpegts_base_default_sink_query (MpegTSBase * base,
92     GstQuery * query);
93 static GstStateChangeReturn mpegts_base_change_state (GstElement * element,
94     GstStateChange transition);
95 static gboolean mpegts_base_get_tags_from_eit (MpegTSBase * base,
96     GstMpegtsSection * section);
97 static gboolean mpegts_base_parse_atsc_mgt (MpegTSBase * base,
98     GstMpegtsSection * section);
99 static void remove_each_program (MpegTSBaseProgram * program,
100     MpegTSBase * base);
101
102 static void
103 _extra_init (void)
104 {
105   QUARK_PROGRAMS = g_quark_from_string ("programs");
106   QUARK_PROGRAM_NUMBER = g_quark_from_string ("program-number");
107   QUARK_PID = g_quark_from_string ("pid");
108   QUARK_PCR_PID = g_quark_from_string ("pcr-pid");
109   QUARK_STREAMS = g_quark_from_string ("streams");
110   QUARK_STREAM_TYPE = g_quark_from_string ("stream-type");
111   GST_DEBUG_CATEGORY_INIT (mpegts_base_debug, "mpegtsbase", 0,
112       "MPEG transport stream base class");
113   gst_mpegts_initialize ();
114 }
115
116 #define mpegts_base_parent_class parent_class
117 G_DEFINE_TYPE_WITH_CODE (MpegTSBase, mpegts_base, GST_TYPE_ELEMENT,
118     _extra_init ());
119
120 /* Default implementation is that mpegtsbase can remove any program */
121 static gboolean
122 mpegts_base_can_remove_program (MpegTSBase * base, MpegTSBaseProgram * program)
123 {
124   return TRUE;
125 }
126
127 static void
128 mpegts_base_class_init (MpegTSBaseClass * klass)
129 {
130   GObjectClass *gobject_class;
131   GstElementClass *element_class;
132
133   klass->can_remove_program = mpegts_base_can_remove_program;
134
135   element_class = GST_ELEMENT_CLASS (klass);
136   element_class->change_state = mpegts_base_change_state;
137
138   gst_element_class_add_static_pad_template (element_class, &sink_template);
139
140   gobject_class = G_OBJECT_CLASS (klass);
141   gobject_class->dispose = mpegts_base_dispose;
142   gobject_class->finalize = mpegts_base_finalize;
143   gobject_class->set_property = mpegts_base_set_property;
144   gobject_class->get_property = mpegts_base_get_property;
145
146   g_object_class_install_property (gobject_class, PROP_PARSE_PRIVATE_SECTIONS,
147       g_param_spec_boolean ("parse-private-sections", "Parse private sections",
148           "Parse private sections", FALSE,
149           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
150
151   /**
152    * GstMpegtsBase:ignore-pcr:
153    *
154    * Ignore PCR (Program Clock Reference) data from MPEG-TS PSI.
155    * This can help with playback of some broken files.
156    *
157    * Since: 1.18
158    */
159   g_object_class_install_property (gobject_class, PROP_IGNORE_PCR,
160       g_param_spec_boolean ("ignore-pcr", "Ignore PCR stream for timing",
161           "Ignore PCR stream for timing", DEFAULT_IGNORE_PCR,
162           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
163
164   klass->sink_query = GST_DEBUG_FUNCPTR (mpegts_base_default_sink_query);
165   klass->handle_psi = NULL;
166
167   gst_type_mark_as_plugin_api (GST_TYPE_MPEGTS_BASE, 0);
168 }
169
170 static void
171 mpegts_base_set_property (GObject * object, guint prop_id,
172     const GValue * value, GParamSpec * pspec)
173 {
174   MpegTSBase *base = GST_MPEGTS_BASE (object);
175
176   switch (prop_id) {
177     case PROP_PARSE_PRIVATE_SECTIONS:
178       base->parse_private_sections = g_value_get_boolean (value);
179       break;
180     case PROP_IGNORE_PCR:
181       base->ignore_pcr = g_value_get_boolean (value);
182       break;
183     default:
184       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
185   }
186 }
187
188 static void
189 mpegts_base_get_property (GObject * object, guint prop_id,
190     GValue * value, GParamSpec * pspec)
191 {
192   MpegTSBase *base = GST_MPEGTS_BASE (object);
193
194   switch (prop_id) {
195     case PROP_PARSE_PRIVATE_SECTIONS:
196       g_value_set_boolean (value, base->parse_private_sections);
197       break;
198     case PROP_IGNORE_PCR:
199       g_value_set_boolean (value, base->ignore_pcr);
200       break;
201     default:
202       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
203   }
204 }
205
206
207 static void
208 mpegts_base_reset (MpegTSBase * base)
209 {
210   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
211
212   mpegts_packetizer_clear (base->packetizer);
213   memset (base->is_pes, 0, 1024);
214   memset (base->known_psi, 0, 1024);
215
216   /* FIXME : Actually these are not *always* know SI streams
217    * depending on the variant of mpeg-ts being used. */
218
219   /* Known PIDs : PAT, TSDT, IPMP CIT */
220   MPEGTS_BIT_SET (base->known_psi, 0);
221   MPEGTS_BIT_SET (base->known_psi, 2);
222   MPEGTS_BIT_SET (base->known_psi, 3);
223   /* TDT, TOT, ST */
224   MPEGTS_BIT_SET (base->known_psi, 0x14);
225   /* network synchronization */
226   MPEGTS_BIT_SET (base->known_psi, 0x15);
227
228   /* ATSC */
229   MPEGTS_BIT_SET (base->known_psi, 0x1ffb);
230
231   if (base->pat) {
232     g_ptr_array_unref (base->pat);
233     base->pat = NULL;
234   }
235
236   gst_segment_init (&base->segment, GST_FORMAT_UNDEFINED);
237   gst_segment_init (&base->out_segment, GST_FORMAT_UNDEFINED);
238   base->last_seek_seqnum = GST_SEQNUM_INVALID;
239
240   base->mode = BASE_MODE_STREAMING;
241   base->seen_pat = FALSE;
242   base->seek_offset = -1;
243
244   g_ptr_array_foreach (base->programs, (GFunc) remove_each_program, base);
245   g_ptr_array_remove_range (base->programs, 0, base->programs->len);
246
247   base->streams_aware = GST_OBJECT_PARENT (base)
248       && GST_OBJECT_FLAG_IS_SET (GST_OBJECT_PARENT (base),
249       GST_BIN_FLAG_STREAMS_AWARE);
250   GST_DEBUG_OBJECT (base, "Streams aware : %d", base->streams_aware);
251
252   gst_event_replace (&base->seek_event, NULL);
253
254   if (klass->reset)
255     klass->reset (base);
256 }
257
258 static void
259 mpegts_base_init (MpegTSBase * base)
260 {
261   base->sinkpad = gst_pad_new_from_static_template (&sink_template, "sink");
262   gst_pad_set_activate_function (base->sinkpad, mpegts_base_sink_activate);
263   gst_pad_set_activatemode_function (base->sinkpad,
264       mpegts_base_sink_activate_mode);
265   gst_pad_set_chain_function (base->sinkpad, mpegts_base_chain);
266   gst_pad_set_event_function (base->sinkpad, mpegts_base_sink_event);
267   gst_pad_set_query_function (base->sinkpad, mpegts_base_sink_query);
268   gst_element_add_pad (GST_ELEMENT (base), base->sinkpad);
269
270   base->disposed = FALSE;
271   base->packetizer = mpegts_packetizer_new ();
272   base->programs =
273       g_ptr_array_new_full (16, (GDestroyNotify) mpegts_base_free_program);
274
275   base->parse_private_sections = FALSE;
276   base->is_pes = g_new0 (guint8, 1024);
277   base->known_psi = g_new0 (guint8, 1024);
278   base->program_size = sizeof (MpegTSBaseProgram);
279   base->stream_size = sizeof (MpegTSBaseStream);
280
281   base->push_data = TRUE;
282   base->push_section = TRUE;
283   base->ignore_pcr = DEFAULT_IGNORE_PCR;
284
285   mpegts_base_reset (base);
286 }
287
288 static void
289 mpegts_base_dispose (GObject * object)
290 {
291   MpegTSBase *base = GST_MPEGTS_BASE (object);
292
293   if (!base->disposed) {
294     g_object_unref (base->packetizer);
295     base->disposed = TRUE;
296     g_free (base->known_psi);
297     g_free (base->is_pes);
298   }
299
300   if (G_OBJECT_CLASS (parent_class)->dispose)
301     G_OBJECT_CLASS (parent_class)->dispose (object);
302 }
303
304 static void
305 mpegts_base_finalize (GObject * object)
306 {
307   MpegTSBase *base = GST_MPEGTS_BASE (object);
308
309   if (base->pat) {
310     g_ptr_array_unref (base->pat);
311     base->pat = NULL;
312   }
313   g_ptr_array_free (base->programs, TRUE);
314
315   gst_event_replace (&base->seek_event, NULL);
316
317   if (G_OBJECT_CLASS (parent_class)->finalize)
318     G_OBJECT_CLASS (parent_class)->finalize (object);
319 }
320
321
322 /* returns NULL if no matching descriptor found *
323  * otherwise returns a descriptor that needs to *
324  * be freed */
325 const GstMpegtsDescriptor *
326 mpegts_get_descriptor_from_stream (MpegTSBaseStream * stream, guint8 tag)
327 {
328   GstMpegtsPMTStream *pmt = stream->stream;
329
330   GST_DEBUG ("Searching for tag 0x%02x in stream 0x%04x (stream_type 0x%02x)",
331       tag, stream->pid, stream->stream_type);
332
333   return gst_mpegts_find_descriptor (pmt->descriptors, tag);
334 }
335
336 const GstMpegtsDescriptor *
337 mpegts_get_descriptor_from_stream_with_extension (MpegTSBaseStream * stream,
338     guint8 tag, guint8 tag_extension)
339 {
340   GstMpegtsPMTStream *pmt = stream->stream;
341
342   GST_DEBUG ("Searching for tag 0x%02x tag_extension 0x%02x "
343       "in stream 0x%04x (stream_type 0x%02x)",
344       tag, tag_extension, stream->pid, stream->stream_type);
345
346   return gst_mpegts_find_descriptor_with_extension (pmt->descriptors, tag,
347       tag_extension);
348 }
349
350 typedef struct
351 {
352   gboolean res;
353   guint16 pid;
354 } PIDLookup;
355
356 static void
357 foreach_pid_in_program (MpegTSBaseProgram * program, PIDLookup * lookup)
358 {
359   if (!program->active)
360     return;
361   if (program->streams[lookup->pid])
362     lookup->res = TRUE;
363 }
364
365 static gboolean
366 mpegts_pid_in_active_programs (MpegTSBase * base, guint16 pid)
367 {
368   PIDLookup lookup;
369
370   lookup.res = FALSE;
371   lookup.pid = pid;
372   g_ptr_array_foreach (base->programs, (GFunc) foreach_pid_in_program, &lookup);
373
374   return lookup.res;
375 }
376
377 /* returns NULL if no matching descriptor found *
378  * otherwise returns a descriptor that needs to *
379  * be freed */
380 const GstMpegtsDescriptor *
381 mpegts_get_descriptor_from_program (MpegTSBaseProgram * program, guint8 tag)
382 {
383   const GstMpegtsPMT *pmt = program->pmt;
384
385   return gst_mpegts_find_descriptor (pmt->descriptors, tag);
386 }
387
388 static gchar *
389 _get_upstream_id (GstElement * element, GstPad * sinkpad)
390 {
391   gchar *upstream_id = gst_pad_get_stream_id (sinkpad);
392
393   if (!upstream_id) {
394     /* Try to create one from the upstream URI, else use a randome number */
395     GstQuery *query;
396     gchar *uri = NULL;
397
398     /* Try to generate one from the URI query and
399      * if it fails take a random number instead */
400     query = gst_query_new_uri ();
401     if (gst_element_query (element, query)) {
402       gst_query_parse_uri (query, &uri);
403     }
404
405     if (uri) {
406       GChecksum *cs;
407
408       /* And then generate an SHA256 sum of the URI */
409       cs = g_checksum_new (G_CHECKSUM_SHA256);
410       g_checksum_update (cs, (const guchar *) uri, strlen (uri));
411       g_free (uri);
412       upstream_id = g_strdup (g_checksum_get_string (cs));
413       g_checksum_free (cs);
414     } else {
415       /* Just get some random number if the URI query fails */
416       GST_FIXME_OBJECT (element, "Creating random stream-id, consider "
417           "implementing a deterministic way of creating a stream-id");
418       upstream_id =
419           g_strdup_printf ("%08x%08x%08x%08x", g_random_int (), g_random_int (),
420           g_random_int (), g_random_int ());
421     }
422
423     gst_query_unref (query);
424   }
425   return upstream_id;
426 }
427
428 static MpegTSBaseProgram *
429 mpegts_base_new_program (MpegTSBase * base,
430     gint program_number, guint16 pmt_pid)
431 {
432   MpegTSBaseProgram *program;
433   gchar *upstream_id, *stream_id;
434
435   GST_DEBUG_OBJECT (base, "program_number : %d, pmt_pid : 0x%04x",
436       program_number, pmt_pid);
437
438   program = g_malloc0 (base->program_size);
439   program->program_number = program_number;
440   program->pmt_pid = pmt_pid;
441   program->pcr_pid = G_MAXUINT16;
442   program->streams = g_new0 (MpegTSBaseStream *, 0x2000);
443   program->patcount = 0;
444
445   upstream_id = _get_upstream_id ((GstElement *) base, base->sinkpad);
446   stream_id = g_strdup_printf ("%s:%d", upstream_id, program_number);
447   program->collection = gst_stream_collection_new (stream_id);
448   g_free (stream_id);
449   g_free (upstream_id);
450
451   return program;
452 }
453
454 MpegTSBaseProgram *
455 mpegts_base_add_program (MpegTSBase * base,
456     gint program_number, guint16 pmt_pid)
457 {
458   MpegTSBaseProgram *program;
459
460   GST_DEBUG_OBJECT (base, "program_number : %d, pmt_pid : 0x%04x",
461       program_number, pmt_pid);
462
463   program = mpegts_base_new_program (base, program_number, pmt_pid);
464
465   /* Mark the PMT PID as being a known PSI PID */
466   if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->known_psi, pmt_pid))) {
467     GST_FIXME ("Refcounting. Setting twice a PID (0x%04x) as known PSI",
468         pmt_pid);
469   }
470   MPEGTS_BIT_SET (base->known_psi, pmt_pid);
471
472   /* Ensure the PMT PID was not used by some PES stream */
473   if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->is_pes, pmt_pid))) {
474     GST_DEBUG ("New program PMT PID was previously used by a PES stream");
475     MPEGTS_BIT_UNSET (base->is_pes, pmt_pid);
476   }
477
478
479   g_ptr_array_add (base->programs, program);
480
481   return program;
482 }
483
484 MpegTSBaseProgram *
485 mpegts_base_get_program (MpegTSBase * base, gint program_number)
486 {
487   guint i;
488
489   for (i = 0; i < base->programs->len; i++) {
490     MpegTSBaseProgram *program = g_ptr_array_index (base->programs, i);
491     if (program->program_number == program_number)
492       return program;
493   }
494   return NULL;
495 }
496
497 static MpegTSBaseProgram *
498 mpegts_base_steal_program (MpegTSBase * base, gint program_number)
499 {
500   guint i;
501
502   for (i = 0; i < base->programs->len; i++) {
503     MpegTSBaseProgram *program = g_ptr_array_index (base->programs, i);
504     if (program->program_number == program_number) {
505       return g_ptr_array_steal_index (base->programs, i);
506     }
507   }
508
509   return NULL;
510 }
511
512 static void
513 mpegts_base_free_stream (MpegTSBaseStream * stream)
514 {
515   if (stream->stream_object)
516     gst_object_unref (stream->stream_object);
517   if (stream->stream_id)
518     g_free (stream->stream_id);
519   g_free (stream);
520 }
521
522 static void
523 mpegts_base_free_program (MpegTSBaseProgram * program)
524 {
525   GList *tmp;
526
527   if (program->recycle) {
528     program->recycle = FALSE;
529     return;
530   }
531
532   if (program->pmt) {
533     gst_mpegts_section_unref (program->section);
534     program->pmt = NULL;
535   }
536
537   /* FIXME FIXME FIXME FREE STREAM OBJECT ! */
538   for (tmp = program->stream_list; tmp; tmp = tmp->next)
539     mpegts_base_free_stream ((MpegTSBaseStream *) tmp->data);
540
541   if (program->stream_list)
542     g_list_free (program->stream_list);
543
544   g_free (program->streams);
545
546   if (program->tags)
547     gst_tag_list_unref (program->tags);
548   if (program->collection)
549     gst_object_unref (program->collection);
550
551   g_free (program);
552 }
553
554 void
555 mpegts_base_deactivate_and_free_program (MpegTSBase * base,
556     MpegTSBaseProgram * program)
557 {
558   GST_DEBUG_OBJECT (base, "program_number : %d", program->program_number);
559
560   mpegts_base_deactivate_program (base, program);
561   mpegts_base_free_program (program);
562 }
563
564 static void
565 mpegts_base_remove_program (MpegTSBase * base, MpegTSBaseProgram * program)
566 {
567   GST_DEBUG_OBJECT (base, "program_number : %d", program->program_number);
568
569   g_ptr_array_remove (base->programs, program);
570 }
571
572 static guint32
573 get_registration_from_descriptors (GPtrArray * descriptors)
574 {
575   const GstMpegtsDescriptor *desc;
576
577   if ((desc =
578           gst_mpegts_find_descriptor (descriptors,
579               GST_MTS_DESC_REGISTRATION))) {
580     if (G_UNLIKELY (desc->length < 4)) {
581       GST_WARNING ("Registration descriptor with length < 4. (Corrupted ?)");
582     } else
583       return GST_READ_UINT32_BE (desc->data + 2);
584   }
585
586   return 0;
587 }
588
589 static gboolean
590 find_registration_in_descriptors (GPtrArray * descriptors,
591     guint32 registration_id)
592 {
593
594   guint i, nb_desc;
595
596   if (!descriptors)
597     return FALSE;
598
599   nb_desc = descriptors->len;
600   for (i = 0; i < nb_desc; i++) {
601     GstMpegtsDescriptor *desc = g_ptr_array_index (descriptors, i);
602     if (desc->tag == GST_MTS_DESC_REGISTRATION) {
603       guint32 reg_desc = GST_READ_UINT32_BE (desc->data + 2);
604       if (reg_desc == registration_id)
605         return TRUE;
606     }
607   }
608   return FALSE;
609 }
610
611 static MpegTSBaseStream *
612 mpegts_base_program_add_stream (MpegTSBase * base,
613     MpegTSBaseProgram * program, guint16 pid, guint8 stream_type,
614     GstMpegtsPMTStream * stream)
615 {
616   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
617   MpegTSBaseStream *bstream;
618
619   GST_DEBUG ("pid:0x%04x, stream_type:0x%03x", pid, stream_type);
620
621   /* FIXME : PID information/nature might change through time.
622    * We therefore *do* want to be able to replace an existing stream
623    * with updated information */
624   if (G_UNLIKELY (program->streams[pid])) {
625     if (stream_type != 0xff)
626       GST_WARNING ("Stream already present !");
627     return NULL;
628   }
629
630   bstream = g_malloc0 (base->stream_size);
631   bstream->stream_id =
632       g_strdup_printf ("%s/%08x",
633       gst_stream_collection_get_upstream_id (program->collection), pid);
634   bstream->pid = pid;
635   bstream->stream_type = stream_type;
636   bstream->stream = stream;
637   /* We don't yet know the stream type, subclasses will fill that */
638   bstream->stream_object = gst_stream_new (bstream->stream_id, NULL,
639       GST_STREAM_TYPE_UNKNOWN, GST_STREAM_FLAG_NONE);
640   if (stream) {
641     bstream->registration_id =
642         get_registration_from_descriptors (stream->descriptors);
643     GST_DEBUG ("PID 0x%04x, registration_id %" SAFE_FOURCC_FORMAT,
644         bstream->pid, SAFE_FOURCC_ARGS (bstream->registration_id));
645   }
646
647   program->streams[pid] = bstream;
648   program->stream_list = g_list_append (program->stream_list, bstream);
649
650   if (klass->stream_added)
651     if (klass->stream_added (base, bstream, program)) {
652       gst_stream_collection_add_stream (program->collection,
653           (GstStream *) gst_object_ref (bstream->stream_object));
654       bstream->in_collection = TRUE;
655     }
656
657
658   return bstream;
659 }
660
661 static void
662 mpegts_base_program_remove_stream (MpegTSBase * base,
663     MpegTSBaseProgram * program, guint16 pid)
664 {
665   MpegTSBaseClass *klass;
666   MpegTSBaseStream *stream = program->streams[pid];
667
668   GST_DEBUG ("pid:0x%04x", pid);
669
670   if (G_UNLIKELY (stream == NULL)) {
671     /* Can happen if the PCR PID is the same as a audio/video PID */
672     GST_DEBUG ("Stream already removed");
673     return;
674   }
675
676   klass = GST_MPEGTS_BASE_GET_CLASS (base);
677
678   /* If subclass needs it, inform it of the stream we are about to remove */
679   if (klass->stream_removed)
680     klass->stream_removed (base, stream);
681
682   program->stream_list = g_list_remove_all (program->stream_list, stream);
683   mpegts_base_free_stream (stream);
684   program->streams[pid] = NULL;
685 }
686
687 /* Check if pmtstream is already present in the program */
688 static inline gboolean
689 _stream_in_pmt (const GstMpegtsPMT * pmt, MpegTSBaseStream * stream)
690 {
691   guint i, nbstreams = pmt->streams->len;
692
693   for (i = 0; i < nbstreams; i++) {
694     GstMpegtsPMTStream *pmt_stream = g_ptr_array_index (pmt->streams, i);
695
696     if (pmt_stream->pid == stream->pid &&
697         pmt_stream->stream_type == stream->stream_type)
698       return TRUE;
699   }
700
701   return FALSE;
702 }
703
704 static inline gboolean
705 _pmt_stream_in_program (MpegTSBaseProgram * program,
706     GstMpegtsPMTStream * stream)
707 {
708   MpegTSBaseStream *old_stream = program->streams[stream->pid];
709   if (!old_stream)
710     return FALSE;
711   return old_stream->stream_type == stream->stream_type;
712 }
713
714 static gboolean
715 mpegts_base_update_program (MpegTSBase * base, MpegTSBaseProgram * program,
716     GstMpegtsSection * section, const GstMpegtsPMT * pmt)
717 {
718   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
719   const gchar *stream_id =
720       gst_stream_collection_get_upstream_id (program->collection);
721   GstStreamCollection *collection;
722   GList *tmp, *toremove;
723   guint i, nbstreams;
724
725   /* Create new collection */
726   collection = gst_stream_collection_new (stream_id);
727   gst_object_unref (program->collection);
728   program->collection = collection;
729
730   /* Replace section and pmt with the new one */
731   gst_mpegts_section_unref (program->section);
732   program->section = gst_mpegts_section_ref (section);
733   program->pmt = pmt;
734
735   /* Copy over gststream that still exist into the collection */
736   for (tmp = program->stream_list; tmp; tmp = tmp->next) {
737     MpegTSBaseStream *stream = (MpegTSBaseStream *) tmp->data;
738     if (_stream_in_pmt (pmt, stream) && stream->in_collection) {
739       gst_stream_collection_add_stream (program->collection,
740           gst_object_ref (stream->stream_object));
741     }
742   }
743
744   /* Add new streams (will also create and add gststream to the collection) */
745   nbstreams = pmt->streams->len;
746   for (i = 0; i < nbstreams; i++) {
747     GstMpegtsPMTStream *stream = g_ptr_array_index (pmt->streams, i);
748     if (!_pmt_stream_in_program (program, stream))
749       mpegts_base_program_add_stream (base, program, stream->pid,
750           stream->stream_type, stream);
751   }
752
753   /* Call subclass update */
754   if (klass->update_program)
755     klass->update_program (base, program);
756
757   /* Remove streams no longer present */
758   toremove = NULL;
759   for (tmp = program->stream_list; tmp; tmp = tmp->next) {
760     MpegTSBaseStream *stream = (MpegTSBaseStream *) tmp->data;
761     if (!_stream_in_pmt (pmt, stream))
762       toremove = g_list_prepend (toremove, stream);
763   }
764   for (tmp = toremove; tmp; tmp = tmp->next) {
765     MpegTSBaseStream *stream = (MpegTSBaseStream *) tmp->data;
766     mpegts_base_program_remove_stream (base, program, stream->pid);
767   }
768   return TRUE;
769 }
770
771
772 static gboolean
773 _stream_is_private_section (const GstMpegtsPMT * pmt,
774     GstMpegtsPMTStream * stream)
775 {
776   switch (stream->stream_type) {
777     case GST_MPEGTS_STREAM_TYPE_SCTE_DSMCC_DCB:
778     case GST_MPEGTS_STREAM_TYPE_SCTE_SIGNALING:
779     {
780       guint32 registration_id =
781           get_registration_from_descriptors (stream->descriptors);
782       /* Not a private section stream */
783       if (registration_id != DRF_ID_CUEI && registration_id != DRF_ID_ETV1)
784         return FALSE;
785     }
786     case GST_MPEGTS_STREAM_TYPE_PRIVATE_SECTIONS:
787     case GST_MPEGTS_STREAM_TYPE_MHEG:
788     case GST_MPEGTS_STREAM_TYPE_DSM_CC:
789     case GST_MPEGTS_STREAM_TYPE_DSMCC_A:
790     case GST_MPEGTS_STREAM_TYPE_DSMCC_B:
791     case GST_MPEGTS_STREAM_TYPE_DSMCC_C:
792     case GST_MPEGTS_STREAM_TYPE_DSMCC_D:
793     case GST_MPEGTS_STREAM_TYPE_SL_FLEXMUX_SECTIONS:
794     case GST_MPEGTS_STREAM_TYPE_METADATA_SECTIONS:
795       /* known PSI streams */
796       return TRUE;
797     case GST_MPEGTS_STREAM_TYPE_SCTE_SIT:
798     {
799       /* Not a private section stream */
800       if (!find_registration_in_descriptors (pmt->descriptors, DRF_ID_CUEI))
801         return FALSE;
802       return TRUE;
803     }
804     default:
805       return FALSE;
806   }
807 }
808
809 /* Return TRUE if programs are equal */
810 static gboolean
811 mpegts_base_is_same_program (MpegTSBase * base, MpegTSBaseProgram * oldprogram,
812     guint16 new_pmt_pid, const GstMpegtsPMT * new_pmt)
813 {
814   guint i, nbstreams;
815   MpegTSBaseStream *oldstream;
816   gboolean sawpcrpid = FALSE;
817
818   if (oldprogram->pmt_pid != new_pmt_pid) {
819     GST_DEBUG ("Different pmt_pid (new:0x%04x, old:0x%04x)", new_pmt_pid,
820         oldprogram->pmt_pid);
821     return FALSE;
822   }
823
824   if (!base->ignore_pcr && oldprogram->pcr_pid != new_pmt->pcr_pid) {
825     GST_DEBUG ("Different pcr_pid (new:0x%04x, old:0x%04x)",
826         new_pmt->pcr_pid, oldprogram->pcr_pid);
827     return FALSE;
828   }
829
830   /* Check the streams */
831   nbstreams = new_pmt->streams->len;
832   for (i = 0; i < nbstreams; ++i) {
833     GstMpegtsPMTStream *stream = g_ptr_array_index (new_pmt->streams, i);
834
835     oldstream = oldprogram->streams[stream->pid];
836     if (!oldstream) {
837       GST_DEBUG ("New stream 0x%04x not present in old program", stream->pid);
838       return FALSE;
839     }
840     if (oldstream->stream_type != stream->stream_type) {
841       GST_DEBUG
842           ("New stream 0x%04x has a different stream type (new:%d, old:%d)",
843           stream->pid, stream->stream_type, oldstream->stream_type);
844       return FALSE;
845     }
846     if (stream->pid == oldprogram->pcr_pid)
847       sawpcrpid = TRUE;
848   }
849
850   /* If the pcr is not shared with an existing stream, we'll have one extra stream */
851   if (!sawpcrpid)
852     nbstreams += 1;
853
854   if (nbstreams != g_list_length (oldprogram->stream_list)) {
855     GST_DEBUG ("Different number of streams (new:%d, old:%d)",
856         nbstreams, g_list_length (oldprogram->stream_list));
857     return FALSE;
858   }
859
860   GST_DEBUG ("Programs are equal");
861   return TRUE;
862 }
863
864 /* Return TRUE if program is an update
865  *
866  * A program is equal if:
867  * * The program number is the same (will be if it enters this function)
868  * * AND The PMT PID is equal to the old one
869  * * AND It contains at least one stream from the previous program
870  *
871  * Changes that are acceptable are therefore:
872  * * New streams appearing
873  * * Old streams going away
874  * * PCR PID changing
875  *
876  * Unclear changes:
877  * * PMT PID being changed ?
878  * * Properties of elementary stream being changed ? (new tags ? metadata ?)
879  */
880 static gboolean
881 mpegts_base_is_program_update (MpegTSBase * base,
882     MpegTSBaseProgram * oldprogram, guint16 new_pmt_pid,
883     const GstMpegtsPMT * new_pmt)
884 {
885   guint i, nbstreams;
886   MpegTSBaseStream *oldstream;
887
888   if (oldprogram->pmt_pid != new_pmt_pid) {
889     /* FIXME/CHECK: Can a program be updated by just changing its PID
890      * in the PAT ? */
891     GST_DEBUG ("Different pmt_pid (new:0x%04x, old:0x%04x)", new_pmt_pid,
892         oldprogram->pmt_pid);
893     return FALSE;
894   }
895
896   /* Check if at least one stream from the previous program is still present
897    * in the new program */
898
899   /* Check the streams */
900   nbstreams = new_pmt->streams->len;
901   for (i = 0; i < nbstreams; ++i) {
902     GstMpegtsPMTStream *stream = g_ptr_array_index (new_pmt->streams, i);
903
904     oldstream = oldprogram->streams[stream->pid];
905     if (!oldstream) {
906       GST_DEBUG ("New stream 0x%04x not present in old program", stream->pid);
907     } else if (oldstream->stream_type != stream->stream_type) {
908       GST_DEBUG
909           ("New stream 0x%04x has a different stream type (new:%d, old:%d)",
910           stream->pid, stream->stream_type, oldstream->stream_type);
911     } else if (!_stream_is_private_section (new_pmt, stream)) {
912       /* FIXME : We should actually be checking a bit deeper,
913        * especially for private streams (where the differentiation is
914        * done at the registration level) */
915       GST_DEBUG
916           ("Stream 0x%04x is identical (stream_type %d) ! Program is an update",
917           stream->pid, stream->stream_type);
918       return TRUE;
919     }
920   }
921
922   GST_DEBUG ("Program is not an update of the previous one");
923   return FALSE;
924 }
925
926 static void
927 mpegts_base_deactivate_program (MpegTSBase * base, MpegTSBaseProgram * program)
928 {
929   gint i;
930   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
931
932   if (G_UNLIKELY (program->active == FALSE))
933     return;
934
935   GST_DEBUG_OBJECT (base, "Deactivating PMT");
936
937   program->active = FALSE;
938
939   if (program->pmt) {
940     for (i = 0; i < program->pmt->streams->len; ++i) {
941       GstMpegtsPMTStream *stream = g_ptr_array_index (program->pmt->streams, i);
942
943       mpegts_base_program_remove_stream (base, program, stream->pid);
944
945       /* Only unset the is_pes/known_psi bit if the PID isn't used in any other active
946        * program */
947       if (!mpegts_pid_in_active_programs (base, stream->pid)) {
948         if (_stream_is_private_section (program->pmt, stream)) {
949           if (base->parse_private_sections)
950             MPEGTS_BIT_UNSET (base->known_psi, stream->pid);
951         } else {
952           MPEGTS_BIT_UNSET (base->is_pes, stream->pid);
953         }
954       }
955     }
956
957     /* remove pcr stream */
958     /* FIXME : This might actually be shared with another stream ? */
959     mpegts_base_program_remove_stream (base, program, program->pcr_pid);
960     if (!mpegts_pid_in_active_programs (base, program->pcr_pid))
961       MPEGTS_BIT_UNSET (base->is_pes, program->pcr_pid);
962
963     GST_DEBUG ("program stream_list is now %p", program->stream_list);
964   }
965
966   /* Inform subclasses we're deactivating this program */
967   if (klass->program_stopped)
968     klass->program_stopped (base, program);
969 }
970
971 static void
972 mpegts_base_activate_program (MpegTSBase * base, MpegTSBaseProgram * program,
973     guint16 pmt_pid, GstMpegtsSection * section, const GstMpegtsPMT * pmt,
974     gboolean initial_program)
975 {
976   guint i;
977   MpegTSBaseClass *klass;
978
979   if (G_UNLIKELY (program->active))
980     return;
981
982   GST_DEBUG ("Activating program %d", program->program_number);
983
984   /* activate new pmt */
985   if (program->section)
986     gst_mpegts_section_unref (program->section);
987   program->section = gst_mpegts_section_ref (section);
988
989   program->pmt = pmt;
990   program->pmt_pid = pmt_pid;
991   if (!base->ignore_pcr)
992     program->pcr_pid = pmt->pcr_pid;
993   else
994     program->pcr_pid = 0x1fff;
995
996   /* extract top-level registration_id if present */
997   program->registration_id =
998       get_registration_from_descriptors (pmt->descriptors);
999   GST_DEBUG ("program 0x%04x, registration_id %" SAFE_FOURCC_FORMAT,
1000       program->program_number, SAFE_FOURCC_ARGS (program->registration_id));
1001
1002   for (i = 0; i < pmt->streams->len; ++i) {
1003     GstMpegtsPMTStream *stream = g_ptr_array_index (pmt->streams, i);
1004     if (_stream_is_private_section (pmt, stream)) {
1005       if (base->parse_private_sections)
1006         MPEGTS_BIT_SET (base->known_psi, stream->pid);
1007     } else {
1008       if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->is_pes, stream->pid)))
1009         GST_FIXME
1010             ("Refcounting issue. Setting twice a PID (0x%04x) as known PES",
1011             stream->pid);
1012       if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->known_psi, stream->pid))) {
1013         GST_FIXME
1014             ("Refcounting issue. Setting a known PSI PID (0x%04x) as known PES",
1015             stream->pid);
1016         MPEGTS_BIT_UNSET (base->known_psi, stream->pid);
1017       }
1018       MPEGTS_BIT_SET (base->is_pes, stream->pid);
1019     }
1020     mpegts_base_program_add_stream (base, program,
1021         stream->pid, stream->stream_type, stream);
1022   }
1023   /* We add the PCR pid last. If that PID is already used by one of the media
1024    * streams above, no new stream will be created */
1025   mpegts_base_program_add_stream (base, program, program->pcr_pid, -1, NULL);
1026   MPEGTS_BIT_SET (base->is_pes, program->pcr_pid);
1027
1028   program->active = TRUE;
1029   program->initial_program = initial_program;
1030
1031   klass = GST_MPEGTS_BASE_GET_CLASS (base);
1032   if (klass->program_started != NULL)
1033     klass->program_started (base, program);
1034
1035   GST_DEBUG_OBJECT (base, "new pmt activated");
1036 }
1037
1038
1039 static gboolean
1040 mpegts_base_apply_pat (MpegTSBase * base, GstMpegtsSection * section)
1041 {
1042   GPtrArray *pat = gst_mpegts_section_get_pat (section);
1043   GPtrArray *old_pat;
1044   MpegTSBaseProgram *program;
1045   gint i;
1046
1047   if (G_UNLIKELY (pat == NULL))
1048     return FALSE;
1049
1050   GST_INFO_OBJECT (base, "PAT");
1051
1052   /* Applying a new PAT does two things:
1053    * * It adds the new programs to the list of programs this element handles
1054    *   and increments at the same time the number of times a program is referenced.
1055    *
1056    * * If there was a previously active PAT, It decrements the reference count
1057    *   of all program it used. If a program is no longer needed, it is removed.
1058    */
1059
1060   old_pat = base->pat;
1061   base->pat = pat;
1062
1063   GST_LOG ("Activating new Program Association Table");
1064   /* activate the new table */
1065   for (i = 0; i < pat->len; ++i) {
1066     GstMpegtsPatProgram *patp = g_ptr_array_index (pat, i);
1067
1068     GST_LOG ("Looking for program %d / 0x%04x", patp->program_number,
1069         patp->network_or_program_map_PID);
1070     program = mpegts_base_get_program (base, patp->program_number);
1071     if (program) {
1072       GST_LOG ("Program exists on pid 0x%04x", program->pmt_pid);
1073       /* If the new PMT PID clashes with an existing known PES stream, we know
1074        * it is not an update */
1075       if (MPEGTS_BIT_IS_SET (base->is_pes, patp->network_or_program_map_PID)) {
1076         GST_LOG ("Program is not an update");
1077         program =
1078             mpegts_base_add_program (base, patp->program_number,
1079             patp->network_or_program_map_PID);
1080       } else if (program->pmt_pid != patp->network_or_program_map_PID) {
1081         /* IF the program already existed, just check if the PMT PID changed */
1082         GST_LOG ("PMT is on a different PID");
1083         if (program->pmt_pid != G_MAXUINT16) {
1084           /* pmt pid changed */
1085           /* FIXME: when this happens it may still be pmt pid of another
1086            * program, so setting to False may make it go through expensive
1087            * path in is_psi unnecessarily */
1088           MPEGTS_BIT_UNSET (base->known_psi, program->pmt_pid);
1089         }
1090
1091         program->pmt_pid = patp->network_or_program_map_PID;
1092         if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->known_psi, program->pmt_pid)))
1093           GST_FIXME
1094               ("Refcounting issue. Setting twice a PMT PID (0x%04x) as know PSI",
1095               program->pmt_pid);
1096         MPEGTS_BIT_SET (base->known_psi, patp->network_or_program_map_PID);
1097       } else {
1098         GST_LOG ("Regular program update");
1099       }
1100     } else {
1101       /* Create a new program */
1102       program =
1103           mpegts_base_add_program (base, patp->program_number,
1104           patp->network_or_program_map_PID);
1105     }
1106     /* We mark this program as being referenced by one PAT */
1107     program->patcount += 1;
1108   }
1109
1110   if (old_pat) {
1111     MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1112     /* deactivate the old table */
1113     GST_LOG ("Deactivating old Program Association Table");
1114
1115     for (i = 0; i < old_pat->len; ++i) {
1116       GstMpegtsPatProgram *patp = g_ptr_array_index (old_pat, i);
1117
1118       program = mpegts_base_get_program (base, patp->program_number);
1119       if (G_UNLIKELY (program == NULL)) {
1120         GST_DEBUG_OBJECT (base, "broken PAT, duplicated entry for program %d",
1121             patp->program_number);
1122         continue;
1123       }
1124
1125       GST_LOG ("Deactivating program %d / 0x%04x", patp->program_number,
1126           patp->network_or_program_map_PID);
1127
1128       if (--program->patcount > 0) {
1129         GST_LOG ("Referenced by new program, keeping");
1130         /* the program has been referenced by the new pat, keep it */
1131         continue;
1132       }
1133
1134       GST_INFO_OBJECT (base, "PAT removing program 0x%04x 0x%04x",
1135           patp->program_number, patp->network_or_program_map_PID);
1136
1137       if (klass->can_remove_program (base, program)) {
1138         mpegts_base_deactivate_program (base, program);
1139         mpegts_base_remove_program (base, program);
1140       } else {
1141         /* sub-class now owns the program and must call
1142          * mpegts_base_deactivate_and_free_program later */
1143         mpegts_base_steal_program (base, patp->program_number);
1144       }
1145       /* FIXME: when this happens it may still be pmt pid of another
1146        * program, so setting to False may make it go through expensive
1147        * path in is_psi unnecessarily */
1148       if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->known_psi,
1149                   patp->network_or_program_map_PID))) {
1150         GST_FIXME
1151             ("Program refcounting : Setting twice a pid (0x%04x) as known PSI",
1152             patp->network_or_program_map_PID);
1153       }
1154       MPEGTS_BIT_SET (base->known_psi, patp->network_or_program_map_PID);
1155       mpegts_packetizer_remove_stream (base->packetizer,
1156           patp->network_or_program_map_PID);
1157     }
1158
1159     g_ptr_array_unref (old_pat);
1160   }
1161
1162   return TRUE;
1163 }
1164
1165 static gboolean
1166 mpegts_base_apply_pmt (MpegTSBase * base, GstMpegtsSection * section)
1167 {
1168   const GstMpegtsPMT *pmt;
1169   MpegTSBaseProgram *program, *old_program;
1170   guint program_number;
1171   gboolean initial_program = TRUE;
1172
1173   pmt = gst_mpegts_section_get_pmt (section);
1174   if (G_UNLIKELY (pmt == NULL)) {
1175     GST_ERROR ("Could not get PMT (corrupted ?)");
1176     return FALSE;
1177   }
1178
1179   /* FIXME : not so sure this is valid anymore */
1180   if (G_UNLIKELY (base->seen_pat == FALSE)) {
1181     GST_WARNING ("Got pmt without pat first. Returning");
1182     /* remove the stream since we won't get another PMT otherwise */
1183     mpegts_packetizer_remove_stream (base->packetizer, section->pid);
1184     return TRUE;
1185   }
1186
1187   /* Don't attempt to handle pmt without any streams */
1188   if (G_UNLIKELY (pmt->streams->len == 0)) {
1189     GST_WARNING ("Skipping PMT without any entries");
1190     return TRUE;
1191   }
1192
1193   program_number = section->subtable_extension;
1194   GST_DEBUG ("Applying PMT (program_number:%d, pid:0x%04x)",
1195       program_number, section->pid);
1196
1197   /* In order for stream switching to happen properly in decodebin(2),
1198    * we need to first add the new pads (i.e. activate the new program)
1199    * before removing the old ones (i.e. deactivating the old program)
1200    */
1201
1202   old_program = mpegts_base_get_program (base, program_number);
1203   if (G_UNLIKELY (old_program == NULL))
1204     goto no_program;
1205
1206   if (base->streams_aware
1207       && mpegts_base_is_program_update (base, old_program, section->pid, pmt)) {
1208     GST_FIXME ("We are streams_aware and new program is an update");
1209     /* The program is an update, and we can add/remove pads dynamically */
1210     mpegts_base_update_program (base, old_program, section, pmt);
1211     goto beach;
1212   }
1213
1214   if (G_UNLIKELY (mpegts_base_is_same_program (base, old_program, section->pid,
1215               pmt)))
1216     goto same_program;
1217
1218   /* If the current program is active, this means we have a new program */
1219   if (old_program->active) {
1220     MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1221     old_program = mpegts_base_steal_program (base, program_number);
1222     program = mpegts_base_new_program (base, program_number, section->pid);
1223     program->patcount = old_program->patcount;
1224
1225     /* Deactivate the old program */
1226     /* FIXME : THIS IS BREAKING THE STREAM SWITCHING LOGIC !
1227      *  */
1228     if (klass->can_remove_program (base, old_program)) {
1229       mpegts_base_deactivate_program (base, old_program);
1230       mpegts_base_free_program (old_program);
1231     } else {
1232       /* sub-class now owns the program and must call
1233        * mpegts_base_deactivate_and_free_program later */
1234       mpegts_base_steal_program (base, old_program->program_number);
1235     }
1236     /* Add new program to the programs we track */
1237     g_ptr_array_add (base->programs, program);
1238     initial_program = FALSE;
1239   } else {
1240     GST_DEBUG ("Program update, re-using same program");
1241     program = old_program;
1242   }
1243
1244   /* activate program */
1245   /* Ownership of pmt_info is given to the program */
1246   mpegts_base_activate_program (base, program, section->pid, section, pmt,
1247       initial_program);
1248
1249 beach:
1250   GST_DEBUG ("Done activating program");
1251   return TRUE;
1252
1253 no_program:
1254   {
1255     GST_ERROR ("Attempted to apply a PMT on a program that wasn't created");
1256     return TRUE;
1257   }
1258
1259 same_program:
1260   {
1261     GST_DEBUG ("Not applying identical program");
1262     return TRUE;
1263   }
1264 }
1265
1266 static void
1267 mpegts_base_handle_psi (MpegTSBase * base, GstMpegtsSection * section)
1268 {
1269   gboolean post_message = TRUE;
1270
1271   GST_DEBUG ("Handling PSI (pid: 0x%04x , table_id: 0x%02x)",
1272       section->pid, section->table_id);
1273
1274   switch (section->section_type) {
1275     case GST_MPEGTS_SECTION_PAT:
1276       post_message = mpegts_base_apply_pat (base, section);
1277       if (base->seen_pat == FALSE) {
1278         base->seen_pat = TRUE;
1279         GST_DEBUG ("First PAT offset: %" G_GUINT64_FORMAT, section->offset);
1280         mpegts_packetizer_set_reference_offset (base->packetizer,
1281             section->offset);
1282       }
1283       break;
1284     case GST_MPEGTS_SECTION_PMT:
1285       post_message = mpegts_base_apply_pmt (base, section);
1286       break;
1287     case GST_MPEGTS_SECTION_EIT:
1288       /* some tag xtraction + posting */
1289       post_message = mpegts_base_get_tags_from_eit (base, section);
1290       break;
1291     case GST_MPEGTS_SECTION_ATSC_MGT:
1292       post_message = mpegts_base_parse_atsc_mgt (base, section);
1293       break;
1294     default:
1295       break;
1296   }
1297
1298   /* Give the subclass a chance to look at the section */
1299   if (GST_MPEGTS_BASE_GET_CLASS (base)->handle_psi)
1300     GST_MPEGTS_BASE_GET_CLASS (base)->handle_psi (base, section);
1301
1302   /* Finally post message (if it wasn't corrupted) */
1303   if (post_message)
1304     gst_element_post_message (GST_ELEMENT_CAST (base),
1305         gst_message_new_mpegts_section (GST_OBJECT (base), section));
1306   gst_mpegts_section_unref (section);
1307 }
1308
1309 static gboolean
1310 mpegts_base_parse_atsc_mgt (MpegTSBase * base, GstMpegtsSection * section)
1311 {
1312   const GstMpegtsAtscMGT *mgt;
1313   gint i;
1314
1315   mgt = gst_mpegts_section_get_atsc_mgt (section);
1316   if (G_UNLIKELY (mgt == NULL))
1317     return FALSE;
1318
1319   for (i = 0; i < mgt->tables->len; ++i) {
1320     GstMpegtsAtscMGTTable *table = g_ptr_array_index (mgt->tables, i);
1321
1322     if ((table->table_type >= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_EIT0 &&
1323             table->table_type <= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_EIT127) ||
1324         (table->table_type >= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_ETT0 &&
1325             table->table_type <= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_ETT127)) {
1326       MPEGTS_BIT_SET (base->known_psi, table->pid);
1327     }
1328   }
1329
1330   return TRUE;
1331 }
1332
1333 static gboolean
1334 mpegts_base_get_tags_from_eit (MpegTSBase * base, GstMpegtsSection * section)
1335 {
1336   const GstMpegtsEIT *eit;
1337   guint i;
1338   MpegTSBaseProgram *program;
1339
1340   /* Early exit if it's not from the present/following table_id */
1341   if (section->table_id != GST_MTS_TABLE_ID_EVENT_INFORMATION_ACTUAL_TS_PRESENT
1342       && section->table_id !=
1343       GST_MTS_TABLE_ID_EVENT_INFORMATION_OTHER_TS_PRESENT)
1344     return TRUE;
1345
1346   eit = gst_mpegts_section_get_eit (section);
1347   if (G_UNLIKELY (eit == NULL))
1348     return FALSE;
1349
1350   program = mpegts_base_get_program (base, section->subtable_extension);
1351
1352   GST_DEBUG
1353       ("program_id:0x%04x, table_id:0x%02x, actual_stream:%d, present_following:%d, program:%p",
1354       section->subtable_extension, section->table_id, eit->actual_stream,
1355       eit->present_following, program);
1356
1357   if (program && eit->present_following) {
1358     for (i = 0; i < eit->events->len; i++) {
1359       GstMpegtsEITEvent *event = g_ptr_array_index (eit->events, i);
1360       const GstMpegtsDescriptor *desc;
1361
1362       if (event->running_status == RUNNING_STATUS_RUNNING) {
1363         program->event_id = event->event_id;
1364         if ((desc =
1365                 gst_mpegts_find_descriptor (event->descriptors,
1366                     GST_MTS_DESC_DVB_SHORT_EVENT))) {
1367           gchar *name = NULL, *text = NULL;
1368
1369           if (gst_mpegts_descriptor_parse_dvb_short_event (desc, NULL, &name,
1370                   &text)) {
1371             if (!program->tags)
1372               program->tags = gst_tag_list_new_empty ();
1373
1374             if (name) {
1375               gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
1376                   GST_TAG_TITLE, name, NULL);
1377               g_free (name);
1378             }
1379             if (text) {
1380               gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
1381                   GST_TAG_DESCRIPTION, text, NULL);
1382               g_free (text);
1383             }
1384             /* FIXME : Is it correct to post an event duration as a GST_TAG_DURATION ??? */
1385             gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
1386                 GST_TAG_DURATION, event->duration * GST_SECOND, NULL);
1387             return TRUE;
1388           }
1389         }
1390       }
1391     }
1392   }
1393
1394   return TRUE;
1395 }
1396
1397 static void
1398 remove_each_program (MpegTSBaseProgram * program, MpegTSBase * base)
1399 {
1400   /* First deactivate it */
1401   mpegts_base_deactivate_program (base, program);
1402 }
1403
1404 static inline GstFlowReturn
1405 mpegts_base_drain (MpegTSBase * base)
1406 {
1407   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1408
1409   /* Call implementation */
1410   if (klass->drain)
1411     return klass->drain (base);
1412
1413   return GST_FLOW_OK;
1414 }
1415
1416 static inline void
1417 mpegts_base_flush (MpegTSBase * base, gboolean hard)
1418 {
1419   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1420
1421   /* Call implementation */
1422   if (klass->flush)
1423     klass->flush (base, hard);
1424 }
1425
1426 static gboolean
1427 mpegts_base_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
1428 {
1429   gboolean res = TRUE;
1430   gboolean hard;
1431   MpegTSBase *base = GST_MPEGTS_BASE (parent);
1432   gboolean is_sticky = GST_EVENT_IS_STICKY (event);
1433
1434   GST_DEBUG_OBJECT (base, "Got event %s",
1435       gst_event_type_get_name (GST_EVENT_TYPE (event)));
1436
1437   switch (GST_EVENT_TYPE (event)) {
1438     case GST_EVENT_SEGMENT:
1439       gst_event_copy_segment (event, &base->segment);
1440       GST_DEBUG_OBJECT (base, "Received segment %" GST_SEGMENT_FORMAT,
1441           &base->segment);
1442       /* Check if we need to switch PCR/PTS handling */
1443       if (base->segment.format == GST_FORMAT_TIME) {
1444         base->packetizer->calculate_offset = FALSE;
1445         base->packetizer->calculate_skew = TRUE;
1446         /* Seek was handled upstream */
1447         base->last_seek_seqnum = gst_event_get_seqnum (event);
1448       } else {
1449         base->packetizer->calculate_offset = TRUE;
1450         base->packetizer->calculate_skew = FALSE;
1451       }
1452
1453       res = GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, event);
1454       break;
1455     case GST_EVENT_STREAM_START:
1456       gst_event_unref (event);
1457       break;
1458     case GST_EVENT_CAPS:
1459       /* FIXME, do something */
1460       gst_event_unref (event);
1461       break;
1462     case GST_EVENT_FLUSH_STOP:
1463       res = GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, event);
1464       hard = (base->mode != BASE_MODE_SEEKING);
1465       mpegts_packetizer_flush (base->packetizer, hard);
1466       mpegts_base_flush (base, hard);
1467       gst_segment_init (&base->segment, GST_FORMAT_UNDEFINED);
1468       base->seen_pat = FALSE;
1469       break;
1470     default:
1471       res = GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, event);
1472   }
1473
1474   /* Always return TRUE for sticky events */
1475   if (is_sticky)
1476     res = TRUE;
1477
1478   return res;
1479 }
1480
1481 static gboolean
1482 mpegts_base_default_sink_query (MpegTSBase * base, GstQuery * query)
1483 {
1484   return gst_pad_query_default (base->sinkpad, GST_OBJECT (base), query);
1485 }
1486
1487 static gboolean
1488 mpegts_base_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
1489 {
1490   MpegTSBase *base = GST_MPEGTS_BASE (parent);
1491
1492   GST_DEBUG_OBJECT (base, "Got query %s",
1493       gst_query_type_get_name (GST_QUERY_TYPE (query)));
1494
1495   return GST_MPEGTS_BASE_GET_CLASS (base)->sink_query (base, query);
1496 }
1497
1498 static GstFlowReturn
1499 mpegts_base_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
1500 {
1501   GstFlowReturn res = GST_FLOW_OK;
1502   MpegTSBase *base;
1503   MpegTSPacketizerPacketReturn pret;
1504   MpegTSPacketizer2 *packetizer;
1505   MpegTSPacketizerPacket packet;
1506   MpegTSBaseClass *klass;
1507
1508   base = GST_MPEGTS_BASE (parent);
1509   klass = GST_MPEGTS_BASE_GET_CLASS (base);
1510
1511   packetizer = base->packetizer;
1512
1513   if (GST_BUFFER_IS_DISCONT (buf)) {
1514     GST_DEBUG_OBJECT (base, "Got DISCONT buffer, flushing");
1515     res = mpegts_base_drain (base);
1516     if (G_UNLIKELY (res != GST_FLOW_OK))
1517       return res;
1518
1519     mpegts_base_flush (base, FALSE);
1520     /* In the case of discontinuities in push-mode with TIME segment
1521      * we want to drop all previous observations (hard:TRUE) from
1522      * the packetizer */
1523     if (base->mode == BASE_MODE_PUSHING
1524         && base->segment.format == GST_FORMAT_TIME) {
1525       mpegts_packetizer_flush (base->packetizer, TRUE);
1526       mpegts_packetizer_clear (base->packetizer);
1527     } else
1528       mpegts_packetizer_flush (base->packetizer, FALSE);
1529   }
1530
1531   mpegts_packetizer_push (base->packetizer, buf);
1532
1533   while (res == GST_FLOW_OK) {
1534     pret = mpegts_packetizer_next_packet (base->packetizer, &packet);
1535
1536     /* If we don't have enough data, return */
1537     if (G_UNLIKELY (pret == PACKET_NEED_MORE))
1538       break;
1539
1540     if (G_UNLIKELY (pret == PACKET_BAD)) {
1541       /* bad header, skip the packet */
1542       GST_DEBUG_OBJECT (base, "bad packet, skipping");
1543       goto next;
1544     }
1545
1546     if (klass->inspect_packet)
1547       klass->inspect_packet (base, &packet);
1548
1549     /* If it's a known PES, push it */
1550     if (MPEGTS_BIT_IS_SET (base->is_pes, packet.pid)) {
1551       /* push the packet downstream */
1552       if (base->push_data)
1553         res = klass->push (base, &packet, NULL);
1554     } else if (packet.payload
1555         && MPEGTS_BIT_IS_SET (base->known_psi, packet.pid)) {
1556       /* base PSI data */
1557       GList *others, *tmp;
1558       GstMpegtsSection *section;
1559
1560       section = mpegts_packetizer_push_section (packetizer, &packet, &others);
1561       if (section)
1562         mpegts_base_handle_psi (base, section);
1563       if (G_UNLIKELY (others)) {
1564         for (tmp = others; tmp; tmp = tmp->next)
1565           mpegts_base_handle_psi (base, (GstMpegtsSection *) tmp->data);
1566         g_list_free (others);
1567       }
1568
1569       /* we need to push section packet downstream */
1570       if (base->push_section)
1571         res = klass->push (base, &packet, section);
1572
1573     } else if (base->push_unknown) {
1574       res = klass->push (base, &packet, NULL);
1575     } else if (packet.payload && packet.pid != 0x1fff)
1576       GST_LOG ("PID 0x%04x Saw packet on a pid we don't handle", packet.pid);
1577
1578   next:
1579     mpegts_packetizer_clear_packet (base->packetizer, &packet);
1580   }
1581
1582   if (res == GST_FLOW_OK && klass->input_done)
1583     res = klass->input_done (base);
1584
1585   return res;
1586 }
1587
1588 static GstFlowReturn
1589 mpegts_base_scan (MpegTSBase * base)
1590 {
1591   GstFlowReturn ret = GST_FLOW_OK;
1592   GstBuffer *buf = NULL;
1593   guint i;
1594   gboolean done = FALSE;
1595   MpegTSPacketizerPacketReturn pret;
1596   gint64 tmpval;
1597   gint64 upstream_size, seek_pos, reverse_limit;
1598   GstFormat format;
1599   guint initial_pcr_seen;
1600
1601   GST_DEBUG ("Scanning for initial sync point");
1602
1603   /* Find initial sync point and at least 5 PCR values */
1604   for (i = 0; i < 20 && !done; i++) {
1605     GST_DEBUG ("Grabbing %d => %d", i * 65536, (i + 1) * 65536);
1606
1607     ret = gst_pad_pull_range (base->sinkpad, i * 65536, 65536, &buf);
1608     if (G_UNLIKELY (ret == GST_FLOW_EOS))
1609       break;
1610     if (G_UNLIKELY (ret != GST_FLOW_OK))
1611       goto beach;
1612
1613     /* Push to packetizer */
1614     mpegts_packetizer_push (base->packetizer, buf);
1615     buf = NULL;
1616
1617     if (mpegts_packetizer_has_packets (base->packetizer)) {
1618       if (base->seek_offset == -1) {
1619         /* Mark the initial sync point and remember the packetsize */
1620         base->seek_offset = base->packetizer->offset;
1621         GST_DEBUG ("Sync point is now %" G_GUINT64_FORMAT, base->seek_offset);
1622         base->packetsize = base->packetizer->packet_size;
1623       }
1624       while (1) {
1625         /* Eat up all packets */
1626         pret = mpegts_packetizer_process_next_packet (base->packetizer);
1627         if (pret == PACKET_NEED_MORE)
1628           break;
1629         if (pret != PACKET_BAD && base->packetizer->nb_seen_offsets >= 5) {
1630           GST_DEBUG ("Got enough initial PCR");
1631           done = TRUE;
1632           break;
1633         }
1634       }
1635     }
1636   }
1637
1638   initial_pcr_seen = base->packetizer->nb_seen_offsets;
1639   if (G_UNLIKELY (initial_pcr_seen == 0))
1640     goto no_initial_pcr;
1641   GST_DEBUG ("Seen %d initial PCR", initial_pcr_seen);
1642
1643   /* Now send data from the end */
1644
1645   /* Get the size of upstream */
1646   format = GST_FORMAT_BYTES;
1647   if (!gst_pad_peer_query_duration (base->sinkpad, format, &tmpval))
1648     goto beach;
1649   upstream_size = tmpval;
1650
1651   /* The scanning takes place on the last 2048kB. Considering PCR should
1652    * be present at least every 100ms, this should cope with streams
1653    * up to 160Mbit/s */
1654   reverse_limit = MAX (0, upstream_size - 2097152);
1655
1656   /* Find last PCR value, searching backwards by chunks of 300 MPEG-ts packets */
1657   for (seek_pos = MAX (0, upstream_size - 56400);
1658       seek_pos >= reverse_limit; seek_pos -= 56400) {
1659     mpegts_packetizer_clear (base->packetizer);
1660     GST_DEBUG ("Grabbing %" G_GUINT64_FORMAT " => %" G_GUINT64_FORMAT, seek_pos,
1661         seek_pos + 56400);
1662
1663     ret = gst_pad_pull_range (base->sinkpad, seek_pos, 56400, &buf);
1664     if (G_UNLIKELY (ret == GST_FLOW_EOS))
1665       break;
1666     if (G_UNLIKELY (ret != GST_FLOW_OK))
1667       goto beach;
1668
1669     /* Push to packetizer */
1670     mpegts_packetizer_push (base->packetizer, buf);
1671     buf = NULL;
1672
1673     if (mpegts_packetizer_has_packets (base->packetizer)) {
1674       pret = PACKET_OK;
1675       /* Eat up all packets, really try to get last PCR(s) */
1676       while (pret != PACKET_NEED_MORE)
1677         pret = mpegts_packetizer_process_next_packet (base->packetizer);
1678
1679       if (base->packetizer->nb_seen_offsets > initial_pcr_seen) {
1680         GST_DEBUG ("Got last PCR(s) (total seen:%d)",
1681             base->packetizer->nb_seen_offsets);
1682         break;
1683       }
1684     }
1685   }
1686
1687 beach:
1688   mpegts_packetizer_clear (base->packetizer);
1689   return ret;
1690
1691 no_initial_pcr:
1692   mpegts_packetizer_clear (base->packetizer);
1693   GST_WARNING_OBJECT (base, "Couldn't find any PCR within the first %d bytes",
1694       10 * 65536);
1695   return GST_FLOW_OK;
1696 }
1697
1698
1699 static void
1700 mpegts_base_loop (MpegTSBase * base)
1701 {
1702   GstFlowReturn ret = GST_FLOW_ERROR;
1703
1704   switch (base->mode) {
1705     case BASE_MODE_SCANNING:
1706       /* Find first sync point */
1707       ret = mpegts_base_scan (base);
1708       if (G_UNLIKELY (ret != GST_FLOW_OK))
1709         goto error;
1710       base->mode = BASE_MODE_STREAMING;
1711       GST_DEBUG ("Changing to Streaming");
1712       break;
1713     case BASE_MODE_SEEKING:
1714       /* FIXME : unclear if we still need mode_seeking... */
1715       base->mode = BASE_MODE_STREAMING;
1716       break;
1717     case BASE_MODE_STREAMING:
1718     {
1719       GstBuffer *buf = NULL;
1720
1721       GST_DEBUG ("Pulling data from %" G_GUINT64_FORMAT, base->seek_offset);
1722
1723       if (G_UNLIKELY (base->last_seek_seqnum == GST_SEQNUM_INVALID)) {
1724         /* No configured seek, set a valid seqnum */
1725         base->last_seek_seqnum = gst_util_seqnum_next ();
1726       }
1727       ret = gst_pad_pull_range (base->sinkpad, base->seek_offset,
1728           100 * base->packetsize, &buf);
1729       if (G_UNLIKELY (ret != GST_FLOW_OK))
1730         goto error;
1731       base->seek_offset += gst_buffer_get_size (buf);
1732       ret = mpegts_base_chain (base->sinkpad, GST_OBJECT_CAST (base), buf);
1733       if (G_UNLIKELY (ret != GST_FLOW_OK))
1734         goto error;
1735     }
1736       break;
1737     case BASE_MODE_PUSHING:
1738       GST_WARNING ("wrong BASE_MODE_PUSHING mode in pull loop");
1739       break;
1740   }
1741
1742   return;
1743
1744 error:
1745   {
1746     GST_DEBUG_OBJECT (base, "Pausing task, reason %s", gst_flow_get_name (ret));
1747     if (ret == GST_FLOW_EOS) {
1748       if (!GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base,
1749               gst_event_new_eos ()))
1750         GST_ELEMENT_ERROR (base, STREAM, FAILED,
1751             (_("Internal data stream error.")),
1752             ("No program activated before EOS"));
1753     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS) {
1754       GST_ELEMENT_FLOW_ERROR (base, ret);
1755       GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, gst_event_new_eos ());
1756     }
1757     gst_pad_pause_task (base->sinkpad);
1758   }
1759 }
1760
1761
1762 gboolean
1763 mpegts_base_handle_seek_event (MpegTSBase * base, GstPad * pad,
1764     GstEvent * event)
1765 {
1766   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1767   GstFlowReturn ret = GST_FLOW_ERROR;
1768   gdouble rate;
1769   gboolean flush, instant_rate_change;
1770   GstFormat format;
1771   GstSeekFlags flags;
1772   GstSeekType start_type, stop_type;
1773   gint64 start, stop;
1774   GstEvent *flush_event = NULL;
1775
1776   gst_event_parse_seek (event, &rate, &format, &flags, &start_type, &start,
1777       &stop_type, &stop);
1778
1779   if (format != GST_FORMAT_TIME)
1780     return FALSE;
1781
1782   if (GST_EVENT_SEQNUM (event) == base->last_seek_seqnum) {
1783     GST_DEBUG_OBJECT (base, "Skipping already handled seek");
1784     return TRUE;
1785   }
1786
1787   if (base->mode == BASE_MODE_PUSHING) {
1788     /* First try if upstream supports seeking in TIME format */
1789     if (gst_pad_push_event (base->sinkpad, gst_event_ref (event))) {
1790       GST_DEBUG ("upstream handled SEEK event");
1791       return TRUE;
1792     }
1793
1794     /* If the subclass can seek, do that */
1795     if (klass->seek) {
1796       ret = klass->seek (base, event);
1797       if (G_UNLIKELY (ret != GST_FLOW_OK))
1798         GST_WARNING ("seeking failed %s", gst_flow_get_name (ret));
1799       else {
1800         GstEvent *new_seek;
1801
1802         if (GST_CLOCK_TIME_IS_VALID (base->seek_offset)) {
1803           base->mode = BASE_MODE_SEEKING;
1804           new_seek = gst_event_new_seek (rate, GST_FORMAT_BYTES, flags,
1805               GST_SEEK_TYPE_SET, base->seek_offset, GST_SEEK_TYPE_NONE, -1);
1806           gst_event_set_seqnum (new_seek, GST_EVENT_SEQNUM (event));
1807           if (!gst_pad_push_event (base->sinkpad, new_seek))
1808             ret = GST_FLOW_ERROR;
1809           else
1810             base->last_seek_seqnum = GST_EVENT_SEQNUM (event);
1811         }
1812         base->mode = BASE_MODE_PUSHING;
1813       }
1814     } else {
1815       GST_WARNING ("subclass has no seek implementation");
1816     }
1817
1818     return ret == GST_FLOW_OK;
1819   }
1820
1821   if (!klass->seek) {
1822     GST_WARNING ("subclass has no seek implementation");
1823     return FALSE;
1824   }
1825
1826   if (rate <= 0.0) {
1827     GST_WARNING ("Negative rate not supported");
1828     return FALSE;
1829   }
1830
1831   GST_DEBUG ("seek event, rate: %f start: %" GST_TIME_FORMAT
1832       " stop: %" GST_TIME_FORMAT, rate, GST_TIME_ARGS (start),
1833       GST_TIME_ARGS (stop));
1834
1835   flush = ! !(flags & GST_SEEK_FLAG_FLUSH);
1836   instant_rate_change = ! !(flags & GST_SEEK_FLAG_INSTANT_RATE_CHANGE);
1837
1838   /* Directly send the instant-rate-change event here before taking the
1839    * stream-lock so that it can be applied as soon as possible */
1840   if (base->mode != BASE_MODE_PUSHING && instant_rate_change) {
1841     GstEvent *ev;
1842
1843     /* instant rate change only supported if direction does not change. All
1844      * other requirements are already checked before creating the seek event
1845      * but let's double-check here to be sure */
1846     if ((rate > 0 && base->out_segment.rate < 0) ||
1847         (rate < 0 && base->out_segment.rate > 0) ||
1848         start_type != GST_SEEK_TYPE_NONE ||
1849         stop_type != GST_SEEK_TYPE_NONE || flush) {
1850       GST_ERROR_OBJECT (base,
1851           "Instant rate change seeks only supported in the "
1852           "same direction, without flushing and position change");
1853       return FALSE;
1854     }
1855
1856     ev = gst_event_new_instant_rate_change (rate / base->out_segment.rate,
1857         (GstSegmentFlags) (flags));
1858     gst_event_set_seqnum (ev, GST_EVENT_SEQNUM (event));
1859     GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, ev);
1860     return TRUE;
1861   }
1862
1863   /* stop streaming, either by flushing or by pausing the task */
1864   base->mode = BASE_MODE_SEEKING;
1865   if (flush) {
1866     GST_DEBUG_OBJECT (base, "sending flush start");
1867     flush_event = gst_event_new_flush_start ();
1868     gst_event_set_seqnum (flush_event, GST_EVENT_SEQNUM (event));
1869     gst_pad_push_event (base->sinkpad, gst_event_ref (flush_event));
1870     GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, flush_event);
1871   } else
1872     gst_pad_pause_task (base->sinkpad);
1873
1874   /* wait for streaming to finish */
1875   GST_PAD_STREAM_LOCK (base->sinkpad);
1876
1877   if (flush) {
1878     /* send a FLUSH_STOP for the sinkpad, since we need data for seeking */
1879     GST_DEBUG_OBJECT (base, "sending flush stop");
1880     flush_event = gst_event_new_flush_stop (TRUE);
1881     gst_event_set_seqnum (flush_event, GST_EVENT_SEQNUM (event));
1882
1883     /* ref for it to be reused later */
1884     gst_pad_push_event (base->sinkpad, gst_event_ref (flush_event));
1885     /* And actually flush our pending data but allow to preserve some info
1886      * to perform the seek */
1887     mpegts_base_flush (base, FALSE);
1888     mpegts_packetizer_flush (base->packetizer, FALSE);
1889   }
1890
1891   if (flags & (GST_SEEK_FLAG_SEGMENT)) {
1892     GST_WARNING ("seek flags 0x%x are not supported", (int) flags);
1893     goto done;
1894   }
1895
1896
1897   /* If the subclass can seek, do that */
1898   ret = klass->seek (base, event);
1899   if (G_UNLIKELY (ret != GST_FLOW_OK))
1900     GST_WARNING ("seeking failed %s", gst_flow_get_name (ret));
1901   else
1902     base->last_seek_seqnum = GST_EVENT_SEQNUM (event);
1903
1904   if (flush_event) {
1905     /* if we sent a FLUSH_START, we now send a FLUSH_STOP */
1906     GST_DEBUG_OBJECT (base, "sending flush stop");
1907     GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, flush_event);
1908     flush_event = NULL;
1909   }
1910 done:
1911   if (flush_event)
1912     gst_event_unref (flush_event);
1913   gst_pad_start_task (base->sinkpad, (GstTaskFunction) mpegts_base_loop, base,
1914       NULL);
1915
1916   GST_PAD_STREAM_UNLOCK (base->sinkpad);
1917   return ret == GST_FLOW_OK;
1918 }
1919
1920
1921 static gboolean
1922 mpegts_base_sink_activate (GstPad * sinkpad, GstObject * parent)
1923 {
1924   GstQuery *query;
1925   gboolean pull_mode;
1926
1927   query = gst_query_new_scheduling ();
1928
1929   if (!gst_pad_peer_query (sinkpad, query)) {
1930     gst_query_unref (query);
1931     goto activate_push;
1932   }
1933
1934   pull_mode = gst_query_has_scheduling_mode_with_flags (query,
1935       GST_PAD_MODE_PULL, GST_SCHEDULING_FLAG_SEEKABLE);
1936   gst_query_unref (query);
1937
1938   if (!pull_mode)
1939     goto activate_push;
1940
1941   GST_DEBUG_OBJECT (sinkpad, "activating pull");
1942   return gst_pad_activate_mode (sinkpad, GST_PAD_MODE_PULL, TRUE);
1943
1944 activate_push:
1945   {
1946     GST_DEBUG_OBJECT (sinkpad, "activating push");
1947     return gst_pad_activate_mode (sinkpad, GST_PAD_MODE_PUSH, TRUE);
1948   }
1949 }
1950
1951 static gboolean
1952 mpegts_base_sink_activate_mode (GstPad * pad, GstObject * parent,
1953     GstPadMode mode, gboolean active)
1954 {
1955   gboolean res;
1956   MpegTSBase *base = GST_MPEGTS_BASE (parent);
1957
1958   switch (mode) {
1959     case GST_PAD_MODE_PUSH:
1960       base->mode = BASE_MODE_PUSHING;
1961       res = TRUE;
1962       break;
1963     case GST_PAD_MODE_PULL:
1964       if (active) {
1965         base->mode = BASE_MODE_SCANNING;
1966         /* When working pull-based, we always use offsets for estimation */
1967         base->packetizer->calculate_offset = TRUE;
1968         base->packetizer->calculate_skew = FALSE;
1969         gst_segment_init (&base->segment, GST_FORMAT_BYTES);
1970         res =
1971             gst_pad_start_task (pad, (GstTaskFunction) mpegts_base_loop, base,
1972             NULL);
1973       } else
1974         res = gst_pad_stop_task (pad);
1975       break;
1976     default:
1977       res = FALSE;
1978       break;
1979   }
1980   return res;
1981 }
1982
1983 static GstStateChangeReturn
1984 mpegts_base_change_state (GstElement * element, GstStateChange transition)
1985 {
1986   MpegTSBase *base;
1987   GstStateChangeReturn ret;
1988
1989   base = GST_MPEGTS_BASE (element);
1990
1991   switch (transition) {
1992     case GST_STATE_CHANGE_READY_TO_PAUSED:
1993       mpegts_base_reset (base);
1994       break;
1995     default:
1996       break;
1997   }
1998
1999   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
2000
2001   switch (transition) {
2002     case GST_STATE_CHANGE_PAUSED_TO_READY:
2003       mpegts_base_reset (base);
2004       if (base->mode != BASE_MODE_PUSHING)
2005         base->mode = BASE_MODE_SCANNING;
2006       break;
2007     default:
2008       break;
2009   }
2010
2011   return ret;
2012 }
2013
2014 gboolean
2015 gst_mpegtsbase_plugin_init (GstPlugin * plugin)
2016 {
2017   GST_DEBUG_CATEGORY_INIT (mpegts_base_debug, "mpegtsbase", 0,
2018       "MPEG transport stream base class");
2019
2020   return TRUE;
2021 }