60 #define SEGMENT_LIST_FLAG_CACHE 1
61 #define SEGMENT_LIST_FLAG_LIVE 2
106 int needs_quoting = !!str[strcspn(str,
"\",\n\r")];
111 for (; *str; str++) {
219 double max_duration = 0;
229 avio_printf(seg->
list_pb,
"#EXT-X-TARGETDURATION:%"PRId64
"\n", (int64_t)ceil(max_duration));
260 "Error writing list entry '%s' in list file\n", list_entry->
filename);
295 memcpy(entry, &seg->
cur_entry,
sizeof(*entry));
328 static int parse_times(
void *log_ctx, int64_t **times,
int *nb_times,
329 const char *times_str)
334 char *saveptr = NULL;
339 #define FAIL(err) ret = err; goto end
342 for (p = times_str1; *p; p++)
346 *times =
av_malloc(
sizeof(**times) * *nb_times);
353 for (i = 0; i < *nb_times; i++) {
355 char *tstr =
av_strtok(p,
",", &saveptr);
358 if (!tstr || !tstr[0]) {
367 "Invalid time duration specification '%s' in times list %s\n", tstr, times_str);
373 if (i && (*times)[i-1] > (*times)[i]) {
375 "Specified time %f is greater than the following time %f\n",
376 (
float)((*times)[i])/1000000, (
float)((*times)[i-1])/1000000);
387 const char *frames_str)
391 char *frames_str1 =
av_strdup(frames_str);
392 char *saveptr = NULL;
397 #define FAIL(err) ret = err; goto end
400 for (p = frames_str1; *p; p++)
404 *frames =
av_malloc(
sizeof(**frames) * *nb_frames);
411 for (i = 0; i < *nb_frames; i++) {
414 char *fstr =
av_strtok(p,
",", &saveptr);
422 f = strtol(fstr, &tailptr, 10);
423 if (*tailptr || f <= 0 || f >= INT_MAX) {
425 "Invalid argument '%s', must be a positive integer <= INT64_MAX\n",
432 if (i && (*frames)[i-1] > (*frames)[i]) {
434 "Specified frame %d is greater than the following frame %d\n",
435 (*frames)[i], (*frames)[i-1]);
447 int buf_size = 32768;
474 static const enum AVMediaType type_priority_list[] = {
484 type_index_map[i] = -1;
489 if ((
unsigned)type < AVMEDIA_TYPE_NB && type_index_map[type] == -1
492 type_index_map[type] = i;
496 type = type_priority_list[i];
534 "segment_time, segment_times, and segment_frames options "
535 "are mutually exclusive, select just one of them\n");
551 "Invalid time duration specification '%s' for segment_time option\n",
560 "Invalid time duration specification '%s' for delta option\n",
647 int64_t end_pts = INT64_MAX;
648 int start_frame = INT_MAX;
661 av_dlog(s,
"packet stream:%d pts:%s pts_time:%s is_key:%d frame:%d\n",
691 av_log(s,
AV_LOG_DEBUG,
"segment:'%s' starts with packet stream:%d pts:%s pts_time:%s frame:%d\n",
698 av_log(s,
AV_LOG_DEBUG,
"stream:%d start_pts_time:%s pts:%s pts_time:%s dts:%s dts_time:%s",
765 #define OFFSET(x) offsetof(SegmentContext, x)
766 #define E AV_OPT_FLAG_ENCODING_PARAM
768 {
"reference_stream",
"set reference stream",
OFFSET(reference_stream_specifier),
AV_OPT_TYPE_STRING, {.str =
"auto"}, CHAR_MIN, CHAR_MAX,
E },
769 {
"segment_format",
"set container format used for the segments",
OFFSET(format),
AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0,
E },
776 {
"segment_list_size",
"set the maximum number of playlist entries",
OFFSET(list_size),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX,
E },
787 {
"segment_time_delta",
"set approximation value used for the segment times",
OFFSET(time_delta_str),
AV_OPT_TYPE_STRING, {.str =
"0"}, 0, 0,
E },
790 {
"segment_wrap",
"set number after which the index wraps",
OFFSET(segment_idx_wrap),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX,
E },
791 {
"segment_start_number",
"set the sequence number of the first segment",
OFFSET(segment_idx),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX,
E },
793 {
"individual_header_trailer",
"write header/trailer to each segment",
OFFSET(individual_header_trailer),
AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1,
E },
794 {
"write_header_trailer",
"write a header to the first segment and a trailer to the last one",
OFFSET(write_header_trailer),
AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1,
E },
795 {
"reset_timestamps",
"reset timestamps at the begin of each segment",
OFFSET(reset_timestamps),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1,
E },
814 .priv_class = &seg_class,
825 .
name =
"stream_segment,ssegment",
832 .priv_class = &sseg_class,