mpegts: Always clear packetizer on DISCONT push mode
[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   g_list_free (toremove);
769   return TRUE;
770 }
771
772
773 static gboolean
774 _stream_is_private_section (const GstMpegtsPMT * pmt,
775     GstMpegtsPMTStream * stream)
776 {
777   switch (stream->stream_type) {
778     case GST_MPEGTS_STREAM_TYPE_SCTE_DSMCC_DCB:
779     case GST_MPEGTS_STREAM_TYPE_SCTE_SIGNALING:
780     {
781       guint32 registration_id =
782           get_registration_from_descriptors (stream->descriptors);
783       /* Not a private section stream */
784       if (registration_id != DRF_ID_CUEI && registration_id != DRF_ID_ETV1)
785         return FALSE;
786     }
787     case GST_MPEGTS_STREAM_TYPE_PRIVATE_SECTIONS:
788     case GST_MPEGTS_STREAM_TYPE_MHEG:
789     case GST_MPEGTS_STREAM_TYPE_DSM_CC:
790     case GST_MPEGTS_STREAM_TYPE_DSMCC_A:
791     case GST_MPEGTS_STREAM_TYPE_DSMCC_B:
792     case GST_MPEGTS_STREAM_TYPE_DSMCC_C:
793     case GST_MPEGTS_STREAM_TYPE_DSMCC_D:
794     case GST_MPEGTS_STREAM_TYPE_SL_FLEXMUX_SECTIONS:
795     case GST_MPEGTS_STREAM_TYPE_METADATA_SECTIONS:
796       /* known PSI streams */
797       return TRUE;
798     case GST_MPEGTS_STREAM_TYPE_SCTE_SIT:
799     {
800       /* Not a private section stream */
801       if (!find_registration_in_descriptors (pmt->descriptors, DRF_ID_CUEI))
802         return FALSE;
803       return TRUE;
804     }
805     default:
806       return FALSE;
807   }
808 }
809
810 /* Return TRUE if programs are equal */
811 static gboolean
812 mpegts_base_is_same_program (MpegTSBase * base, MpegTSBaseProgram * oldprogram,
813     guint16 new_pmt_pid, const GstMpegtsPMT * new_pmt)
814 {
815   guint i, nbstreams;
816   MpegTSBaseStream *oldstream;
817   gboolean sawpcrpid = FALSE;
818
819   if (oldprogram->pmt_pid != new_pmt_pid) {
820     GST_DEBUG ("Different pmt_pid (new:0x%04x, old:0x%04x)", new_pmt_pid,
821         oldprogram->pmt_pid);
822     return FALSE;
823   }
824
825   if (!base->ignore_pcr && oldprogram->pcr_pid != new_pmt->pcr_pid) {
826     GST_DEBUG ("Different pcr_pid (new:0x%04x, old:0x%04x)",
827         new_pmt->pcr_pid, oldprogram->pcr_pid);
828     return FALSE;
829   }
830
831   /* Check the streams */
832   nbstreams = new_pmt->streams->len;
833   for (i = 0; i < nbstreams; ++i) {
834     GstMpegtsPMTStream *stream = g_ptr_array_index (new_pmt->streams, i);
835
836     oldstream = oldprogram->streams[stream->pid];
837     if (!oldstream) {
838       GST_DEBUG ("New stream 0x%04x not present in old program", stream->pid);
839       return FALSE;
840     }
841     if (oldstream->stream_type != stream->stream_type) {
842       GST_DEBUG
843           ("New stream 0x%04x has a different stream type (new:%d, old:%d)",
844           stream->pid, stream->stream_type, oldstream->stream_type);
845       return FALSE;
846     }
847     if (stream->pid == oldprogram->pcr_pid)
848       sawpcrpid = TRUE;
849   }
850
851   /* If we have a PCR PID and the pcr is not shared with an existing stream, we'll have one extra stream */
852   if (!sawpcrpid && !base->ignore_pcr)
853     nbstreams += 1;
854
855   if (nbstreams != g_list_length (oldprogram->stream_list)) {
856     GST_DEBUG ("Different number of streams (new:%d, old:%d)",
857         nbstreams, g_list_length (oldprogram->stream_list));
858     return FALSE;
859   }
860
861   GST_DEBUG ("Programs are equal");
862   return TRUE;
863 }
864
865 /* Return TRUE if program is an update
866  *
867  * A program is equal if:
868  * * The program number is the same (will be if it enters this function)
869  * * AND The PMT PID is equal to the old one
870  * * AND It contains at least one stream from the previous program
871  *
872  * Changes that are acceptable are therefore:
873  * * New streams appearing
874  * * Old streams going away
875  * * PCR PID changing
876  *
877  * Unclear changes:
878  * * PMT PID being changed ?
879  * * Properties of elementary stream being changed ? (new tags ? metadata ?)
880  */
881 static gboolean
882 mpegts_base_is_program_update (MpegTSBase * base,
883     MpegTSBaseProgram * oldprogram, guint16 new_pmt_pid,
884     const GstMpegtsPMT * new_pmt)
885 {
886   guint i, nbstreams;
887   MpegTSBaseStream *oldstream;
888
889   if (oldprogram->pmt_pid != new_pmt_pid) {
890     /* FIXME/CHECK: Can a program be updated by just changing its PID
891      * in the PAT ? */
892     GST_DEBUG ("Different pmt_pid (new:0x%04x, old:0x%04x)", new_pmt_pid,
893         oldprogram->pmt_pid);
894     return FALSE;
895   }
896
897   /* Check if at least one stream from the previous program is still present
898    * in the new program */
899
900   /* Check the streams */
901   nbstreams = new_pmt->streams->len;
902   for (i = 0; i < nbstreams; ++i) {
903     GstMpegtsPMTStream *stream = g_ptr_array_index (new_pmt->streams, i);
904
905     oldstream = oldprogram->streams[stream->pid];
906     if (!oldstream) {
907       GST_DEBUG ("New stream 0x%04x not present in old program", stream->pid);
908     } else if (oldstream->stream_type != stream->stream_type) {
909       GST_DEBUG
910           ("New stream 0x%04x has a different stream type (new:%d, old:%d)",
911           stream->pid, stream->stream_type, oldstream->stream_type);
912     } else if (!_stream_is_private_section (new_pmt, stream)) {
913       /* FIXME : We should actually be checking a bit deeper,
914        * especially for private streams (where the differentiation is
915        * done at the registration level) */
916       GST_DEBUG
917           ("Stream 0x%04x is identical (stream_type %d) ! Program is an update",
918           stream->pid, stream->stream_type);
919       return TRUE;
920     }
921   }
922
923   GST_DEBUG ("Program is not an update of the previous one");
924   return FALSE;
925 }
926
927 static void
928 mpegts_base_deactivate_program (MpegTSBase * base, MpegTSBaseProgram * program)
929 {
930   gint i;
931   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
932
933   if (G_UNLIKELY (program->active == FALSE))
934     return;
935
936   GST_DEBUG_OBJECT (base, "Deactivating PMT");
937
938   program->active = FALSE;
939
940   if (program->pmt) {
941     for (i = 0; i < program->pmt->streams->len; ++i) {
942       GstMpegtsPMTStream *stream = g_ptr_array_index (program->pmt->streams, i);
943
944       mpegts_base_program_remove_stream (base, program, stream->pid);
945
946       /* Only unset the is_pes/known_psi bit if the PID isn't used in any other active
947        * program */
948       if (!mpegts_pid_in_active_programs (base, stream->pid)) {
949         if (_stream_is_private_section (program->pmt, stream)) {
950           if (base->parse_private_sections)
951             MPEGTS_BIT_UNSET (base->known_psi, stream->pid);
952         } else {
953           MPEGTS_BIT_UNSET (base->is_pes, stream->pid);
954         }
955       }
956     }
957
958     /* remove pcr stream */
959     /* FIXME : This might actually be shared with another stream ? */
960     mpegts_base_program_remove_stream (base, program, program->pcr_pid);
961     if (!mpegts_pid_in_active_programs (base, program->pcr_pid))
962       MPEGTS_BIT_UNSET (base->is_pes, program->pcr_pid);
963
964     GST_DEBUG ("program stream_list is now %p", program->stream_list);
965   }
966
967   /* Inform subclasses we're deactivating this program */
968   if (klass->program_stopped)
969     klass->program_stopped (base, program);
970 }
971
972 static void
973 mpegts_base_activate_program (MpegTSBase * base, MpegTSBaseProgram * program,
974     guint16 pmt_pid, GstMpegtsSection * section, const GstMpegtsPMT * pmt,
975     gboolean initial_program)
976 {
977   guint i;
978   MpegTSBaseClass *klass;
979
980   if (G_UNLIKELY (program->active))
981     return;
982
983   GST_DEBUG ("Activating program %d", program->program_number);
984
985   /* activate new pmt */
986   if (program->section)
987     gst_mpegts_section_unref (program->section);
988   program->section = gst_mpegts_section_ref (section);
989
990   program->pmt = pmt;
991   program->pmt_pid = pmt_pid;
992   if (!base->ignore_pcr)
993     program->pcr_pid = pmt->pcr_pid;
994   else
995     program->pcr_pid = 0x1fff;
996
997   /* extract top-level registration_id if present */
998   program->registration_id =
999       get_registration_from_descriptors (pmt->descriptors);
1000   GST_DEBUG ("program 0x%04x, registration_id %" SAFE_FOURCC_FORMAT,
1001       program->program_number, SAFE_FOURCC_ARGS (program->registration_id));
1002
1003   for (i = 0; i < pmt->streams->len; ++i) {
1004     GstMpegtsPMTStream *stream = g_ptr_array_index (pmt->streams, i);
1005     if (_stream_is_private_section (pmt, stream)) {
1006       if (base->parse_private_sections)
1007         MPEGTS_BIT_SET (base->known_psi, stream->pid);
1008     } else {
1009       if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->is_pes, stream->pid)))
1010         GST_FIXME
1011             ("Refcounting issue. Setting twice a PID (0x%04x) as known PES",
1012             stream->pid);
1013       if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->known_psi, stream->pid))) {
1014         GST_FIXME
1015             ("Refcounting issue. Setting a known PSI PID (0x%04x) as known PES",
1016             stream->pid);
1017         MPEGTS_BIT_UNSET (base->known_psi, stream->pid);
1018       }
1019       MPEGTS_BIT_SET (base->is_pes, stream->pid);
1020     }
1021     mpegts_base_program_add_stream (base, program,
1022         stream->pid, stream->stream_type, stream);
1023   }
1024   /* We add the PCR pid last. If that PID is already used by one of the media
1025    * streams above, no new stream will be created */
1026   mpegts_base_program_add_stream (base, program, program->pcr_pid, -1, NULL);
1027   MPEGTS_BIT_SET (base->is_pes, program->pcr_pid);
1028
1029   program->active = TRUE;
1030   program->initial_program = initial_program;
1031
1032   klass = GST_MPEGTS_BASE_GET_CLASS (base);
1033   if (klass->program_started != NULL)
1034     klass->program_started (base, program);
1035
1036   GST_DEBUG_OBJECT (base, "new pmt activated");
1037 }
1038
1039
1040 static gboolean
1041 mpegts_base_apply_pat (MpegTSBase * base, GstMpegtsSection * section)
1042 {
1043   GPtrArray *pat = gst_mpegts_section_get_pat (section);
1044   GPtrArray *old_pat;
1045   MpegTSBaseProgram *program;
1046   gint i;
1047
1048   if (G_UNLIKELY (pat == NULL))
1049     return FALSE;
1050
1051   GST_INFO_OBJECT (base, "PAT");
1052
1053   /* Applying a new PAT does two things:
1054    * * It adds the new programs to the list of programs this element handles
1055    *   and increments at the same time the number of times a program is referenced.
1056    *
1057    * * If there was a previously active PAT, It decrements the reference count
1058    *   of all program it used. If a program is no longer needed, it is removed.
1059    */
1060
1061   old_pat = base->pat;
1062   base->pat = pat;
1063
1064   GST_LOG ("Activating new Program Association Table");
1065   /* activate the new table */
1066   for (i = 0; i < pat->len; ++i) {
1067     GstMpegtsPatProgram *patp = g_ptr_array_index (pat, i);
1068
1069     GST_LOG ("Looking for program %d / 0x%04x", patp->program_number,
1070         patp->network_or_program_map_PID);
1071     program = mpegts_base_get_program (base, patp->program_number);
1072     if (program) {
1073       GST_LOG ("Program exists on pid 0x%04x", program->pmt_pid);
1074       /* If the new PMT PID clashes with an existing known PES stream, we know
1075        * it is not an update */
1076       if (MPEGTS_BIT_IS_SET (base->is_pes, patp->network_or_program_map_PID)) {
1077         GST_LOG ("Program is not an update");
1078         program =
1079             mpegts_base_add_program (base, patp->program_number,
1080             patp->network_or_program_map_PID);
1081       } else if (program->pmt_pid != patp->network_or_program_map_PID) {
1082         /* IF the program already existed, just check if the PMT PID changed */
1083         GST_LOG ("PMT is on a different PID");
1084         if (program->pmt_pid != G_MAXUINT16) {
1085           /* pmt pid changed */
1086           /* FIXME: when this happens it may still be pmt pid of another
1087            * program, so setting to False may make it go through expensive
1088            * path in is_psi unnecessarily */
1089           MPEGTS_BIT_UNSET (base->known_psi, program->pmt_pid);
1090         }
1091
1092         program->pmt_pid = patp->network_or_program_map_PID;
1093         if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->known_psi, program->pmt_pid)))
1094           GST_FIXME
1095               ("Refcounting issue. Setting twice a PMT PID (0x%04x) as know PSI",
1096               program->pmt_pid);
1097         MPEGTS_BIT_SET (base->known_psi, patp->network_or_program_map_PID);
1098       } else {
1099         GST_LOG ("Regular program update");
1100       }
1101     } else {
1102       /* Create a new program */
1103       program =
1104           mpegts_base_add_program (base, patp->program_number,
1105           patp->network_or_program_map_PID);
1106     }
1107     /* We mark this program as being referenced by one PAT */
1108     program->patcount += 1;
1109   }
1110
1111   if (old_pat) {
1112     MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1113     /* deactivate the old table */
1114     GST_LOG ("Deactivating old Program Association Table");
1115
1116     for (i = 0; i < old_pat->len; ++i) {
1117       GstMpegtsPatProgram *patp = g_ptr_array_index (old_pat, i);
1118
1119       program = mpegts_base_get_program (base, patp->program_number);
1120       if (G_UNLIKELY (program == NULL)) {
1121         GST_DEBUG_OBJECT (base, "broken PAT, duplicated entry for program %d",
1122             patp->program_number);
1123         continue;
1124       }
1125
1126       GST_LOG ("Deactivating program %d / 0x%04x", patp->program_number,
1127           patp->network_or_program_map_PID);
1128
1129       if (--program->patcount > 0) {
1130         GST_LOG ("Referenced by new program, keeping");
1131         /* the program has been referenced by the new pat, keep it */
1132         continue;
1133       }
1134
1135       GST_INFO_OBJECT (base, "PAT removing program 0x%04x 0x%04x",
1136           patp->program_number, patp->network_or_program_map_PID);
1137
1138       if (klass->can_remove_program (base, program)) {
1139         mpegts_base_deactivate_program (base, program);
1140         mpegts_base_remove_program (base, program);
1141       } else {
1142         /* sub-class now owns the program and must call
1143          * mpegts_base_deactivate_and_free_program later */
1144         mpegts_base_steal_program (base, patp->program_number);
1145       }
1146       /* FIXME: when this happens it may still be pmt pid of another
1147        * program, so setting to False may make it go through expensive
1148        * path in is_psi unnecessarily */
1149       if (G_UNLIKELY (MPEGTS_BIT_IS_SET (base->known_psi,
1150                   patp->network_or_program_map_PID))) {
1151         GST_FIXME
1152             ("Program refcounting : Setting twice a pid (0x%04x) as known PSI",
1153             patp->network_or_program_map_PID);
1154       }
1155       MPEGTS_BIT_SET (base->known_psi, patp->network_or_program_map_PID);
1156       mpegts_packetizer_remove_stream (base->packetizer,
1157           patp->network_or_program_map_PID);
1158     }
1159
1160     g_ptr_array_unref (old_pat);
1161   }
1162
1163   return TRUE;
1164 }
1165
1166 static gboolean
1167 mpegts_base_apply_pmt (MpegTSBase * base, GstMpegtsSection * section)
1168 {
1169   const GstMpegtsPMT *pmt;
1170   MpegTSBaseProgram *program, *old_program;
1171   guint program_number;
1172   gboolean initial_program = TRUE;
1173
1174   pmt = gst_mpegts_section_get_pmt (section);
1175   if (G_UNLIKELY (pmt == NULL)) {
1176     GST_ERROR ("Could not get PMT (corrupted ?)");
1177     return FALSE;
1178   }
1179
1180   /* FIXME : not so sure this is valid anymore */
1181   if (G_UNLIKELY (base->seen_pat == FALSE)) {
1182     GST_WARNING ("Got pmt without pat first. Returning");
1183     /* remove the stream since we won't get another PMT otherwise */
1184     mpegts_packetizer_remove_stream (base->packetizer, section->pid);
1185     return TRUE;
1186   }
1187
1188   /* Don't attempt to handle pmt without any streams */
1189   if (G_UNLIKELY (pmt->streams->len == 0)) {
1190     GST_WARNING ("Skipping PMT without any entries");
1191     return TRUE;
1192   }
1193
1194   program_number = section->subtable_extension;
1195   GST_DEBUG ("Applying PMT (program_number:%d, pid:0x%04x)",
1196       program_number, section->pid);
1197
1198   /* In order for stream switching to happen properly in decodebin(2),
1199    * we need to first add the new pads (i.e. activate the new program)
1200    * before removing the old ones (i.e. deactivating the old program)
1201    */
1202
1203   old_program = mpegts_base_get_program (base, program_number);
1204   if (G_UNLIKELY (old_program == NULL))
1205     goto no_program;
1206
1207   if (G_UNLIKELY (mpegts_base_is_same_program (base, old_program, section->pid,
1208               pmt)))
1209     goto same_program;
1210
1211   if (base->streams_aware
1212       && mpegts_base_is_program_update (base, old_program, section->pid, pmt)) {
1213     GST_FIXME ("We are streams_aware and new program is an update");
1214     /* The program is an update, and we can add/remove pads dynamically */
1215     mpegts_base_update_program (base, old_program, section, pmt);
1216     goto beach;
1217   }
1218
1219   /* If the current program is active, this means we have a new program */
1220   if (old_program->active) {
1221     MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1222     old_program = mpegts_base_steal_program (base, program_number);
1223     program = mpegts_base_new_program (base, program_number, section->pid);
1224     program->patcount = old_program->patcount;
1225
1226     /* Deactivate the old program */
1227     /* FIXME : THIS IS BREAKING THE STREAM SWITCHING LOGIC !
1228      *  */
1229     if (klass->can_remove_program (base, old_program)) {
1230       mpegts_base_deactivate_program (base, old_program);
1231       mpegts_base_free_program (old_program);
1232     } else {
1233       /* sub-class now owns the program and must call
1234        * mpegts_base_deactivate_and_free_program later */
1235       mpegts_base_steal_program (base, old_program->program_number);
1236     }
1237     /* Add new program to the programs we track */
1238     g_ptr_array_add (base->programs, program);
1239     initial_program = FALSE;
1240   } else {
1241     GST_DEBUG ("Program update, re-using same program");
1242     program = old_program;
1243   }
1244
1245   /* activate program */
1246   /* Ownership of pmt_info is given to the program */
1247   mpegts_base_activate_program (base, program, section->pid, section, pmt,
1248       initial_program);
1249
1250 beach:
1251   GST_DEBUG ("Done activating program");
1252   return TRUE;
1253
1254 no_program:
1255   {
1256     GST_ERROR ("Attempted to apply a PMT on a program that wasn't created");
1257     return TRUE;
1258   }
1259
1260 same_program:
1261   {
1262     GST_DEBUG ("Not applying identical program");
1263     return TRUE;
1264   }
1265 }
1266
1267 static void
1268 mpegts_base_handle_psi (MpegTSBase * base, GstMpegtsSection * section)
1269 {
1270   gboolean post_message = TRUE;
1271
1272   GST_DEBUG ("Handling PSI (pid: 0x%04x , table_id: 0x%02x)",
1273       section->pid, section->table_id);
1274
1275   switch (section->section_type) {
1276     case GST_MPEGTS_SECTION_PAT:
1277       post_message = mpegts_base_apply_pat (base, section);
1278       if (base->seen_pat == FALSE) {
1279         base->seen_pat = TRUE;
1280         GST_DEBUG ("First PAT offset: %" G_GUINT64_FORMAT, section->offset);
1281         mpegts_packetizer_set_reference_offset (base->packetizer,
1282             section->offset);
1283       }
1284       break;
1285     case GST_MPEGTS_SECTION_PMT:
1286       post_message = mpegts_base_apply_pmt (base, section);
1287       break;
1288     case GST_MPEGTS_SECTION_EIT:
1289       /* some tag xtraction + posting */
1290       post_message = mpegts_base_get_tags_from_eit (base, section);
1291       break;
1292     case GST_MPEGTS_SECTION_ATSC_MGT:
1293       post_message = mpegts_base_parse_atsc_mgt (base, section);
1294       break;
1295     default:
1296       break;
1297   }
1298
1299   /* Give the subclass a chance to look at the section */
1300   if (GST_MPEGTS_BASE_GET_CLASS (base)->handle_psi)
1301     GST_MPEGTS_BASE_GET_CLASS (base)->handle_psi (base, section);
1302
1303   /* Finally post message (if it wasn't corrupted) */
1304   if (post_message)
1305     gst_element_post_message (GST_ELEMENT_CAST (base),
1306         gst_message_new_mpegts_section (GST_OBJECT (base), section));
1307   gst_mpegts_section_unref (section);
1308 }
1309
1310 static gboolean
1311 mpegts_base_parse_atsc_mgt (MpegTSBase * base, GstMpegtsSection * section)
1312 {
1313   const GstMpegtsAtscMGT *mgt;
1314   gint i;
1315
1316   mgt = gst_mpegts_section_get_atsc_mgt (section);
1317   if (G_UNLIKELY (mgt == NULL))
1318     return FALSE;
1319
1320   for (i = 0; i < mgt->tables->len; ++i) {
1321     GstMpegtsAtscMGTTable *table = g_ptr_array_index (mgt->tables, i);
1322
1323     if ((table->table_type >= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_EIT0 &&
1324             table->table_type <= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_EIT127) ||
1325         (table->table_type >= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_ETT0 &&
1326             table->table_type <= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_ETT127)) {
1327       MPEGTS_BIT_SET (base->known_psi, table->pid);
1328     }
1329   }
1330
1331   return TRUE;
1332 }
1333
1334 static gboolean
1335 mpegts_base_get_tags_from_eit (MpegTSBase * base, GstMpegtsSection * section)
1336 {
1337   const GstMpegtsEIT *eit;
1338   guint i;
1339   MpegTSBaseProgram *program;
1340
1341   /* Early exit if it's not from the present/following table_id */
1342   if (section->table_id != GST_MTS_TABLE_ID_EVENT_INFORMATION_ACTUAL_TS_PRESENT
1343       && section->table_id !=
1344       GST_MTS_TABLE_ID_EVENT_INFORMATION_OTHER_TS_PRESENT)
1345     return TRUE;
1346
1347   eit = gst_mpegts_section_get_eit (section);
1348   if (G_UNLIKELY (eit == NULL))
1349     return FALSE;
1350
1351   program = mpegts_base_get_program (base, section->subtable_extension);
1352
1353   GST_DEBUG
1354       ("program_id:0x%04x, table_id:0x%02x, actual_stream:%d, present_following:%d, program:%p",
1355       section->subtable_extension, section->table_id, eit->actual_stream,
1356       eit->present_following, program);
1357
1358   if (program && eit->present_following) {
1359     for (i = 0; i < eit->events->len; i++) {
1360       GstMpegtsEITEvent *event = g_ptr_array_index (eit->events, i);
1361       const GstMpegtsDescriptor *desc;
1362
1363       if (event->running_status == RUNNING_STATUS_RUNNING) {
1364         program->event_id = event->event_id;
1365         if ((desc =
1366                 gst_mpegts_find_descriptor (event->descriptors,
1367                     GST_MTS_DESC_DVB_SHORT_EVENT))) {
1368           gchar *name = NULL, *text = NULL;
1369
1370           if (gst_mpegts_descriptor_parse_dvb_short_event (desc, NULL, &name,
1371                   &text)) {
1372             if (!program->tags)
1373               program->tags = gst_tag_list_new_empty ();
1374
1375             if (name) {
1376               gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
1377                   GST_TAG_TITLE, name, NULL);
1378               g_free (name);
1379             }
1380             if (text) {
1381               gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
1382                   GST_TAG_DESCRIPTION, text, NULL);
1383               g_free (text);
1384             }
1385             /* FIXME : Is it correct to post an event duration as a GST_TAG_DURATION ??? */
1386             gst_tag_list_add (program->tags, GST_TAG_MERGE_APPEND,
1387                 GST_TAG_DURATION, event->duration * GST_SECOND, NULL);
1388             return TRUE;
1389           }
1390         }
1391       }
1392     }
1393   }
1394
1395   return TRUE;
1396 }
1397
1398 static void
1399 remove_each_program (MpegTSBaseProgram * program, MpegTSBase * base)
1400 {
1401   /* First deactivate it */
1402   mpegts_base_deactivate_program (base, program);
1403 }
1404
1405 static inline GstFlowReturn
1406 mpegts_base_drain (MpegTSBase * base)
1407 {
1408   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1409
1410   /* Call implementation */
1411   if (klass->drain)
1412     return klass->drain (base);
1413
1414   return GST_FLOW_OK;
1415 }
1416
1417 static inline void
1418 mpegts_base_flush (MpegTSBase * base, gboolean hard)
1419 {
1420   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1421
1422   /* Call implementation */
1423   if (klass->flush)
1424     klass->flush (base, hard);
1425 }
1426
1427 static gboolean
1428 mpegts_base_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
1429 {
1430   gboolean res = TRUE;
1431   gboolean hard;
1432   MpegTSBase *base = GST_MPEGTS_BASE (parent);
1433   gboolean is_sticky = GST_EVENT_IS_STICKY (event);
1434
1435   GST_DEBUG_OBJECT (base, "Got event %s",
1436       gst_event_type_get_name (GST_EVENT_TYPE (event)));
1437
1438   switch (GST_EVENT_TYPE (event)) {
1439     case GST_EVENT_SEGMENT:
1440       gst_event_copy_segment (event, &base->segment);
1441       GST_DEBUG_OBJECT (base, "Received segment %" GST_SEGMENT_FORMAT,
1442           &base->segment);
1443       /* Check if we need to switch PCR/PTS handling */
1444       if (base->segment.format == GST_FORMAT_TIME) {
1445         base->packetizer->calculate_offset = FALSE;
1446         base->packetizer->calculate_skew = TRUE;
1447         /* Seek was handled upstream */
1448         base->last_seek_seqnum = gst_event_get_seqnum (event);
1449       } else {
1450         base->packetizer->calculate_offset = TRUE;
1451         base->packetizer->calculate_skew = FALSE;
1452       }
1453
1454       res = GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, event);
1455       break;
1456     case GST_EVENT_STREAM_START:
1457       gst_event_unref (event);
1458       break;
1459     case GST_EVENT_CAPS:
1460       /* FIXME, do something */
1461       gst_event_unref (event);
1462       break;
1463     case GST_EVENT_FLUSH_STOP:
1464       res = GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, event);
1465       hard = (base->mode != BASE_MODE_SEEKING);
1466       mpegts_packetizer_flush (base->packetizer, hard);
1467       mpegts_base_flush (base, hard);
1468       gst_segment_init (&base->segment, GST_FORMAT_UNDEFINED);
1469       base->seen_pat = FALSE;
1470       break;
1471     default:
1472       res = GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, event);
1473   }
1474
1475   /* Always return TRUE for sticky events */
1476   if (is_sticky)
1477     res = TRUE;
1478
1479   return res;
1480 }
1481
1482 static gboolean
1483 mpegts_base_default_sink_query (MpegTSBase * base, GstQuery * query)
1484 {
1485   return gst_pad_query_default (base->sinkpad, GST_OBJECT (base), query);
1486 }
1487
1488 static gboolean
1489 mpegts_base_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
1490 {
1491   MpegTSBase *base = GST_MPEGTS_BASE (parent);
1492
1493   GST_DEBUG_OBJECT (base, "Got query %s",
1494       gst_query_type_get_name (GST_QUERY_TYPE (query)));
1495
1496   return GST_MPEGTS_BASE_GET_CLASS (base)->sink_query (base, query);
1497 }
1498
1499 static GstFlowReturn
1500 mpegts_base_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
1501 {
1502   GstFlowReturn res = GST_FLOW_OK;
1503   MpegTSBase *base;
1504   MpegTSPacketizerPacketReturn pret;
1505   MpegTSPacketizer2 *packetizer;
1506   MpegTSPacketizerPacket packet;
1507   MpegTSBaseClass *klass;
1508
1509   base = GST_MPEGTS_BASE (parent);
1510   klass = GST_MPEGTS_BASE_GET_CLASS (base);
1511
1512   packetizer = base->packetizer;
1513
1514   if (GST_BUFFER_IS_DISCONT (buf)) {
1515     GST_DEBUG_OBJECT (base, "Got DISCONT buffer, flushing");
1516     res = mpegts_base_drain (base);
1517     if (G_UNLIKELY (res != GST_FLOW_OK))
1518       return res;
1519
1520     mpegts_base_flush (base, FALSE);
1521     if (base->mode == BASE_MODE_PUSHING) {
1522       if (base->segment.format == GST_FORMAT_TIME) {
1523         /* In the case of discontinuities in push-mode with TIME segment
1524          * we want to drop all previous observations (hard:TRUE) from
1525          * the packetizer */
1526         mpegts_packetizer_flush (base->packetizer, TRUE);
1527       }
1528       /* In all cases, we clear observations when we get a discontinuity in
1529        * push-mode to re-check if the sections (PAT/PMT) changed or not */
1530       mpegts_packetizer_clear (base->packetizer);
1531     } else {
1532       mpegts_packetizer_flush (base->packetizer, FALSE);
1533     }
1534   }
1535
1536   mpegts_packetizer_push (base->packetizer, buf);
1537
1538   while (res == GST_FLOW_OK) {
1539     pret = mpegts_packetizer_next_packet (base->packetizer, &packet);
1540
1541     /* If we don't have enough data, return */
1542     if (G_UNLIKELY (pret == PACKET_NEED_MORE))
1543       break;
1544
1545     if (G_UNLIKELY (pret == PACKET_BAD)) {
1546       /* bad header, skip the packet */
1547       GST_DEBUG_OBJECT (base, "bad packet, skipping");
1548       goto next;
1549     }
1550
1551     if (klass->inspect_packet)
1552       klass->inspect_packet (base, &packet);
1553
1554     /* If it's a known PES, push it */
1555     if (MPEGTS_BIT_IS_SET (base->is_pes, packet.pid)) {
1556       /* push the packet downstream */
1557       if (base->push_data)
1558         res = klass->push (base, &packet, NULL);
1559     } else if (packet.payload
1560         && MPEGTS_BIT_IS_SET (base->known_psi, packet.pid)) {
1561       /* base PSI data */
1562       GList *others, *tmp;
1563       GstMpegtsSection *section;
1564
1565       section = mpegts_packetizer_push_section (packetizer, &packet, &others);
1566       if (section)
1567         mpegts_base_handle_psi (base, section);
1568       if (G_UNLIKELY (others)) {
1569         for (tmp = others; tmp; tmp = tmp->next)
1570           mpegts_base_handle_psi (base, (GstMpegtsSection *) tmp->data);
1571         g_list_free (others);
1572       }
1573
1574       /* we need to push section packet downstream */
1575       if (base->push_section)
1576         res = klass->push (base, &packet, section);
1577
1578     } else if (base->push_unknown) {
1579       res = klass->push (base, &packet, NULL);
1580     } else if (packet.payload && packet.pid != 0x1fff)
1581       GST_LOG ("PID 0x%04x Saw packet on a pid we don't handle", packet.pid);
1582
1583   next:
1584     mpegts_packetizer_clear_packet (base->packetizer, &packet);
1585   }
1586
1587   if (res == GST_FLOW_OK && klass->input_done)
1588     res = klass->input_done (base);
1589
1590   return res;
1591 }
1592
1593 static GstFlowReturn
1594 mpegts_base_scan (MpegTSBase * base)
1595 {
1596   GstFlowReturn ret = GST_FLOW_OK;
1597   GstBuffer *buf = NULL;
1598   guint i;
1599   gboolean done = FALSE;
1600   MpegTSPacketizerPacketReturn pret;
1601   gint64 tmpval;
1602   gint64 upstream_size, seek_pos, reverse_limit;
1603   GstFormat format;
1604   guint initial_pcr_seen;
1605
1606   GST_DEBUG ("Scanning for initial sync point");
1607
1608   /* Find initial sync point and at least 5 PCR values */
1609   for (i = 0; i < 20 && !done; i++) {
1610     GST_DEBUG ("Grabbing %d => %d", i * 65536, (i + 1) * 65536);
1611
1612     ret = gst_pad_pull_range (base->sinkpad, i * 65536, 65536, &buf);
1613     if (G_UNLIKELY (ret == GST_FLOW_EOS))
1614       break;
1615     if (G_UNLIKELY (ret != GST_FLOW_OK))
1616       goto beach;
1617
1618     /* Push to packetizer */
1619     mpegts_packetizer_push (base->packetizer, buf);
1620     buf = NULL;
1621
1622     if (mpegts_packetizer_has_packets (base->packetizer)) {
1623       if (base->seek_offset == -1) {
1624         /* Mark the initial sync point and remember the packetsize */
1625         base->seek_offset = base->packetizer->offset;
1626         GST_DEBUG ("Sync point is now %" G_GUINT64_FORMAT, base->seek_offset);
1627         base->packetsize = base->packetizer->packet_size;
1628       }
1629       while (1) {
1630         /* Eat up all packets */
1631         pret = mpegts_packetizer_process_next_packet (base->packetizer);
1632         if (pret == PACKET_NEED_MORE)
1633           break;
1634         if (pret != PACKET_BAD && base->packetizer->nb_seen_offsets >= 5) {
1635           GST_DEBUG ("Got enough initial PCR");
1636           done = TRUE;
1637           break;
1638         }
1639       }
1640     }
1641   }
1642
1643   initial_pcr_seen = base->packetizer->nb_seen_offsets;
1644   if (G_UNLIKELY (initial_pcr_seen == 0))
1645     goto no_initial_pcr;
1646   GST_DEBUG ("Seen %d initial PCR", initial_pcr_seen);
1647
1648   /* Now send data from the end */
1649
1650   /* Get the size of upstream */
1651   format = GST_FORMAT_BYTES;
1652   if (!gst_pad_peer_query_duration (base->sinkpad, format, &tmpval))
1653     goto beach;
1654   upstream_size = tmpval;
1655
1656   /* The scanning takes place on the last 2048kB. Considering PCR should
1657    * be present at least every 100ms, this should cope with streams
1658    * up to 160Mbit/s */
1659   reverse_limit = MAX (0, upstream_size - 2097152);
1660
1661   /* Find last PCR value, searching backwards by chunks of 300 MPEG-ts packets */
1662   for (seek_pos = MAX (0, upstream_size - 56400);
1663       seek_pos >= reverse_limit; seek_pos -= 56400) {
1664     mpegts_packetizer_clear (base->packetizer);
1665     GST_DEBUG ("Grabbing %" G_GUINT64_FORMAT " => %" G_GUINT64_FORMAT, seek_pos,
1666         seek_pos + 56400);
1667
1668     ret = gst_pad_pull_range (base->sinkpad, seek_pos, 56400, &buf);
1669     if (G_UNLIKELY (ret == GST_FLOW_EOS))
1670       break;
1671     if (G_UNLIKELY (ret != GST_FLOW_OK))
1672       goto beach;
1673
1674     /* Push to packetizer */
1675     mpegts_packetizer_push (base->packetizer, buf);
1676     buf = NULL;
1677
1678     if (mpegts_packetizer_has_packets (base->packetizer)) {
1679       pret = PACKET_OK;
1680       /* Eat up all packets, really try to get last PCR(s) */
1681       while (pret != PACKET_NEED_MORE)
1682         pret = mpegts_packetizer_process_next_packet (base->packetizer);
1683
1684       if (base->packetizer->nb_seen_offsets > initial_pcr_seen) {
1685         GST_DEBUG ("Got last PCR(s) (total seen:%d)",
1686             base->packetizer->nb_seen_offsets);
1687         break;
1688       }
1689     }
1690   }
1691
1692 beach:
1693   mpegts_packetizer_clear (base->packetizer);
1694   return ret;
1695
1696 no_initial_pcr:
1697   mpegts_packetizer_clear (base->packetizer);
1698   GST_WARNING_OBJECT (base, "Couldn't find any PCR within the first %d bytes",
1699       10 * 65536);
1700   return GST_FLOW_OK;
1701 }
1702
1703
1704 static void
1705 mpegts_base_loop (MpegTSBase * base)
1706 {
1707   GstFlowReturn ret = GST_FLOW_ERROR;
1708
1709   switch (base->mode) {
1710     case BASE_MODE_SCANNING:
1711       /* Find first sync point */
1712       ret = mpegts_base_scan (base);
1713       if (G_UNLIKELY (ret != GST_FLOW_OK))
1714         goto error;
1715       base->mode = BASE_MODE_STREAMING;
1716       GST_DEBUG ("Changing to Streaming");
1717       break;
1718     case BASE_MODE_SEEKING:
1719       /* FIXME : unclear if we still need mode_seeking... */
1720       base->mode = BASE_MODE_STREAMING;
1721       break;
1722     case BASE_MODE_STREAMING:
1723     {
1724       GstBuffer *buf = NULL;
1725
1726       GST_DEBUG ("Pulling data from %" G_GUINT64_FORMAT, base->seek_offset);
1727
1728       if (G_UNLIKELY (base->last_seek_seqnum == GST_SEQNUM_INVALID)) {
1729         /* No configured seek, set a valid seqnum */
1730         base->last_seek_seqnum = gst_util_seqnum_next ();
1731       }
1732       ret = gst_pad_pull_range (base->sinkpad, base->seek_offset,
1733           100 * base->packetsize, &buf);
1734       if (G_UNLIKELY (ret != GST_FLOW_OK))
1735         goto error;
1736       base->seek_offset += gst_buffer_get_size (buf);
1737       ret = mpegts_base_chain (base->sinkpad, GST_OBJECT_CAST (base), buf);
1738       if (G_UNLIKELY (ret != GST_FLOW_OK))
1739         goto error;
1740     }
1741       break;
1742     case BASE_MODE_PUSHING:
1743       GST_WARNING ("wrong BASE_MODE_PUSHING mode in pull loop");
1744       break;
1745   }
1746
1747   return;
1748
1749 error:
1750   {
1751     GST_DEBUG_OBJECT (base, "Pausing task, reason %s", gst_flow_get_name (ret));
1752     if (ret == GST_FLOW_EOS) {
1753       if (!GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base,
1754               gst_event_new_eos ()))
1755         GST_ELEMENT_ERROR (base, STREAM, FAILED,
1756             (_("Internal data stream error.")),
1757             ("No program activated before EOS"));
1758     } else if (ret == GST_FLOW_NOT_LINKED || ret < GST_FLOW_EOS) {
1759       GST_ELEMENT_FLOW_ERROR (base, ret);
1760       GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, gst_event_new_eos ());
1761     }
1762     gst_pad_pause_task (base->sinkpad);
1763   }
1764 }
1765
1766
1767 gboolean
1768 mpegts_base_handle_seek_event (MpegTSBase * base, GstPad * pad,
1769     GstEvent * event)
1770 {
1771   MpegTSBaseClass *klass = GST_MPEGTS_BASE_GET_CLASS (base);
1772   GstFlowReturn ret = GST_FLOW_ERROR;
1773   gdouble rate;
1774   gboolean flush, instant_rate_change;
1775   GstFormat format;
1776   GstSeekFlags flags;
1777   GstSeekType start_type, stop_type;
1778   gint64 start, stop;
1779   GstEvent *flush_event = NULL;
1780
1781   gst_event_parse_seek (event, &rate, &format, &flags, &start_type, &start,
1782       &stop_type, &stop);
1783
1784   if (format != GST_FORMAT_TIME)
1785     return FALSE;
1786
1787   if (GST_EVENT_SEQNUM (event) == base->last_seek_seqnum) {
1788     GST_DEBUG_OBJECT (base, "Skipping already handled seek");
1789     return TRUE;
1790   }
1791
1792   if (base->mode == BASE_MODE_PUSHING) {
1793     /* First try if upstream supports seeking in TIME format */
1794     if (gst_pad_push_event (base->sinkpad, gst_event_ref (event))) {
1795       GST_DEBUG ("upstream handled SEEK event");
1796       return TRUE;
1797     }
1798
1799     /* If the subclass can seek, do that */
1800     if (klass->seek) {
1801       ret = klass->seek (base, event);
1802       if (G_UNLIKELY (ret != GST_FLOW_OK))
1803         GST_WARNING ("seeking failed %s", gst_flow_get_name (ret));
1804       else {
1805         GstEvent *new_seek;
1806
1807         if (GST_CLOCK_TIME_IS_VALID (base->seek_offset)) {
1808           base->mode = BASE_MODE_SEEKING;
1809           new_seek = gst_event_new_seek (rate, GST_FORMAT_BYTES, flags,
1810               GST_SEEK_TYPE_SET, base->seek_offset, GST_SEEK_TYPE_NONE, -1);
1811           gst_event_set_seqnum (new_seek, GST_EVENT_SEQNUM (event));
1812           if (!gst_pad_push_event (base->sinkpad, new_seek))
1813             ret = GST_FLOW_ERROR;
1814           else
1815             base->last_seek_seqnum = GST_EVENT_SEQNUM (event);
1816         }
1817         base->mode = BASE_MODE_PUSHING;
1818       }
1819     } else {
1820       GST_WARNING ("subclass has no seek implementation");
1821     }
1822
1823     return ret == GST_FLOW_OK;
1824   }
1825
1826   if (!klass->seek) {
1827     GST_WARNING ("subclass has no seek implementation");
1828     return FALSE;
1829   }
1830
1831   if (rate <= 0.0) {
1832     GST_WARNING ("Negative rate not supported");
1833     return FALSE;
1834   }
1835
1836   GST_DEBUG ("seek event, rate: %f start: %" GST_TIME_FORMAT
1837       " stop: %" GST_TIME_FORMAT, rate, GST_TIME_ARGS (start),
1838       GST_TIME_ARGS (stop));
1839
1840   flush = ! !(flags & GST_SEEK_FLAG_FLUSH);
1841   instant_rate_change = ! !(flags & GST_SEEK_FLAG_INSTANT_RATE_CHANGE);
1842
1843   /* Directly send the instant-rate-change event here before taking the
1844    * stream-lock so that it can be applied as soon as possible */
1845   if (base->mode != BASE_MODE_PUSHING && instant_rate_change) {
1846     GstEvent *ev;
1847
1848     /* instant rate change only supported if direction does not change. All
1849      * other requirements are already checked before creating the seek event
1850      * but let's double-check here to be sure */
1851     if ((rate > 0 && base->out_segment.rate < 0) ||
1852         (rate < 0 && base->out_segment.rate > 0) ||
1853         start_type != GST_SEEK_TYPE_NONE ||
1854         stop_type != GST_SEEK_TYPE_NONE || flush) {
1855       GST_ERROR_OBJECT (base,
1856           "Instant rate change seeks only supported in the "
1857           "same direction, without flushing and position change");
1858       return FALSE;
1859     }
1860
1861     ev = gst_event_new_instant_rate_change (rate / base->out_segment.rate,
1862         (GstSegmentFlags) (flags));
1863     gst_event_set_seqnum (ev, GST_EVENT_SEQNUM (event));
1864     GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, ev);
1865     return TRUE;
1866   }
1867
1868   /* stop streaming, either by flushing or by pausing the task */
1869   base->mode = BASE_MODE_SEEKING;
1870   if (flush) {
1871     GST_DEBUG_OBJECT (base, "sending flush start");
1872     flush_event = gst_event_new_flush_start ();
1873     gst_event_set_seqnum (flush_event, GST_EVENT_SEQNUM (event));
1874     gst_pad_push_event (base->sinkpad, gst_event_ref (flush_event));
1875     GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, flush_event);
1876   } else
1877     gst_pad_pause_task (base->sinkpad);
1878
1879   /* wait for streaming to finish */
1880   GST_PAD_STREAM_LOCK (base->sinkpad);
1881
1882   if (flush) {
1883     /* send a FLUSH_STOP for the sinkpad, since we need data for seeking */
1884     GST_DEBUG_OBJECT (base, "sending flush stop");
1885     flush_event = gst_event_new_flush_stop (TRUE);
1886     gst_event_set_seqnum (flush_event, GST_EVENT_SEQNUM (event));
1887
1888     /* ref for it to be reused later */
1889     gst_pad_push_event (base->sinkpad, gst_event_ref (flush_event));
1890     /* And actually flush our pending data but allow to preserve some info
1891      * to perform the seek */
1892     mpegts_base_flush (base, FALSE);
1893     mpegts_packetizer_flush (base->packetizer, FALSE);
1894   }
1895
1896   if (flags & (GST_SEEK_FLAG_SEGMENT)) {
1897     GST_WARNING ("seek flags 0x%x are not supported", (int) flags);
1898     goto done;
1899   }
1900
1901
1902   /* If the subclass can seek, do that */
1903   ret = klass->seek (base, event);
1904   if (G_UNLIKELY (ret != GST_FLOW_OK))
1905     GST_WARNING ("seeking failed %s", gst_flow_get_name (ret));
1906   else
1907     base->last_seek_seqnum = GST_EVENT_SEQNUM (event);
1908
1909   if (flush_event) {
1910     /* if we sent a FLUSH_START, we now send a FLUSH_STOP */
1911     GST_DEBUG_OBJECT (base, "sending flush stop");
1912     GST_MPEGTS_BASE_GET_CLASS (base)->push_event (base, flush_event);
1913     flush_event = NULL;
1914   }
1915 done:
1916   if (flush_event)
1917     gst_event_unref (flush_event);
1918   gst_pad_start_task (base->sinkpad, (GstTaskFunction) mpegts_base_loop, base,
1919       NULL);
1920
1921   GST_PAD_STREAM_UNLOCK (base->sinkpad);
1922   return ret == GST_FLOW_OK;
1923 }
1924
1925
1926 static gboolean
1927 mpegts_base_sink_activate (GstPad * sinkpad, GstObject * parent)
1928 {
1929   GstQuery *query;
1930   gboolean pull_mode;
1931
1932   query = gst_query_new_scheduling ();
1933
1934   if (!gst_pad_peer_query (sinkpad, query)) {
1935     gst_query_unref (query);
1936     goto activate_push;
1937   }
1938
1939   pull_mode = gst_query_has_scheduling_mode_with_flags (query,
1940       GST_PAD_MODE_PULL, GST_SCHEDULING_FLAG_SEEKABLE);
1941   gst_query_unref (query);
1942
1943   if (!pull_mode)
1944     goto activate_push;
1945
1946   GST_DEBUG_OBJECT (sinkpad, "activating pull");
1947   return gst_pad_activate_mode (sinkpad, GST_PAD_MODE_PULL, TRUE);
1948
1949 activate_push:
1950   {
1951     GST_DEBUG_OBJECT (sinkpad, "activating push");
1952     return gst_pad_activate_mode (sinkpad, GST_PAD_MODE_PUSH, TRUE);
1953   }
1954 }
1955
1956 static gboolean
1957 mpegts_base_sink_activate_mode (GstPad * pad, GstObject * parent,
1958     GstPadMode mode, gboolean active)
1959 {
1960   gboolean res;
1961   MpegTSBase *base = GST_MPEGTS_BASE (parent);
1962
1963   switch (mode) {
1964     case GST_PAD_MODE_PUSH:
1965       base->mode = BASE_MODE_PUSHING;
1966       res = TRUE;
1967       break;
1968     case GST_PAD_MODE_PULL:
1969       if (active) {
1970         base->mode = BASE_MODE_SCANNING;
1971         /* When working pull-based, we always use offsets for estimation */
1972         base->packetizer->calculate_offset = TRUE;
1973         base->packetizer->calculate_skew = FALSE;
1974         gst_segment_init (&base->segment, GST_FORMAT_BYTES);
1975         res =
1976             gst_pad_start_task (pad, (GstTaskFunction) mpegts_base_loop, base,
1977             NULL);
1978       } else
1979         res = gst_pad_stop_task (pad);
1980       break;
1981     default:
1982       res = FALSE;
1983       break;
1984   }
1985   return res;
1986 }
1987
1988 static GstStateChangeReturn
1989 mpegts_base_change_state (GstElement * element, GstStateChange transition)
1990 {
1991   MpegTSBase *base;
1992   GstStateChangeReturn ret;
1993
1994   base = GST_MPEGTS_BASE (element);
1995
1996   switch (transition) {
1997     case GST_STATE_CHANGE_READY_TO_PAUSED:
1998       mpegts_base_reset (base);
1999       break;
2000     default:
2001       break;
2002   }
2003
2004   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
2005
2006   switch (transition) {
2007     case GST_STATE_CHANGE_PAUSED_TO_READY:
2008       mpegts_base_reset (base);
2009       if (base->mode != BASE_MODE_PUSHING)
2010         base->mode = BASE_MODE_SCANNING;
2011       break;
2012     default:
2013       break;
2014   }
2015
2016   return ret;
2017 }
2018
2019 gboolean
2020 gst_mpegtsbase_plugin_init (GstPlugin * plugin)
2021 {
2022   GST_DEBUG_CATEGORY_INIT (mpegts_base_debug, "mpegtsbase", 0,
2023       "MPEG transport stream base class");
2024
2025   return TRUE;
2026 }