Searched refs:cached_parsed (Results 1 – 6 of 6) sorted by relevance
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/mpegts/ |
D | gst-dvb-section.c | 301 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_eit() 303 if (!section->cached_parsed) in gst_mpegts_section_get_eit() 304 section->cached_parsed = __common_section_checks (section, 18, _parse_eit, in gst_mpegts_section_get_eit() 307 return (const GstMpegtsEIT *) section->cached_parsed; in gst_mpegts_section_get_eit() 476 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_bat() 478 if (!section->cached_parsed) in gst_mpegts_section_get_bat() 479 section->cached_parsed = in gst_mpegts_section_get_bat() 483 return (const GstMpegtsBAT *) section->cached_parsed; in gst_mpegts_section_get_bat() 656 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_nit() 658 if (!section->cached_parsed) in gst_mpegts_section_get_nit() [all …]
|
D | gstmpegtssection.c | 209 if (section->cached_parsed && section->destroy_parsed) in _gst_mpegts_section_free() 210 section->destroy_parsed (section->cached_parsed); in _gst_mpegts_section_free() 241 copy->cached_parsed = NULL; in _gst_mpegts_section_copy() 518 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_pat() 520 if (!section->cached_parsed) in gst_mpegts_section_get_pat() 521 section->cached_parsed = in gst_mpegts_section_get_pat() 525 if (section->cached_parsed) in gst_mpegts_section_get_pat() 526 return g_ptr_array_ref ((GPtrArray *) section->cached_parsed); in gst_mpegts_section_get_pat() 628 section->cached_parsed = (gpointer) programs; in gst_mpegts_section_from_pat() 790 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_pmt() [all …]
|
D | gst-atsc-section.c | 266 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_atsc_tvct() 268 if (!section->cached_parsed) in gst_mpegts_section_get_atsc_tvct() 269 section->cached_parsed = in gst_mpegts_section_get_atsc_tvct() 273 return (const GstMpegtsAtscVCT *) section->cached_parsed; in gst_mpegts_section_get_atsc_tvct() 290 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_atsc_cvct() 292 if (!section->cached_parsed) in gst_mpegts_section_get_atsc_cvct() 293 section->cached_parsed = in gst_mpegts_section_get_atsc_cvct() 297 return (const GstMpegtsAtscVCT *) section->cached_parsed; in gst_mpegts_section_get_atsc_cvct() 538 section->cached_parsed = (gpointer) mgt; in gst_mpegts_section_from_atsc_mgt() 559 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_atsc_mgt() [all …]
|
D | gst-scte-section.c | 437 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_scte_sit() 439 if (!section->cached_parsed) in gst_mpegts_section_get_scte_sit() 440 section->cached_parsed = in gst_mpegts_section_get_scte_sit() 444 return (const GstMpegtsSCTESIT *) section->cached_parsed; in gst_mpegts_section_get_scte_sit() 903 section->cached_parsed = (gpointer) sit; in gst_mpegts_section_from_scte_sit()
|
D | gstmpegtssection.h | 224 gpointer *cached_parsed; member
|
/third_party/gstreamer/gstplugins_bad/tests/check/libs/ |
D | mpegts.c | 98 sit_section->destroy_parsed (sit_section->cached_parsed); in GST_START_TEST() 99 sit_section->cached_parsed = NULL; in GST_START_TEST() 145 sit_section->destroy_parsed (sit_section->cached_parsed); in GST_START_TEST() 146 sit_section->cached_parsed = NULL; in GST_START_TEST() 231 pat_section->destroy_parsed (pat_section->cached_parsed); in GST_START_TEST() 232 pat_section->cached_parsed = NULL; in GST_START_TEST() 312 pmt_section->destroy_parsed (pmt_section->cached_parsed); in GST_START_TEST() 313 pmt_section->cached_parsed = NULL; in GST_START_TEST() 408 nit_section->destroy_parsed (nit_section->cached_parsed); in GST_START_TEST() 409 nit_section->cached_parsed = NULL; in GST_START_TEST() [all …]
|