Lines Matching defs:track
32 MOVTrack *track = &mov->tracks[index];
37 track->tag = MKTAG('r','t','p',' ');
38 track->src_track = src_index;
40 track->par = avcodec_parameters_alloc();
41 if (!track->par)
43 track->par->codec_type = AVMEDIA_TYPE_DATA;
44 track->par->codec_tag = track->tag;
46 ret = ff_rtp_chain_mux_open(&track->rtp_ctx, s, src_st, NULL,
52 track->timescale = track->rtp_ctx->streams[0]->time_base.den;
54 /* Mark the hinted track that packets written to it should be
55 * sent to this track for hinting. */
61 avcodec_parameters_free(&track->par);
63 track->timescale = 90000;
102 /* No need to keep track of smaller samples, since describing them
273 avio_w8(out, 0); /* track reference */
310 * @param trk the MOVTrack for the hint track
443 /* Write the hint data into the hint track */
459 void ff_mov_close_hinting(MOVTrack *track)
461 AVFormatContext *rtp_ctx = track->rtp_ctx;
463 avcodec_parameters_free(&track->par);
464 sample_queue_free(&track->sample_queue);