Searched refs:vct (Results 1 – 2 of 2) sorted by relevance
110 _gst_mpegts_atsc_vct_copy (GstMpegtsAtscVCT * vct) in _gst_mpegts_atsc_vct_copy() argument114 copy = g_slice_dup (GstMpegtsAtscVCT, vct); in _gst_mpegts_atsc_vct_copy()115 copy->sources = g_ptr_array_ref (vct->sources); in _gst_mpegts_atsc_vct_copy()116 copy->descriptors = g_ptr_array_ref (vct->descriptors); in _gst_mpegts_atsc_vct_copy()122 _gst_mpegts_atsc_vct_free (GstMpegtsAtscVCT * vct) in _gst_mpegts_atsc_vct_free() argument124 if (vct->sources) in _gst_mpegts_atsc_vct_free()125 g_ptr_array_unref (vct->sources); in _gst_mpegts_atsc_vct_free()126 if (vct->descriptors) in _gst_mpegts_atsc_vct_free()127 g_ptr_array_unref (vct->descriptors); in _gst_mpegts_atsc_vct_free()128 g_slice_free (GstMpegtsAtscVCT, vct); in _gst_mpegts_atsc_vct_free()[all …]
1145 const GstMpegtsAtscVCT *vct; in dump_vct() local1149 vct = gst_mpegts_section_get_atsc_cvct (section); in dump_vct()1152 vct = gst_mpegts_section_get_atsc_tvct (section); in dump_vct()1155 g_assert (vct); in dump_vct()1157 g_printf (" transport_stream_id : 0x%04x\n", vct->transport_stream_id); in dump_vct()1158 g_printf (" protocol_version : %u\n", vct->protocol_version); in dump_vct()1159 g_printf (" %d Sources:\n", vct->sources->len); in dump_vct()1160 for (i = 0; i < vct->sources->len; i++) { in dump_vct()1161 GstMpegtsAtscVCTSource *source = g_ptr_array_index (vct->sources, i); in dump_vct()1182 dump_descriptors (vct->descriptors, 7); in dump_vct()