Lines Matching refs:eit
934 _gst_mpegts_atsc_eit_copy (GstMpegtsAtscEIT * eit) in _gst_mpegts_atsc_eit_copy() argument
938 copy = g_slice_dup (GstMpegtsAtscEIT, eit); in _gst_mpegts_atsc_eit_copy()
939 copy->events = g_ptr_array_ref (eit->events); in _gst_mpegts_atsc_eit_copy()
945 _gst_mpegts_atsc_eit_free (GstMpegtsAtscEIT * eit) in _gst_mpegts_atsc_eit_free() argument
947 if (eit->events) in _gst_mpegts_atsc_eit_free()
948 g_ptr_array_unref (eit->events); in _gst_mpegts_atsc_eit_free()
949 g_slice_free (GstMpegtsAtscEIT, eit); in _gst_mpegts_atsc_eit_free()
959 GstMpegtsAtscEIT *eit = NULL; in _parse_atsc_eit() local
964 eit = g_slice_new0 (GstMpegtsAtscEIT); in _parse_atsc_eit()
969 eit->source_id = section->subtable_extension; in _parse_atsc_eit()
974 eit->protocol_version = GST_READ_UINT8 (data); in _parse_atsc_eit()
979 eit->events = g_ptr_array_new_with_free_func ((GDestroyNotify) in _parse_atsc_eit()
995 g_ptr_array_add (eit->events, event); in _parse_atsc_eit()
1036 return (gpointer) eit; in _parse_atsc_eit()
1039 _gst_mpegts_atsc_eit_free (eit); in _parse_atsc_eit()