Home
last modified time | relevance | path

Searched refs:tfxd (Results 1 – 6 of 6) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst-libs/gst/isoff/
Dgstisoff.c135 g_free (traf->tfxd); in gst_isoff_traf_box_clear()
138 traf->tfxd = NULL; in gst_isoff_traf_box_clear()
293 gst_isoff_tfxd_box_parse (GstTfxdBox * tfxd, GstByteReader * reader) in gst_isoff_tfxd_box_parse() argument
300 memset (tfxd, 0, sizeof (*tfxd)); in gst_isoff_tfxd_box_parse()
315 tfxd->version = version; in gst_isoff_tfxd_box_parse()
316 tfxd->flags = flags; in gst_isoff_tfxd_box_parse()
333 tfxd->time = absolute_time; in gst_isoff_tfxd_box_parse()
334 tfxd->duration = absolute_duration; in gst_isoff_tfxd_box_parse()
466 traf->tfxd = g_new0 (GstTfxdBox, 1); in gst_isoff_traf_box_parse()
470 if (!gst_isoff_tfxd_box_parse (traf->tfxd, &sub_reader)) in gst_isoff_traf_box_parse()
Dgstisoff.h184 GstTfxdBox *tfxd; member
/third_party/gstreamer/gstplugins_bad/tests/check/libs/
Disoff.c258 GstTfxdBox *tfxd; in GST_START_TEST() local
284 tfxd = traf->tfxd; in GST_START_TEST()
285 fail_unless (tfxd != NULL); in GST_START_TEST()
286 fail_unless_equals_uint64 (tfxd->time, 1188108174758706); in GST_START_TEST()
287 fail_unless_equals_uint64 (tfxd->duration, 19969161); in GST_START_TEST()
/third_party/gstreamer/gstplugins_bad/ext/smoothstreaming/
Dgstmssfragmentparser.c107 if (!traf->tfxd) { in gst_mss_fragment_parser_add_buffer()
/third_party/ffmpeg/libavformat/
Dsmoothstreamingenc.c421 static const uint8_t tfxd[] = { in parse_fragment() local
427 if (!memcmp(uuid, tfxd, 16) && len >= 8 + 16 + 4 + 16) { in parse_fragment()
/third_party/gstreamer/gstplugins_bad/
DChangeLog56378 smoothstreaming: Use isoff to parse tfxd/tfrf
56387 isoff: Add parsing mss specific tfrf and tfxd boxes
56388 This code is imported from mssdemux's tfxd/tfrf parsing function