From 3966e730c9a697e2dc66b1a613422aefe2214d9c Mon Sep 17 00:00:00 2001 From: Zaheer Abbas Merali Date: Wed, 5 Dec 2007 12:40:05 +0000 Subject: gst/mpegtsparse/: A sub table is identified by the pair table_id and sub_table_identifier, not by pid. So hash with t... Original commit message from CVS: * gst/mpegtsparse/mpegtspacketizer.c: * gst/mpegtsparse/mpegtsparse.c: A sub table is identified by the pair table_id and sub_table_identifier, not by pid. So hash with that. * sys/dvb/dvbbasebin.c: Make sure initial pids are added properly to filter, --- gst/mpegtsparse/mpegtsparse.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'gst/mpegtsparse/mpegtsparse.c') diff --git a/gst/mpegtsparse/mpegtsparse.c b/gst/mpegtsparse/mpegtsparse.c index f0f5a7e2..4d3ba889 100644 --- a/gst/mpegtsparse/mpegtsparse.c +++ b/gst/mpegtsparse/mpegtsparse.c @@ -940,30 +940,27 @@ static void mpegts_parse_apply_nit (MpegTSParse * parse, guint16 pmt_pid, GstStructure * nit_info) { - /*gst_element_post_message(GST_ELEMENT_CAST(parse), - * gst_message_new_element (GST_OBJECT(parse), - * gst_structure_copy(nit_info))); - */ + gst_element_post_message (GST_ELEMENT_CAST (parse), + gst_message_new_element (GST_OBJECT (parse), + gst_structure_copy (nit_info))); } static void mpegts_parse_apply_sdt (MpegTSParse * parse, guint16 pmt_pid, GstStructure * sdt_info) { - /*gst_element_post_message(GST_ELEMENT_CAST(parse), - * gst_message_new_element (GST_OBJECT(parse), - * gst_structure_copy(sdt_info))); - */ + gst_element_post_message (GST_ELEMENT_CAST (parse), + gst_message_new_element (GST_OBJECT (parse), + gst_structure_copy (sdt_info))); } static void mpegts_parse_apply_eit (MpegTSParse * parse, guint16 pmt_pid, GstStructure * eit_info) { - /*gst_element_post_message(GST_ELEMENT_CAST(parse), - * gst_message_new_element (GST_OBJECT(parse), - * gst_structure_copy(eit_info))); - */ + gst_element_post_message (GST_ELEMENT_CAST (parse), + gst_message_new_element (GST_OBJECT (parse), + gst_structure_copy (eit_info))); } static gboolean -- cgit v1.2.1