Searched refs:track_type (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | gxf.c | 353 int track_type, track_id, track_len; in gxf_header() local 357 track_type = avio_r8(pb); in gxf_header() 361 if (!(track_type & 0x80)) { in gxf_header() 362 av_log(s, AV_LOG_ERROR, "invalid track type %x\n", track_type); in gxf_header() 365 track_type &= 0x7f; in gxf_header() 373 if (track_type == 7 || track_type == 8 || track_type == 24) { in gxf_header() 381 idx = get_sindex(s, track_id, track_type); in gxf_header() 506 int track_type, track_id, ret; in gxf_packet() local 527 track_type = avio_r8(pb); in gxf_packet() 529 stream_index = get_sindex(s, track_id, track_type); in gxf_packet()
|
D | gxfenc.c | 48 uint32_t track_type; member 267 switch (sc->track_type) { in gxf_write_track_description() 614 avio_wl32(pb, sc->track_type); in gxf_write_umf_media_description() 674 sc->track_type = 3; in gxf_init_timecode_track() 740 sc->track_type = 2; in gxf_write_header() 784 sc->track_type = 1; in gxf_write_header() 789 sc->track_type = 9; in gxf_write_header() 795 sc->track_type = 4; in gxf_write_header() 803 sc->track_type = 6; in gxf_write_header() 807 sc->track_type = 5; in gxf_write_header()
|
/third_party/gstreamer/gstplugins_base/tools/ |
D | gst-play.c | 1124 GstPlayTrackType track_type) in play_get_nth_stream_in_collection() argument 1129 switch (track_type) { in play_get_nth_stream_in_collection() 1161 play_cycle_track_selection (GstPlay * play, GstPlayTrackType track_type) in play_cycle_track_selection() argument 1209 switch (track_type) { in play_cycle_track_selection() 1296 if (cur >= n && track_type != GST_PLAY_TRACK_TYPE_VIDEO) { in play_cycle_track_selection() 1313 stream = play_get_nth_stream_in_collection (play, cur, track_type); in play_cycle_track_selection() 1323 if (!(cur_flags & flag) && track_type != GST_PLAY_TRACK_TYPE_VIDEO) { in play_cycle_track_selection()
|
/third_party/gstreamer/gstplugins_good/gst/matroska/ |
D | matroska-parse.c | 362 guint64 track_type; in gst_matroska_parse_add_stream() local 364 if ((ret = gst_ebml_read_uint (ebml, &id, &track_type)) != GST_FLOW_OK) { in gst_matroska_parse_add_stream() 368 if (context->type != 0 && context->type != track_type) { in gst_matroska_parse_add_stream() 372 } else if (track_type < 1 || track_type > 254) { in gst_matroska_parse_add_stream() 374 track_type); in gst_matroska_parse_add_stream() 378 GST_DEBUG_OBJECT (parse, "TrackType: %" G_GUINT64_FORMAT, track_type); in gst_matroska_parse_add_stream() 381 switch (track_type) { in gst_matroska_parse_add_stream() 399 track_type); in gst_matroska_parse_add_stream()
|
D | matroska-demux.c | 786 guint64 track_type; in gst_matroska_demux_parse_stream() local 788 if ((ret = gst_ebml_read_uint (ebml, &id, &track_type)) != GST_FLOW_OK) { in gst_matroska_demux_parse_stream() 792 if (context->type != 0 && context->type != track_type) { in gst_matroska_demux_parse_stream() 796 } else if (track_type < 1 || track_type > 254) { in gst_matroska_demux_parse_stream() 798 track_type); in gst_matroska_demux_parse_stream() 802 GST_DEBUG_OBJECT (demux, "TrackType: %" G_GUINT64_FORMAT, track_type); in gst_matroska_demux_parse_stream() 805 switch (track_type) { in gst_matroska_demux_parse_stream() 822 track_type); in gst_matroska_demux_parse_stream()
|