Lines Matching defs:end
444 goto end;
452 goto end;
464 goto end;
474 goto end;
481 goto end;
491 goto end;
520 goto end;
523 goto end;
552 goto end;
556 goto end;
563 goto end;
566 goto end;
571 goto end;
578 end:
1004 const uint8_t *start, *next, *end = track->vos_data + track->vos_len;
1024 start = find_next_marker(track->vos_data, end);
1025 for (next = start; next < end; start = next) {
1028 next = find_next_marker(start + 4, end);
3338 int64_t *start, int64_t *end)
3349 get_pts_range(mov, &mov->tracks[track->src_track], start, end);
3352 *end = av_rescale(*end, track->timescale,
3360 *end = track->end_pts;
3364 *end = track->track_duration;
3369 int64_t start, end;
3370 get_pts_range(mov, track, &start, &end);
3371 return end - start;
3381 int64_t start, end;
3382 get_pts_range(mov, track, &start, &end);
3385 return end - start;
3651 * special meaning. Normally start_ct should end up positive or zero
3706 // goes at the end of each track! ... Critical for PSP playback ("Incompatible data" without it)
4170 char *end;
4176 longitude = strtod(ptr, &end);
4177 if (end == ptr) {
4181 ptr = end;
4182 latitude = strtod(ptr, &end);
4183 if (end == ptr) {
4187 ptr = end;
4188 altitude = strtod(ptr, &end);
4190 if (*end == '/')
4191 place = end + 1;
4227 char *end;
4232 longitude = strtof(ptr, &end);
4233 if (end == ptr) {
4237 ptr = end;
4238 latitude = strtof(ptr, &end);
4239 if (end == ptr) {
4243 ptr = end;
4244 altitude = strtof(ptr, &end);
5220 int first, int end)
5226 for (i = first; i < end; i++) {
5248 avio_wb32(pb, end - first); /* sample count */
5259 for (i = first; i < end; i++) {
5991 const uint8_t *start, *next, *end = pkt->data + pkt->size;
5994 start = find_next_marker(pkt->data, end);
5995 for (next = start; next < end; start = next) {
5996 next = find_next_marker(start + 4, end);
6174 // already have reliable info for the end of that track, but other
6581 goto end;
6757 end:
6840 // for this track, and we can't adjust the track end here.
6859 AVPacket *end = mov->pkt;
6863 end->size = sizeof(data);
6864 end->data = data;
6865 end->pts = dts;
6866 end->dts = dts;
6867 end->duration = 0;
6868 end->stream_index = stream_index;
6870 ret = mov_write_single_packet(s, end);
6871 av_packet_unref(end);
6918 * so, we now need to write an end sample for that subtitle.
6921 * immediately replace each other, in which case an end sample
6924 * 3) See mov_write_trailer for how the final end sample is
7057 int64_t end = av_rescale_q(c->end, c->time_base, (AVRational){1,mov->movie_timescale});
7059 pkt->duration = end - pkt->dts;
8131 int64_t end;
8136 end = avio_tell(pb);
8139 avio_seek(pb, end, SEEK_SET);