diff options
author | Zaheer Abbas Merali <zaheerabbas@merali.org> | 2007-12-05 12:40:05 +0000 |
---|---|---|
committer | Zaheer Abbas Merali <zaheerabbas@merali.org> | 2007-12-05 12:40:05 +0000 |
commit | 3966e730c9a697e2dc66b1a613422aefe2214d9c (patch) | |
tree | 22b297d906b8aaad4ac8bad7b19b75b572e61b56 /gst/mpegtsparse/mpegtsparse.c | |
parent | b762832214df06e733848c55efff325002e63cf4 (diff) | |
download | gst-plugins-bad-3966e730c9a697e2dc66b1a613422aefe2214d9c.tar.gz gst-plugins-bad-3966e730c9a697e2dc66b1a613422aefe2214d9c.tar.bz2 gst-plugins-bad-3966e730c9a697e2dc66b1a613422aefe2214d9c.zip |
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,
Diffstat (limited to 'gst/mpegtsparse/mpegtsparse.c')
-rw-r--r-- | gst/mpegtsparse/mpegtsparse.c | 21 |
1 files changed, 9 insertions, 12 deletions
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 |