• Home
  • Raw
  • Download

Lines Matching refs:track

321 gst_matroska_track_get_buffer_timestamp (GstMatroskaTrackContext * track,  in gst_matroska_track_get_buffer_timestamp()  argument
324 if (track->dts_only) { in gst_matroska_track_get_buffer_timestamp()
332 gst_matroska_track_free (GstMatroskaTrackContext * track) in gst_matroska_track_free() argument
334 g_free (track->codec_id); in gst_matroska_track_free()
335 g_free (track->codec_name); in gst_matroska_track_free()
336 g_free (track->name); in gst_matroska_track_free()
337 g_free (track->language); in gst_matroska_track_free()
338 g_free (track->codec_priv); in gst_matroska_track_free()
339 g_free (track->codec_state); in gst_matroska_track_free()
340 gst_caps_replace (&track->caps, NULL); in gst_matroska_track_free()
342 if (track->encodings != NULL) { in gst_matroska_track_free()
345 for (i = 0; i < track->encodings->len; ++i) { in gst_matroska_track_free()
346 GstMatroskaTrackEncoding *enc = &g_array_index (track->encodings, in gst_matroska_track_free()
352 g_array_unref (track->encodings); in gst_matroska_track_free()
355 if (track->tags) in gst_matroska_track_free()
356 gst_tag_list_unref (track->tags); in gst_matroska_track_free()
358 if (track->index_table) in gst_matroska_track_free()
359 g_array_unref (track->index_table); in gst_matroska_track_free()
361 if (track->stream_headers) in gst_matroska_track_free()
362 gst_buffer_list_unref (track->stream_headers); in gst_matroska_track_free()
364 g_queue_foreach (&track->protection_event_queue, (GFunc) gst_event_unref, in gst_matroska_track_free()
366 g_queue_clear (&track->protection_event_queue); in gst_matroska_track_free()
368 if (track->protection_info) in gst_matroska_track_free()
369 gst_structure_free (track->protection_info); in gst_matroska_track_free()
371 g_free (track); in gst_matroska_track_free()