FFmpeg
segment.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011, Luca Barbato
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file generic segmenter
23  * M3U8 specification can be find here:
24  * @url{http://tools.ietf.org/id/draft-pantos-http-live-streaming}
25  */
26 
27 #include "config_components.h"
28 
29 #include <time.h>
30 
31 #include "avformat.h"
32 #include "internal.h"
33 #include "mux.h"
34 
35 #include "libavutil/avassert.h"
36 #include "libavutil/internal.h"
37 #include "libavutil/log.h"
38 #include "libavutil/opt.h"
39 #include "libavutil/avstring.h"
40 #include "libavutil/parseutils.h"
41 #include "libavutil/mathematics.h"
42 #include "libavutil/time.h"
43 #include "libavutil/timecode.h"
45 #include "libavutil/timestamp.h"
46 
47 typedef struct SegmentListEntry {
48  int index;
50  int64_t start_pts;
51  int64_t offset_pts;
52  char *filename;
54  int64_t last_duration;
56 
57 typedef enum {
62  LIST_TYPE_EXT, ///< deprecated
65 } ListType;
66 
67 #define SEGMENT_LIST_FLAG_CACHE 1
68 #define SEGMENT_LIST_FLAG_LIVE 2
69 
70 typedef struct SegmentContext {
71  const AVClass *class; /**< Class for private options. */
72  int segment_idx; ///< index of the segment file to write, starting from 0
73  int segment_idx_wrap; ///< number after which the index wraps
74  int segment_idx_wrap_nb; ///< number of time the index has wraped
75  int segment_count; ///< number of segment files already written
78  char *format; ///< format to use for output segment files
80  char *list; ///< filename for the segment list file
81  int list_flags; ///< flags affecting list generation
82  int list_size; ///< number of entries for the segment list file
83 
84  int is_nullctx; ///< whether avf->pb is a nullctx
85  int use_clocktime; ///< flag to cut segments at regular clock time
86  int64_t clocktime_offset; //< clock offset for cutting the segments at regular clock time
87  int64_t clocktime_wrap_duration; //< wrapping duration considered for starting a new segment
88  int64_t last_val; ///< remember last time for wrap around detection
90  int header_written; ///< whether we've already called avformat_write_header
91 
92  char *entry_prefix; ///< prefix to add to list entry filenames
93  int list_type; ///< set the list type
94  AVIOContext *list_pb; ///< list file put-byte context
95  int64_t time; ///< segment duration
96  int64_t min_seg_duration; ///< minimum segment duration
97  int use_strftime; ///< flag to expand filename with strftime
98  int increment_tc; ///< flag to increment timecode if found
99 
100  char *times_str; ///< segment times specification string
101  int64_t *times; ///< list of segment interval specification
102  int nb_times; ///< number of elments in the times array
103 
104  char *frames_str; ///< segment frame numbers specification string
105  int *frames; ///< list of frame number specification
106  int nb_frames; ///< number of elments in the frames array
107  int frame_count; ///< total number of reference frames
108  int segment_frame_count; ///< number of reference frames in the segment
109 
110  int64_t time_delta;
111  int individual_header_trailer; /**< Set by a private option. */
112  int write_header_trailer; /**< Set by a private option. */
113  char *header_filename; ///< filename to write the output header to
114 
115  int reset_timestamps; ///< reset timestamps at the beginning of each segment
116  int64_t initial_offset; ///< initial timestamps offset, expressed in microseconds
117  char *reference_stream_specifier; ///< reference stream specifier
119  int64_t reference_stream_first_pts; ///< initial timestamp, expressed in microseconds
122 
124  char temp_list_filename[1024];
125 
130 
131 static void print_csv_escaped_str(AVIOContext *ctx, const char *str)
132 {
133  int needs_quoting = !!str[strcspn(str, "\",\n\r")];
134 
135  if (needs_quoting)
136  avio_w8(ctx, '"');
137 
138  for (; *str; str++) {
139  if (*str == '"')
140  avio_w8(ctx, '"');
141  avio_w8(ctx, *str);
142  }
143  if (needs_quoting)
144  avio_w8(ctx, '"');
145 }
146 
148 {
149  SegmentContext *seg = s->priv_data;
150  AVFormatContext *oc;
151  int i;
152  int ret;
153 
155  if (ret < 0)
156  return ret;
157  oc = seg->avf;
158 
159  oc->interrupt_callback = s->interrupt_callback;
160  oc->max_delay = s->max_delay;
161  av_dict_copy(&oc->metadata, s->metadata, 0);
162  oc->opaque = s->opaque;
163  oc->io_close2 = s->io_close2;
164  oc->io_open = s->io_open;
165  oc->flags = s->flags;
166 
167  for (i = 0; i < s->nb_streams; i++) {
168  AVStream *st, *ist = s->streams[i];
169  AVCodecParameters *ipar = ist->codecpar, *opar;
170 
171  st = ff_stream_clone(oc, ist);
172  if (!st)
173  return AVERROR(ENOMEM);
174  opar = st->codecpar;
175  if (!oc->oformat->codec_tag ||
176  av_codec_get_id (oc->oformat->codec_tag, ipar->codec_tag) == opar->codec_id ||
177  av_codec_get_tag(oc->oformat->codec_tag, ipar->codec_id) <= 0) {
178  opar->codec_tag = ipar->codec_tag;
179  } else {
180  opar->codec_tag = 0;
181  }
182  }
183 
184  return 0;
185 }
186 
188 {
189  SegmentContext *seg = s->priv_data;
190  AVFormatContext *oc = seg->avf;
191  size_t size;
192  int ret;
193  char buf[1024];
194  char *new_name;
195 
196  if (seg->segment_idx_wrap)
197  seg->segment_idx %= seg->segment_idx_wrap;
198  if (seg->use_strftime) {
199  time_t now0;
200  struct tm *tm, tmpbuf;
201  time(&now0);
202  tm = localtime_r(&now0, &tmpbuf);
203  if (!strftime(buf, sizeof(buf), s->url, tm)) {
204  av_log(oc, AV_LOG_ERROR, "Could not get segment filename with strftime\n");
205  return AVERROR(EINVAL);
206  }
207  } else if (av_get_frame_filename(buf, sizeof(buf),
208  s->url, seg->segment_idx) < 0) {
209  av_log(oc, AV_LOG_ERROR, "Invalid segment filename template '%s'\n", s->url);
210  return AVERROR(EINVAL);
211  }
212  new_name = av_strdup(buf);
213  if (!new_name)
214  return AVERROR(ENOMEM);
215  ff_format_set_url(oc, new_name);
216 
217  /* copy modified name in list entry */
218  size = strlen(av_basename(oc->url)) + 1;
219  if (seg->entry_prefix)
220  size += strlen(seg->entry_prefix);
221 
222  if ((ret = av_reallocp(&seg->cur_entry.filename, size)) < 0)
223  return ret;
224  snprintf(seg->cur_entry.filename, size, "%s%s",
225  seg->entry_prefix ? seg->entry_prefix : "",
226  av_basename(oc->url));
227 
228  return 0;
229 }
230 
232 {
233  SegmentContext *seg = s->priv_data;
234  AVFormatContext *oc = seg->avf;
235  int err = 0;
236 
237  if (write_header) {
239  seg->avf = NULL;
240  if ((err = segment_mux_init(s)) < 0)
241  return err;
242  oc = seg->avf;
243  }
244 
245  seg->segment_idx++;
246  if ((seg->segment_idx_wrap) && (seg->segment_idx % seg->segment_idx_wrap == 0))
247  seg->segment_idx_wrap_nb++;
248 
249  if ((err = set_segment_filename(s)) < 0)
250  return err;
251 
252  if ((err = s->io_open(s, &oc->pb, oc->url, AVIO_FLAG_WRITE, NULL)) < 0) {
253  av_log(s, AV_LOG_ERROR, "Failed to open segment '%s'\n", oc->url);
254  return err;
255  }
256  if (!seg->individual_header_trailer)
257  oc->pb->seekable = 0;
258 
259  if (oc->oformat->priv_class && oc->priv_data)
260  av_opt_set(oc->priv_data, "mpegts_flags", "+resend_headers", 0);
261 
262  if (write_header) {
265  av_dict_set(&options, "fflags", "-autobsf", 0);
266  err = avformat_write_header(oc, &options);
268  if (err < 0)
269  return err;
270  }
271 
272  seg->segment_frame_count = 0;
273  return 0;
274 }
275 
277 {
278  SegmentContext *seg = s->priv_data;
279  int ret;
280 
281  snprintf(seg->temp_list_filename, sizeof(seg->temp_list_filename), seg->use_rename ? "%s.tmp" : "%s", seg->list);
282  ret = s->io_open(s, &seg->list_pb, seg->temp_list_filename, AVIO_FLAG_WRITE, NULL);
283  if (ret < 0) {
284  av_log(s, AV_LOG_ERROR, "Failed to open segment list '%s'\n", seg->list);
285  return ret;
286  }
287 
288  if (seg->list_type == LIST_TYPE_M3U8 && seg->segment_list_entries) {
289  SegmentListEntry *entry;
290  double max_duration = 0;
291 
292  avio_printf(seg->list_pb, "#EXTM3U\n");
293  avio_printf(seg->list_pb, "#EXT-X-VERSION:3\n");
294  avio_printf(seg->list_pb, "#EXT-X-MEDIA-SEQUENCE:%d\n", seg->segment_list_entries->index);
295  avio_printf(seg->list_pb, "#EXT-X-ALLOW-CACHE:%s\n",
296  seg->list_flags & SEGMENT_LIST_FLAG_CACHE ? "YES" : "NO");
297 
298  av_log(s, AV_LOG_VERBOSE, "EXT-X-MEDIA-SEQUENCE:%d\n",
300 
301  for (entry = seg->segment_list_entries; entry; entry = entry->next)
302  max_duration = FFMAX(max_duration, entry->end_time - entry->start_time);
303  avio_printf(seg->list_pb, "#EXT-X-TARGETDURATION:%"PRId64"\n", (int64_t)ceil(max_duration));
304  } else if (seg->list_type == LIST_TYPE_FFCONCAT) {
305  avio_printf(seg->list_pb, "ffconcat version 1.0\n");
306  }
307 
308  return ret;
309 }
310 
311 static void segment_list_print_entry(AVIOContext *list_ioctx,
312  ListType list_type,
313  const SegmentListEntry *list_entry,
314  void *log_ctx)
315 {
316  switch (list_type) {
317  case LIST_TYPE_FLAT:
318  avio_printf(list_ioctx, "%s\n", list_entry->filename);
319  break;
320  case LIST_TYPE_CSV:
321  case LIST_TYPE_EXT:
322  print_csv_escaped_str(list_ioctx, list_entry->filename);
323  avio_printf(list_ioctx, ",%f,%f\n", list_entry->start_time, list_entry->end_time);
324  break;
325  case LIST_TYPE_M3U8:
326  avio_printf(list_ioctx, "#EXTINF:%f,\n%s\n",
327  list_entry->end_time - list_entry->start_time, list_entry->filename);
328  break;
329  case LIST_TYPE_FFCONCAT:
330  {
331  char *buf;
332  if (av_escape(&buf, list_entry->filename, NULL, AV_ESCAPE_MODE_AUTO, AV_ESCAPE_FLAG_WHITESPACE) < 0) {
333  av_log(log_ctx, AV_LOG_WARNING,
334  "Error writing list entry '%s' in list file\n", list_entry->filename);
335  return;
336  }
337  avio_printf(list_ioctx, "file %s\n", buf);
338  av_free(buf);
339  break;
340  }
341  default:
342  av_assert0(!"Invalid list type");
343  }
344 }
345 
346 static int segment_end(AVFormatContext *s, int write_trailer, int is_last)
347 {
348  SegmentContext *seg = s->priv_data;
349  AVFormatContext *oc = seg->avf;
350  int ret = 0;
351  AVTimecode tc;
352  AVRational rate;
353  AVDictionaryEntry *tcr;
354  char buf[AV_TIMECODE_STR_SIZE];
355  int i;
356  int err;
357 
358  if (!oc || !oc->pb)
359  return AVERROR(EINVAL);
360 
361  av_write_frame(oc, NULL); /* Flush any buffered data (fragmented mp4) */
362  if (write_trailer)
363  ret = av_write_trailer(oc);
364 
365  if (ret < 0)
366  av_log(s, AV_LOG_ERROR, "Failure occurred when ending segment '%s'\n",
367  oc->url);
368 
369  if (seg->list) {
370  if (seg->list_size || seg->list_type == LIST_TYPE_M3U8) {
371  SegmentListEntry *entry = av_mallocz(sizeof(*entry));
372  if (!entry) {
373  ret = AVERROR(ENOMEM);
374  goto end;
375  }
376 
377  /* append new element */
378  memcpy(entry, &seg->cur_entry, sizeof(*entry));
379  entry->filename = av_strdup(entry->filename);
380  if (!seg->segment_list_entries)
382  else
383  seg->segment_list_entries_end->next = entry;
384  seg->segment_list_entries_end = entry;
385 
386  /* drop first item */
387  if (seg->list_size && seg->segment_count >= seg->list_size) {
388  entry = seg->segment_list_entries;
390  av_freep(&entry->filename);
391  av_freep(&entry);
392  }
393 
394  if ((ret = segment_list_open(s)) < 0)
395  goto end;
396  for (entry = seg->segment_list_entries; entry; entry = entry->next)
397  segment_list_print_entry(seg->list_pb, seg->list_type, entry, s);
398  if (seg->list_type == LIST_TYPE_M3U8 && is_last)
399  avio_printf(seg->list_pb, "#EXT-X-ENDLIST\n");
400  ff_format_io_close(s, &seg->list_pb);
401  if (seg->use_rename)
402  ff_rename(seg->temp_list_filename, seg->list, s);
403  } else {
405  avio_flush(seg->list_pb);
406  }
407  }
408 
409  av_log(s, AV_LOG_VERBOSE, "segment:'%s' count:%d ended\n",
410  seg->avf->url, seg->segment_count);
411  seg->segment_count++;
412 
413  if (seg->increment_tc) {
414  tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
415  if (tcr) {
416  /* search the first video stream */
417  for (i = 0; i < s->nb_streams; i++) {
418  if (s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
419  rate = s->streams[i]->avg_frame_rate;/* Get fps from the video stream */
420  err = av_timecode_init_from_string(&tc, rate, tcr->value, s);
421  if (err < 0) {
422  av_log(s, AV_LOG_WARNING, "Could not increment global timecode, error occurred during timecode creation.\n");
423  break;
424  }
425  tc.start += (int)((seg->cur_entry.end_time - seg->cur_entry.start_time) * av_q2d(rate));/* increment timecode */
426  av_dict_set(&s->metadata, "timecode",
427  av_timecode_make_string(&tc, buf, 0), 0);
428  break;
429  }
430  }
431  } else {
432  av_log(s, AV_LOG_WARNING, "Could not increment global timecode, no global timecode metadata found.\n");
433  }
434  for (i = 0; i < s->nb_streams; i++) {
435  if (s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
436  char st_buf[AV_TIMECODE_STR_SIZE];
437  AVTimecode st_tc;
438  AVRational st_rate = s->streams[i]->avg_frame_rate;
439  AVDictionaryEntry *st_tcr = av_dict_get(s->streams[i]->metadata, "timecode", NULL, 0);
440  if (st_tcr) {
441  if ((av_timecode_init_from_string(&st_tc, st_rate, st_tcr->value, s) < 0)) {
442  av_log(s, AV_LOG_WARNING, "Could not increment stream %d timecode, error occurred during timecode creation.\n", i);
443  continue;
444  }
445  st_tc.start += (int)((seg->cur_entry.end_time - seg->cur_entry.start_time) * av_q2d(st_rate)); // increment timecode
446  av_dict_set(&s->streams[i]->metadata, "timecode", av_timecode_make_string(&st_tc, st_buf, 0), 0);
447  }
448  }
449  }
450  }
451 
452 end:
453  ff_format_io_close(oc, &oc->pb);
454 
455  return ret;
456 }
457 
458 static int parse_times(void *log_ctx, int64_t **times, int *nb_times,
459  const char *times_str)
460 {
461  char *p;
462  int i, ret = 0;
463  char *times_str1 = av_strdup(times_str);
464  char *saveptr = NULL;
465 
466  if (!times_str1)
467  return AVERROR(ENOMEM);
468 
469 #define FAIL(err) ret = err; goto end
470 
471  *nb_times = 1;
472  for (p = times_str1; *p; p++)
473  if (*p == ',')
474  (*nb_times)++;
475 
476  *times = av_malloc_array(*nb_times, sizeof(**times));
477  if (!*times) {
478  av_log(log_ctx, AV_LOG_ERROR, "Could not allocate forced times array\n");
479  FAIL(AVERROR(ENOMEM));
480  }
481 
482  p = times_str1;
483  for (i = 0; i < *nb_times; i++) {
484  int64_t t;
485  char *tstr = av_strtok(p, ",", &saveptr);
486  p = NULL;
487 
488  if (!tstr || !tstr[0]) {
489  av_log(log_ctx, AV_LOG_ERROR, "Empty time specification in times list %s\n",
490  times_str);
491  FAIL(AVERROR(EINVAL));
492  }
493 
494  ret = av_parse_time(&t, tstr, 1);
495  if (ret < 0) {
496  av_log(log_ctx, AV_LOG_ERROR,
497  "Invalid time duration specification '%s' in times list %s\n", tstr, times_str);
498  FAIL(AVERROR(EINVAL));
499  }
500  (*times)[i] = t;
501 
502  /* check on monotonicity */
503  if (i && (*times)[i-1] > (*times)[i]) {
504  av_log(log_ctx, AV_LOG_ERROR,
505  "Specified time %f is smaller than the last time %f\n",
506  (float)((*times)[i])/1000000, (float)((*times)[i-1])/1000000);
507  FAIL(AVERROR(EINVAL));
508  }
509  }
510 
511 end:
512  av_free(times_str1);
513  return ret;
514 }
515 
516 static int parse_frames(void *log_ctx, int **frames, int *nb_frames,
517  const char *frames_str)
518 {
519  const char *p;
520  int i;
521 
522  *nb_frames = 1;
523  for (p = frames_str; *p; p++)
524  if (*p == ',')
525  (*nb_frames)++;
526 
527  *frames = av_malloc_array(*nb_frames, sizeof(**frames));
528  if (!*frames) {
529  av_log(log_ctx, AV_LOG_ERROR, "Could not allocate forced frames array\n");
530  return AVERROR(ENOMEM);
531  }
532 
533  p = frames_str;
534  for (i = 0; i < *nb_frames; i++) {
535  long int f;
536  char *tailptr;
537 
538  if (*p == '\0' || *p == ',') {
539  av_log(log_ctx, AV_LOG_ERROR, "Empty frame specification in frame list %s\n",
540  frames_str);
541  return AVERROR(EINVAL);
542  }
543  f = strtol(p, &tailptr, 10);
544  if (*tailptr != '\0' && *tailptr != ',' || f <= 0 || f >= INT_MAX) {
545  av_log(log_ctx, AV_LOG_ERROR,
546  "Invalid argument '%s', must be a positive integer < INT_MAX\n",
547  p);
548  return AVERROR(EINVAL);
549  }
550  if (*tailptr == ',')
551  tailptr++;
552  p = tailptr;
553  (*frames)[i] = f;
554 
555  /* check on monotonicity */
556  if (i && (*frames)[i-1] > (*frames)[i]) {
557  av_log(log_ctx, AV_LOG_ERROR,
558  "Specified frame %d is smaller than the last frame %d\n",
559  (*frames)[i], (*frames)[i-1]);
560  return AVERROR(EINVAL);
561  }
562  }
563 
564  return 0;
565 }
566 
568 {
569  int buf_size = 32768;
570  uint8_t *buf = av_malloc(buf_size);
571  if (!buf)
572  return AVERROR(ENOMEM);
573  *ctx = avio_alloc_context(buf, buf_size, 1, NULL, NULL, NULL, NULL);
574  if (!*ctx) {
575  av_free(buf);
576  return AVERROR(ENOMEM);
577  }
578  return 0;
579 }
580 
581 static void close_null_ctxp(AVIOContext **pb)
582 {
583  av_freep(&(*pb)->buffer);
584  avio_context_free(pb);
585 }
586 
588 {
589  SegmentContext *seg = s->priv_data;
590  int ret, i;
591 
592  seg->reference_stream_index = -1;
593  if (!strcmp(seg->reference_stream_specifier, "auto")) {
594  /* select first index of type with highest priority */
595  int type_index_map[AVMEDIA_TYPE_NB];
596  static const enum AVMediaType type_priority_list[] = {
602  };
603  enum AVMediaType type;
604 
605  for (i = 0; i < AVMEDIA_TYPE_NB; i++)
606  type_index_map[i] = -1;
607 
608  /* select first index for each type */
609  for (i = 0; i < s->nb_streams; i++) {
610  type = s->streams[i]->codecpar->codec_type;
611  if ((unsigned)type < AVMEDIA_TYPE_NB && type_index_map[type] == -1
612  /* ignore attached pictures/cover art streams */
613  && !(s->streams[i]->disposition & AV_DISPOSITION_ATTACHED_PIC))
614  type_index_map[type] = i;
615  }
616 
617  for (i = 0; i < FF_ARRAY_ELEMS(type_priority_list); i++) {
618  type = type_priority_list[i];
619  if ((seg->reference_stream_index = type_index_map[type]) >= 0)
620  break;
621  }
622  } else {
623  for (i = 0; i < s->nb_streams; i++) {
624  ret = avformat_match_stream_specifier(s, s->streams[i],
626  if (ret < 0)
627  return ret;
628  if (ret > 0) {
629  seg->reference_stream_index = i;
630  break;
631  }
632  }
633  }
634 
635  if (seg->reference_stream_index < 0) {
636  av_log(s, AV_LOG_ERROR, "Could not select stream matching identifier '%s'\n",
638  return AVERROR(EINVAL);
639  }
640 
641  return 0;
642 }
643 
645 {
646  SegmentContext *seg = s->priv_data;
647  SegmentListEntry *cur;
648 
649  ff_format_io_close(s, &seg->list_pb);
650  if (seg->avf) {
651  if (seg->is_nullctx)
652  close_null_ctxp(&seg->avf->pb);
653  else
654  ff_format_io_close(s, &seg->avf->pb);
656  seg->avf = NULL;
657  }
658  av_freep(&seg->times);
659  av_freep(&seg->frames);
660  av_freep(&seg->cur_entry.filename);
661 
662  cur = seg->segment_list_entries;
663  while (cur) {
664  SegmentListEntry *next = cur->next;
665  av_freep(&cur->filename);
666  av_free(cur);
667  cur = next;
668  }
669 }
670 
672 {
673  SegmentContext *seg = s->priv_data;
674  AVFormatContext *oc = seg->avf;
676  int ret;
677  int i;
678 
679  seg->segment_count = 0;
680  if (!seg->write_header_trailer)
681  seg->individual_header_trailer = 0;
682 
683  if (seg->header_filename) {
684  seg->write_header_trailer = 1;
685  seg->individual_header_trailer = 0;
686  }
687 
688  if (seg->initial_offset > 0) {
689  av_log(s, AV_LOG_WARNING, "NOTE: the option initial_offset is deprecated,"
690  "you can use output_ts_offset instead of it\n");
691  }
692 
693  if ((seg->time != 2000000) + !!seg->times_str + !!seg->frames_str > 1) {
695  "segment_time, segment_times, and segment_frames options "
696  "are mutually exclusive, select just one of them\n");
697  return AVERROR(EINVAL);
698  }
699 
700  if (seg->times_str || seg->frames_str)
701  seg->min_seg_duration = 0;
702 
703  if (seg->times_str) {
704  if ((ret = parse_times(s, &seg->times, &seg->nb_times, seg->times_str)) < 0)
705  return ret;
706  } else if (seg->frames_str) {
707  if ((ret = parse_frames(s, &seg->frames, &seg->nb_frames, seg->frames_str)) < 0)
708  return ret;
709  } else {
710  if (seg->use_clocktime) {
711  if (seg->time <= 0) {
712  av_log(s, AV_LOG_ERROR, "Invalid negative segment_time with segment_atclocktime option set\n");
713  return AVERROR(EINVAL);
714  }
715  seg->clocktime_offset = seg->time - (seg->clocktime_offset % seg->time);
716  }
717  if (seg->min_seg_duration > seg->time) {
718  av_log(s, AV_LOG_ERROR, "min_seg_duration cannot be greater than segment_time\n");
719  return AVERROR(EINVAL);
720  }
721  }
722 
723  if (seg->list) {
724  if (seg->list_type == LIST_TYPE_UNDEFINED) {
725  if (av_match_ext(seg->list, "csv" )) seg->list_type = LIST_TYPE_CSV;
726  else if (av_match_ext(seg->list, "ext" )) seg->list_type = LIST_TYPE_EXT;
727  else if (av_match_ext(seg->list, "m3u8")) seg->list_type = LIST_TYPE_M3U8;
728  else if (av_match_ext(seg->list, "ffcat,ffconcat")) seg->list_type = LIST_TYPE_FFCONCAT;
729  else seg->list_type = LIST_TYPE_FLAT;
730  }
731  if (!seg->list_size && seg->list_type != LIST_TYPE_M3U8) {
732  if ((ret = segment_list_open(s)) < 0)
733  return ret;
734  } else {
735  const char *proto = avio_find_protocol_name(seg->list);
736  seg->use_rename = proto && !strcmp(proto, "file");
737  }
738  }
739 
740  if (seg->list_type == LIST_TYPE_EXT)
741  av_log(s, AV_LOG_WARNING, "'ext' list type option is deprecated in favor of 'csv'\n");
742 
743  if ((ret = select_reference_stream(s)) < 0)
744  return ret;
745  av_log(s, AV_LOG_VERBOSE, "Selected stream id:%d type:%s\n",
747  av_get_media_type_string(s->streams[seg->reference_stream_index]->codecpar->codec_type));
748 
750 
751  seg->oformat = av_guess_format(seg->format, s->url, NULL);
752 
753  if (!seg->oformat)
755  if (seg->oformat->flags & AVFMT_NOFILE) {
756  av_log(s, AV_LOG_ERROR, "format %s not supported.\n",
757  seg->oformat->name);
758  return AVERROR(EINVAL);
759  }
760 
761  if ((ret = segment_mux_init(s)) < 0)
762  return ret;
763 
764  if ((ret = set_segment_filename(s)) < 0)
765  return ret;
766  oc = seg->avf;
767 
768  if (seg->write_header_trailer) {
769  if ((ret = s->io_open(s, &oc->pb,
770  seg->header_filename ? seg->header_filename : oc->url,
771  AVIO_FLAG_WRITE, NULL)) < 0) {
772  av_log(s, AV_LOG_ERROR, "Failed to open segment '%s'\n", oc->url);
773  return ret;
774  }
775  if (!seg->individual_header_trailer)
776  oc->pb->seekable = 0;
777  } else {
778  if ((ret = open_null_ctx(&oc->pb)) < 0)
779  return ret;
780  seg->is_nullctx = 1;
781  }
782 
784  av_dict_set(&options, "fflags", "-autobsf", 0);
786  if (av_dict_count(options)) {
788  "Some of the provided format options are not recognized\n");
790  return AVERROR(EINVAL);
791  }
793 
794  if (ret < 0) {
795  return ret;
796  }
797  seg->segment_frame_count = 0;
798 
799  av_assert0(s->nb_streams == oc->nb_streams);
802  if (ret < 0)
803  return ret;
804  seg->header_written = 1;
805  }
806 
807  for (i = 0; i < s->nb_streams; i++) {
808  AVStream *inner_st = oc->streams[i];
809  AVStream *outer_st = s->streams[i];
810  avpriv_set_pts_info(outer_st, inner_st->pts_wrap_bits, inner_st->time_base.num, inner_st->time_base.den);
811  }
812 
813  if (oc->avoid_negative_ts > 0 && s->avoid_negative_ts < 0)
814  s->avoid_negative_ts = 1;
815 
816  return ret;
817 }
818 
820 {
821  SegmentContext *seg = s->priv_data;
822  AVFormatContext *oc = seg->avf;
823  int ret;
824 
825  if (!seg->header_written) {
827  if (ret < 0)
828  return ret;
829  }
830 
831  if (!seg->write_header_trailer || seg->header_filename) {
832  if (seg->header_filename) {
833  av_write_frame(oc, NULL);
834  ff_format_io_close(oc, &oc->pb);
835  } else {
836  close_null_ctxp(&oc->pb);
837  seg->is_nullctx = 0;
838  }
839  if ((ret = oc->io_open(oc, &oc->pb, oc->url, AVIO_FLAG_WRITE, NULL)) < 0)
840  return ret;
841  if (!seg->individual_header_trailer)
842  oc->pb->seekable = 0;
843  }
844 
845  return 0;
846 }
847 
849 {
850  SegmentContext *seg = s->priv_data;
851  AVStream *st = s->streams[pkt->stream_index];
852  int64_t end_pts = INT64_MAX, offset, pkt_pts_avtb;
853  int start_frame = INT_MAX;
854  int ret;
855  struct tm ti;
856  int64_t usecs;
857  int64_t wrapped_val;
858 
859  if (!seg->avf || !seg->avf->pb)
860  return AVERROR(EINVAL);
861 
862  if (!st->codecpar->extradata_size) {
863  size_t pkt_extradata_size;
864  uint8_t *pkt_extradata = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, &pkt_extradata_size);
865  if (pkt_extradata && pkt_extradata_size > 0) {
866  ret = ff_alloc_extradata(st->codecpar, pkt_extradata_size);
867  if (ret < 0) {
868  av_log(s, AV_LOG_WARNING, "Unable to add extradata to stream. Output segments may be invalid.\n");
869  goto calc_times;
870  }
871  memcpy(st->codecpar->extradata, pkt_extradata, pkt_extradata_size);
872  }
873  }
874 
875 calc_times:
876  if (seg->times) {
877  end_pts = seg->segment_count < seg->nb_times ?
878  seg->times[seg->segment_count] : INT64_MAX;
879  } else if (seg->frames) {
880  start_frame = seg->segment_count < seg->nb_frames ?
881  seg->frames[seg->segment_count] : INT_MAX;
882  } else {
883  if (seg->use_clocktime) {
884  int64_t avgt = av_gettime();
885  time_t sec = avgt / 1000000;
886  localtime_r(&sec, &ti);
887  usecs = (int64_t)(ti.tm_hour * 3600 + ti.tm_min * 60 + ti.tm_sec) * 1000000 + (avgt % 1000000);
888  wrapped_val = (usecs + seg->clocktime_offset) % seg->time;
889  if (wrapped_val < seg->last_val && wrapped_val < seg->clocktime_wrap_duration)
890  seg->cut_pending = 1;
891  seg->last_val = wrapped_val;
892  } else {
893  end_pts = seg->time * (seg->segment_count + 1);
894  }
895  }
896 
897  ff_dlog(s, "packet stream:%d pts:%s pts_time:%s duration_time:%s is_key:%d frame:%d\n",
901  pkt->stream_index == seg->reference_stream_index ? seg->frame_count : -1);
902 
905  pkt->pts != AV_NOPTS_VALUE) {
907  }
908 
910  end_pts += (INT64_MAX - end_pts >= seg->reference_stream_first_pts) ?
912  INT64_MAX - end_pts;
913  }
914 
915  if (pkt->pts != AV_NOPTS_VALUE)
916  pkt_pts_avtb = av_rescale_q(pkt->pts, st->time_base, AV_TIME_BASE_Q);
917 
918  if (pkt->stream_index == seg->reference_stream_index &&
920  (seg->segment_frame_count > 0 || seg->write_empty) &&
921  (seg->cut_pending || seg->frame_count >= start_frame ||
922  (pkt->pts != AV_NOPTS_VALUE &&
923  pkt_pts_avtb - seg->cur_entry.start_pts >= seg->min_seg_duration &&
925  end_pts - seg->time_delta, AV_TIME_BASE_Q) >= 0))) {
926  /* sanitize end time in case last packet didn't have a defined duration */
927  if (seg->cur_entry.last_duration == 0)
928  seg->cur_entry.end_time = (double)pkt->pts * av_q2d(st->time_base);
929 
930  if ((ret = segment_end(s, seg->individual_header_trailer, 0)) < 0)
931  goto fail;
932 
933  if ((ret = segment_start(s, seg->individual_header_trailer)) < 0)
934  goto fail;
935 
936  seg->cut_pending = 0;
941 
942  if (seg->times || (!seg->frames && !seg->use_clocktime) && seg->write_empty)
943  goto calc_times;
944  }
945 
946  if (pkt->stream_index == seg->reference_stream_index) {
947  if (pkt->pts != AV_NOPTS_VALUE)
948  seg->cur_entry.end_time =
949  FFMAX(seg->cur_entry.end_time, (double)(pkt->pts + pkt->duration) * av_q2d(st->time_base));
951  }
952 
953  if (seg->segment_frame_count == 0) {
954  av_log(s, AV_LOG_VERBOSE, "segment:'%s' starts with packet stream:%d pts:%s pts_time:%s frame:%d\n",
955  seg->avf->url, pkt->stream_index,
957  }
958 
959  av_log(s, AV_LOG_DEBUG, "stream:%d start_pts_time:%s pts:%s pts_time:%s dts:%s dts_time:%s",
960  pkt->stream_index,
964 
965  /* compute new timestamps */
968  if (pkt->pts != AV_NOPTS_VALUE)
969  pkt->pts += offset;
970  if (pkt->dts != AV_NOPTS_VALUE)
971  pkt->dts += offset;
972 
973  av_log(s, AV_LOG_DEBUG, " -> pts:%s pts_time:%s dts:%s dts_time:%s\n",
976 
978  seg->initial_offset || seg->reset_timestamps ||
980 
981 fail:
982  /* Use st->index here as the packet returned from ff_write_chained()
983  * is blank if interleaving has been used. */
984  if (st->index == seg->reference_stream_index) {
985  seg->frame_count++;
986  seg->segment_frame_count++;
987  }
988 
989  return ret;
990 }
991 
993 {
994  SegmentContext *seg = s->priv_data;
995  AVFormatContext *oc = seg->avf;
996  int ret;
997 
998  if (!oc)
999  return 0;
1000 
1001  if (!seg->write_header_trailer) {
1002  if ((ret = segment_end(s, 0, 1)) < 0)
1003  return ret;
1004  if ((ret = open_null_ctx(&oc->pb)) < 0)
1005  return ret;
1006  seg->is_nullctx = 1;
1007  ret = av_write_trailer(oc);
1008  } else {
1009  ret = segment_end(s, 1, 1);
1010  }
1011  return ret;
1012 }
1013 
1015  const AVPacket *pkt)
1016 {
1017  SegmentContext *seg = s->priv_data;
1018  AVFormatContext *oc = seg->avf;
1019  if (ffofmt(oc->oformat)->check_bitstream) {
1020  AVStream *const ost = oc->streams[st->index];
1021  int ret = ffofmt(oc->oformat)->check_bitstream(oc, ost, pkt);
1022  if (ret == 1) {
1023  FFStream *const sti = ffstream(st);
1024  FFStream *const osti = ffstream(ost);
1025  sti->bsfc = osti->bsfc;
1026  osti->bsfc = NULL;
1027  }
1028  return ret;
1029  }
1030  return 1;
1031 }
1032 
1033 #define OFFSET(x) offsetof(SegmentContext, x)
1034 #define E AV_OPT_FLAG_ENCODING_PARAM
1035 static const AVOption options[] = {
1036  { "reference_stream", "set reference stream", OFFSET(reference_stream_specifier), AV_OPT_TYPE_STRING, {.str = "auto"}, 0, 0, E },
1037  { "segment_format", "set container format used for the segments", OFFSET(format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
1038  { "segment_format_options", "set list of options for the container format used for the segments", OFFSET(format_options), AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, E },
1039  { "segment_list", "set the segment list filename", OFFSET(list), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
1040  { "segment_header_filename", "write a single file containing the header", OFFSET(header_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
1041 
1042  { "segment_list_flags","set flags affecting segment list generation", OFFSET(list_flags), AV_OPT_TYPE_FLAGS, {.i64 = SEGMENT_LIST_FLAG_CACHE }, 0, UINT_MAX, E, .unit = "list_flags"},
1043  { "cache", "allow list caching", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_LIST_FLAG_CACHE }, INT_MIN, INT_MAX, E, .unit = "list_flags"},
1044  { "live", "enable live-friendly list generation (useful for HLS)", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_LIST_FLAG_LIVE }, INT_MIN, INT_MAX, E, .unit = "list_flags"},
1045 
1046  { "segment_list_size", "set the maximum number of playlist entries", OFFSET(list_size), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E },
1047 
1048  { "segment_list_type", "set the segment list type", OFFSET(list_type), AV_OPT_TYPE_INT, {.i64 = LIST_TYPE_UNDEFINED}, -1, LIST_TYPE_NB-1, E, .unit = "list_type" },
1049  { "flat", "flat format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_FLAT }, INT_MIN, INT_MAX, E, .unit = "list_type" },
1050  { "csv", "csv format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_CSV }, INT_MIN, INT_MAX, E, .unit = "list_type" },
1051  { "ext", "extended format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_EXT }, INT_MIN, INT_MAX, E, .unit = "list_type" },
1052  { "ffconcat", "ffconcat format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_FFCONCAT }, INT_MIN, INT_MAX, E, .unit = "list_type" },
1053  { "m3u8", "M3U8 format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_M3U8 }, INT_MIN, INT_MAX, E, .unit = "list_type" },
1054  { "hls", "Apple HTTP Live Streaming compatible", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_M3U8 }, INT_MIN, INT_MAX, E, .unit = "list_type" },
1055 
1056  { "segment_atclocktime", "set segment to be cut at clocktime", OFFSET(use_clocktime), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E},
1057  { "segment_clocktime_offset", "set segment clocktime offset", OFFSET(clocktime_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, 86400000000LL, E},
1058  { "segment_clocktime_wrap_duration", "set segment clocktime wrapping duration", OFFSET(clocktime_wrap_duration), AV_OPT_TYPE_DURATION, {.i64 = INT64_MAX}, 0, INT64_MAX, E},
1059  { "segment_time", "set segment duration", OFFSET(time),AV_OPT_TYPE_DURATION, {.i64 = 2000000}, INT64_MIN, INT64_MAX, E },
1060  { "segment_time_delta","set approximation value used for the segment times", OFFSET(time_delta), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, INT64_MAX, E },
1061  { "min_seg_duration", "set minimum segment duration", OFFSET(min_seg_duration), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, INT64_MAX, E },
1062  { "segment_times", "set segment split time points", OFFSET(times_str),AV_OPT_TYPE_STRING,{.str = NULL}, 0, 0, E },
1063  { "segment_frames", "set segment split frame numbers", OFFSET(frames_str),AV_OPT_TYPE_STRING,{.str = NULL}, 0, 0, E },
1064  { "segment_wrap", "set number after which the index wraps", OFFSET(segment_idx_wrap), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E },
1065  { "segment_list_entry_prefix", "set base url prefix for segments", OFFSET(entry_prefix), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
1066  { "segment_start_number", "set the sequence number of the first segment", OFFSET(segment_idx), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E },
1067  { "segment_wrap_number", "set the number of wrap before the first segment", OFFSET(segment_idx_wrap_nb), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E },
1068  { "strftime", "set filename expansion with strftime at segment creation", OFFSET(use_strftime), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
1069  { "increment_tc", "increment timecode between each segment", OFFSET(increment_tc), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
1070  { "break_non_keyframes", "allow breaking segments on non-keyframes", OFFSET(break_non_keyframes), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1071 
1072  { "individual_header_trailer", "write header/trailer to each segment", OFFSET(individual_header_trailer), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, E },
1073  { "write_header_trailer", "write a header to the first segment and a trailer to the last one", OFFSET(write_header_trailer), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, E },
1074  { "reset_timestamps", "reset timestamps at the beginning of each segment", OFFSET(reset_timestamps), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1075  { "initial_offset", "set initial timestamp offset", OFFSET(initial_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, -INT64_MAX, INT64_MAX, E },
1076  { "write_empty_segments", "allow writing empty 'filler' segments", OFFSET(write_empty), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1077  { NULL },
1078 };
1079 
1080 static const AVClass seg_class = {
1081  .class_name = "(stream) segment muxer",
1082  .item_name = av_default_item_name,
1083  .option = options,
1084  .version = LIBAVUTIL_VERSION_INT,
1085 };
1086 
1087 #if CONFIG_SEGMENT_MUXER
1089  .p.name = "segment",
1090  .p.long_name = NULL_IF_CONFIG_SMALL("segment"),
1091  .p.flags = AVFMT_NOFILE|AVFMT_GLOBALHEADER,
1092  .p.priv_class = &seg_class,
1093  .priv_data_size = sizeof(SegmentContext),
1094  .init = seg_init,
1098  .deinit = seg_free,
1100 };
1101 #endif
1102 
1103 #if CONFIG_STREAM_SEGMENT_MUXER
1105  .p.name = "stream_segment,ssegment",
1106  .p.long_name = NULL_IF_CONFIG_SMALL("streaming segment muxer"),
1107  .p.flags = AVFMT_NOFILE,
1108  .p.priv_class = &seg_class,
1109  .priv_data_size = sizeof(SegmentContext),
1110  .init = seg_init,
1114  .deinit = seg_free,
1116 };
1117 #endif
SEGMENT_LIST_FLAG_LIVE
#define SEGMENT_LIST_FLAG_LIVE
Definition: segment.c:68
SegmentContext::write_header_trailer
int write_header_trailer
Set by a private option.
Definition: segment.c:112
SegmentListEntry::index
int index
Definition: segment.c:48
AVMEDIA_TYPE_SUBTITLE
@ AVMEDIA_TYPE_SUBTITLE
Definition: avutil.h:204
av_codec_get_id
enum AVCodecID av_codec_get_id(const struct AVCodecTag *const *tags, unsigned int tag)
Get the AVCodecID for the given codec tag tag.
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
LIST_TYPE_UNDEFINED
@ LIST_TYPE_UNDEFINED
Definition: segment.c:58
AV_TIMECODE_STR_SIZE
#define AV_TIMECODE_STR_SIZE
Definition: timecode.h:33
SegmentContext::clocktime_wrap_duration
int64_t clocktime_wrap_duration
Definition: segment.c:87
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:69
SegmentContext::min_seg_duration
int64_t min_seg_duration
minimum segment duration
Definition: segment.c:96
SegmentContext::avf
AVFormatContext * avf
Definition: segment.c:77
AVOutputFormat::name
const char * name
Definition: avformat.h:510
AVSTREAM_INIT_IN_WRITE_HEADER
#define AVSTREAM_INIT_IN_WRITE_HEADER
stream parameters initialized in avformat_write_header
Definition: avformat.h:2443
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
SegmentContext::list_pb
AVIOContext * list_pb
list file put-byte context
Definition: segment.c:94
av_compare_ts
int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b)
Compare two timestamps each in its own time base.
Definition: mathematics.c:147
FFStream::bsfc
struct AVBSFContext * bsfc
bitstream filter to run on stream
Definition: internal.h:217
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:47
segment_start
static int segment_start(AVFormatContext *s, int write_header)
Definition: segment.c:231
AV_PKT_DATA_NEW_EXTRADATA
@ AV_PKT_DATA_NEW_EXTRADATA
The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was...
Definition: packet.h:56
AV_DISPOSITION_ATTACHED_PIC
#define AV_DISPOSITION_ATTACHED_PIC
The stream is stored in the file as an attached picture/"cover art" (e.g.
Definition: avformat.h:674
av_dict_count
int av_dict_count(const AVDictionary *m)
Get number of entries in dictionary.
Definition: dict.c:39
LIST_TYPE_CSV
@ LIST_TYPE_CSV
Definition: segment.c:60
SegmentContext::use_clocktime
int use_clocktime
flag to cut segments at regular clock time
Definition: segment.c:85
avio_context_free
void avio_context_free(AVIOContext **s)
Free the supplied IO context and everything associated with it.
Definition: aviobuf.c:125
AV_TIME_BASE_Q
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:264
SegmentContext::list_type
int list_type
set the list type
Definition: segment.c:93
ff_stream_segment_muxer
const FFOutputFormat ff_stream_segment_muxer
SegmentContext::nb_frames
int nb_frames
number of elments in the frames array
Definition: segment.c:106
SegmentContext::segment_idx_wrap
int segment_idx_wrap
number after which the index wraps
Definition: segment.c:73
AVFormatContext::streams
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1323
deinit
static void deinit(AVFormatContext *s)
Definition: chromaprint.c:50
segment_mux_init
static int segment_mux_init(AVFormatContext *s)
Definition: segment.c:147
avio_alloc_context
AVIOContext * avio_alloc_context(unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, const uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Allocate and initialize an AVIOContext for buffered I/O.
Definition: aviobuf.c:108
AVOption
AVOption.
Definition: opt.h:346
SegmentContext::segment_count
int segment_count
number of segment files already written
Definition: segment.c:75
SegmentContext::times_str
char * times_str
segment times specification string
Definition: segment.c:100
SegmentContext::break_non_keyframes
int break_non_keyframes
Definition: segment.c:120
AV_OPT_TYPE_DURATION
@ AV_OPT_TYPE_DURATION
Definition: opt.h:249
SegmentContext::frames_str
char * frames_str
segment frame numbers specification string
Definition: segment.c:104
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:196
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:540
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: codec_par.h:59
mathematics.h
AVDictionary
Definition: dict.c:34
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
FAIL
#define FAIL(err)
avformat_init_output
av_warn_unused_result int avformat_init_output(AVFormatContext *s, AVDictionary **options)
Allocate the stream private data and initialize the codec, but do not write the header.
Definition: mux.c:435
SegmentContext::cur_entry
SegmentListEntry cur_entry
Definition: segment.c:126
SegmentContext::list
char * list
filename for the segment list file
Definition: segment.c:80
av_get_frame_filename
int av_get_frame_filename(char *buf, int buf_size, const char *path, int number)
Definition: utils.c:353
SegmentListEntry::next
struct SegmentListEntry * next
Definition: segment.c:53
ost
static AVStream * ost
Definition: vaapi_transcode.c:42
AV_PKT_FLAG_KEY
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: packet.h:577
av_basename
const char * av_basename(const char *path)
Thread safe basename.
Definition: avstring.c:252
SegmentContext::time
int64_t time
segment duration
Definition: segment.c:95
FFOutputFormat::p
AVOutputFormat p
The public AVOutputFormat.
Definition: mux.h:36
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:30
SegmentContext::use_rename
int use_rename
Definition: segment.c:123
SegmentContext::temp_list_filename
char temp_list_filename[1024]
Definition: segment.c:124
SegmentContext::is_nullctx
int is_nullctx
whether avf->pb is a nullctx
Definition: segment.c:84
segment_end
static int segment_end(AVFormatContext *s, int write_trailer, int is_last)
Definition: segment.c:346
AVFormatContext::interrupt_callback
AVIOInterruptCB interrupt_callback
Custom interrupt callbacks for the I/O layer.
Definition: avformat.h:1528
SegmentListEntry
Definition: segment.c:47
SegmentContext::nb_times
int nb_times
number of elments in the times array
Definition: segment.c:102
parse_frames
static int parse_frames(void *log_ctx, int **frames, int *nb_frames, const char *frames_str)
Definition: segment.c:516
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: avformat.c:853
seg_write_header
static int seg_write_header(AVFormatContext *s)
Definition: segment.c:819
ffstream
static av_always_inline FFStream * ffstream(AVStream *st)
Definition: internal.h:423
av_escape
int av_escape(char **dst, const char *src, const char *special_chars, enum AVEscapeMode mode, int flags)
Escape string in src, and put the escaped string in an allocated string in *dst, which must be freed ...
Definition: avstring.c:327
fail
#define fail()
Definition: checkasm.h:179
frames
if it could not because there are no more frames
Definition: filter_design.txt:266
timecode.h
SegmentContext::reference_stream_index
int reference_stream_index
Definition: segment.c:118
AVTimecode::start
int start
timecode frame start (first base frame number)
Definition: timecode.h:42
av_timecode_make_string
char * av_timecode_make_string(const AVTimecode *tc, char *buf, int framenum)
Load timecode string in buf.
Definition: timecode.c:103
SegmentContext::oformat
const AVOutputFormat * oformat
Definition: segment.c:76
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
av_opt_set
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
Definition: opt.c:738
close_null_ctxp
static void close_null_ctxp(AVIOContext **pb)
Definition: segment.c:581
SegmentContext::cut_pending
int cut_pending
Definition: segment.c:89
AV_ESCAPE_FLAG_WHITESPACE
#define AV_ESCAPE_FLAG_WHITESPACE
Consider spaces special and escape them even in the middle of the string.
Definition: avstring.h:329
ff_rename
int ff_rename(const char *url_src, const char *url_dst, void *logctx)
Wrap ffurl_move() and log if error happens.
Definition: avio.c:860
AVRational::num
int num
Numerator.
Definition: rational.h:59
select_reference_stream
static int select_reference_stream(AVFormatContext *s)
Definition: segment.c:587
seg_check_bitstream
static int seg_check_bitstream(AVFormatContext *s, AVStream *st, const AVPacket *pkt)
Definition: segment.c:1014
SegmentContext::use_strftime
int use_strftime
flag to expand filename with strftime
Definition: segment.c:97
avassert.h
SegmentContext::reset_timestamps
int reset_timestamps
reset timestamps at the beginning of each segment
Definition: segment.c:115
ceil
static __device__ float ceil(float a)
Definition: cuda_runtime.h:176
SegmentContext::frame_count
int frame_count
total number of reference frames
Definition: segment.c:107
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
AVFormatContext::metadata
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1490
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
SegmentListEntry::offset_pts
int64_t offset_pts
Definition: segment.c:51
SegmentContext::format
char * format
format to use for output segment files
Definition: segment.c:78
seg_write_trailer
static int seg_write_trailer(struct AVFormatContext *s)
Definition: segment.c:992
av_dict_get
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:62
s
#define s(width, name)
Definition: cbs_vp9.c:198
AVFormatContext::flags
int flags
Flags modifying the (de)muxer behaviour.
Definition: avformat.h:1406
format
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample format(the sample packing is implied by the sample format) and sample rate. The lists are not just lists
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
av_q2d
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition: rational.h:104
av_strtok
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
Definition: avstring.c:178
av_match_ext
int av_match_ext(const char *filename, const char *extensions)
Return a positive value if the given filename has one of the given extensions, 0 otherwise.
Definition: format.c:42
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:40
AVMEDIA_TYPE_NB
@ AVMEDIA_TYPE_NB
Definition: avutil.h:206
AVIO_FLAG_WRITE
#define AVIO_FLAG_WRITE
write-only
Definition: avio.h:618
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:201
ctx
AVFormatContext * ctx
Definition: movenc.c:48
SegmentContext::write_empty
int write_empty
Definition: segment.c:121
SegmentListEntry::last_duration
int64_t last_duration
Definition: segment.c:54
ffofmt
static const FFOutputFormat * ffofmt(const AVOutputFormat *fmt)
Definition: mux.h:138
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
AVOutputFormat::codec_tag
const struct AVCodecTag *const * codec_tag
List of supported codec_id-codec_tag pairs, ordered by "better choice first".
Definition: avformat.h:535
AVFormatContext::opaque
void * opaque
User data.
Definition: avformat.h:1815
AVMEDIA_TYPE_DATA
@ AVMEDIA_TYPE_DATA
Opaque data information usually continuous.
Definition: avutil.h:203
avformat_write_header
av_warn_unused_result int avformat_write_header(AVFormatContext *s, AVDictionary **options)
Allocate the stream private data and write the stream header to an output media file.
Definition: mux.c:456
SegmentListEntry::start_pts
int64_t start_pts
Definition: segment.c:50
time_internal.h
if
if(ret)
Definition: filter_design.txt:179
seg_init
static int seg_init(AVFormatContext *s)
Definition: segment.c:671
avio_flush
void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:222
AVFormatContext
Format I/O context.
Definition: avformat.h:1255
internal.h
SegmentContext::format_options
AVDictionary * format_options
Definition: segment.c:79
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:766
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
AVStream::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avformat.h:782
NULL
#define NULL
Definition: coverity.c:32
write_trailer
static int write_trailer(AVFormatContext *s1)
Definition: v4l2enc.c:101
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
LIST_TYPE_EXT
@ LIST_TYPE_EXT
deprecated
Definition: segment.c:62
AV_OPT_TYPE_DICT
@ AV_OPT_TYPE_DICT
Definition: opt.h:242
SegmentContext::frames
int * frames
list of frame number specification
Definition: segment.c:105
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
AVFormatContext::pb
AVIOContext * pb
I/O context.
Definition: avformat.h:1297
parseutils.h
list
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining list
Definition: filter_design.txt:25
FFOutputFormat
Definition: mux.h:32
double
double
Definition: af_crystalizer.c:131
av_parse_time
int av_parse_time(int64_t *timeval, const char *timestr, int duration)
Parse timestr and return in *time a corresponding number of microseconds.
Definition: parseutils.c:589
time.h
avio_w8
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:178
SegmentContext::reference_stream_first_pts
int64_t reference_stream_first_pts
initial timestamp, expressed in microseconds
Definition: segment.c:119
set_segment_filename
static int set_segment_filename(AVFormatContext *s)
Definition: segment.c:187
AVOutputFormat::priv_class
const AVClass * priv_class
AVClass for the private context.
Definition: avformat.h:538
av_write_frame
int av_write_frame(AVFormatContext *s, AVPacket *pkt)
Write a packet to an output media file.
Definition: mux.c:1202
AV_ESCAPE_MODE_AUTO
@ AV_ESCAPE_MODE_AUTO
Use auto-selected escaping mode.
Definition: avstring.h:315
seg_write_packet
static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: segment.c:848
segment_list_open
static int segment_list_open(AVFormatContext *s)
Definition: segment.c:276
SegmentContext::clocktime_offset
int64_t clocktime_offset
Definition: segment.c:86
OFFSET
#define OFFSET(x)
Definition: segment.c:1033
AVCodecParameters::extradata_size
int extradata_size
Size of the extradata content in bytes.
Definition: codec_par.h:73
AVFormatContext::nb_streams
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1311
AVOutputFormat::flags
int flags
can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_GLOBALHEADER, AVFMT_NOTIMESTAMPS,...
Definition: avformat.h:529
ff_dlog
#define ff_dlog(a,...)
Definition: tableprint_vlc.h:28
SegmentContext::entry_prefix
char * entry_prefix
prefix to add to list entry filenames
Definition: segment.c:92
LIST_TYPE_FLAT
@ LIST_TYPE_FLAT
Definition: segment.c:59
SegmentContext::increment_tc
int increment_tc
flag to increment timecode if found
Definition: segment.c:98
print_csv_escaped_str
static void print_csv_escaped_str(AVIOContext *ctx, const char *str)
Definition: segment.c:131
SegmentContext::segment_list_entries_end
SegmentListEntry * segment_list_entries_end
Definition: segment.c:128
f
f
Definition: af_crystalizer.c:121
AVIOContext
Bytestream IO Context.
Definition: avio.h:160
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:365
av_ts2timestr
#define av_ts2timestr(ts, tb)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: timestamp.h:77
AVMediaType
AVMediaType
Definition: avutil.h:199
avformat_match_stream_specifier
int avformat_match_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
Check if the stream st contained in s is matched by the stream specifier spec.
Definition: avformat.c:681
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:106
av_codec_get_tag
unsigned int av_codec_get_tag(const struct AVCodecTag *const *tags, enum AVCodecID id)
Get the codec tag for the given codec id id.
AVIOContext::seekable
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:261
FFStream
Definition: internal.h:199
localtime_r
#define localtime_r
Definition: time_internal.h:46
SegmentContext::time_delta
int64_t time_delta
Definition: segment.c:110
FFOutputFormat::check_bitstream
int(* check_bitstream)(AVFormatContext *s, AVStream *st, const AVPacket *pkt)
Set up any necessary bitstream filtering and extract any extra data needed for the global header.
Definition: mux.h:134
AVFormatContext::url
char * url
input or output URL.
Definition: avformat.h:1371
size
int size
Definition: twinvq_data.h:10344
av_reallocp
int av_reallocp(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory through a pointer to a pointer.
Definition: mem.c:186
SegmentContext
Definition: f_segment.c:37
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
seg_free
static void seg_free(AVFormatContext *s)
Definition: segment.c:644
AVFMT_NOFILE
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:468
LIST_TYPE_NB
@ LIST_TYPE_NB
Definition: segment.c:64
ff_format_io_close
int ff_format_io_close(AVFormatContext *s, AVIOContext **pb)
Definition: avformat.c:944
SegmentContext::header_written
int header_written
whether we've already called avformat_write_header
Definition: segment.c:90
ListType
ListType
Definition: segment.c:57
AVPacket::dts
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: packet.h:521
FFOutputFormat::interleave_packet
int(* interleave_packet)(AVFormatContext *s, AVPacket *pkt, int flush, int has_packet)
A format-specific function for interleavement.
Definition: mux.h:73
SegmentContext::segment_frame_count
int segment_frame_count
number of reference frames in the segment
Definition: segment.c:108
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:528
av_dict_free
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
Definition: dict.c:223
LIST_TYPE_M3U8
@ LIST_TYPE_M3U8
Definition: segment.c:61
SegmentContext::segment_idx_wrap_nb
int segment_idx_wrap_nb
number of time the index has wraped
Definition: segment.c:74
SegmentListEntry::end_time
double end_time
Definition: segment.c:49
SegmentContext::last_val
int64_t last_val
remember last time for wrap around detection
Definition: segment.c:88
av_write_trailer
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data.
Definition: mux.c:1270
SegmentContext::segment_idx
int segment_idx
index of the segment file to write, starting from 0
Definition: segment.c:72
SegmentContext::reference_stream_specifier
char * reference_stream_specifier
reference stream specifier
Definition: segment.c:117
log.h
AVFMT_GLOBALHEADER
#define AVFMT_GLOBALHEADER
Format wants global header.
Definition: avformat.h:478
AVOutputFormat
Definition: avformat.h:509
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:255
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:515
SegmentListEntry::start_time
double start_time
Definition: segment.c:49
av_packet_get_side_data
uint8_t * av_packet_get_side_data(const AVPacket *pkt, enum AVPacketSideDataType type, size_t *size)
Get side information from packet.
Definition: avpacket.c:252
internal.h
AVERROR_MUXER_NOT_FOUND
#define AVERROR_MUXER_NOT_FOUND
Muxer not found.
Definition: error.h:62
av_malloc_array
#define av_malloc_array(a, b)
Definition: tableprint_vlc.h:31
check_bitstream
static int check_bitstream(AVFormatContext *s, FFStream *sti, AVPacket *pkt)
Definition: mux.c:1083
AVFormatContext::avoid_negative_ts
int avoid_negative_ts
Avoid negative timestamps during muxing.
Definition: avformat.h:1642
AVMEDIA_TYPE_ATTACHMENT
@ AVMEDIA_TYPE_ATTACHMENT
Opaque data information usually sparse.
Definition: avutil.h:205
AVFormatContext::max_delay
int max_delay
Definition: avformat.h:1400
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:254
SegmentContext::list_size
int list_size
number of entries for the segment list file
Definition: segment.c:82
write_packet
static int write_packet(Muxer *mux, OutputStream *ost, AVPacket *pkt)
Definition: ffmpeg_mux.c:209
SegmentContext::segment_list_entries
SegmentListEntry * segment_list_entries
Definition: segment.c:127
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:743
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
AVFormatContext::oformat
const struct AVOutputFormat * oformat
The output container format.
Definition: avformat.h:1274
avformat.h
E
#define E
Definition: segment.c:1034
avio_printf
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2
Writes a formatted string to the context.
av_get_media_type_string
const char * av_get_media_type_string(enum AVMediaType media_type)
Return a string describing the media_type enum, NULL if media_type is unknown.
Definition: utils.c:28
AVStream::index
int index
stream index in AVFormatContext
Definition: avformat.h:749
AVRational::den
int den
Denominator.
Definition: rational.h:60
options
static const AVOption options[]
Definition: segment.c:1035
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
segment_list_print_entry
static void segment_list_print_entry(AVIOContext *list_ioctx, ListType list_type, const SegmentListEntry *list_entry, void *log_ctx)
Definition: segment.c:311
avformat_free_context
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
Definition: avformat.c:141
SegmentContext::header_filename
char * header_filename
filename to write the output header to
Definition: segment.c:113
AVFormatContext::io_open
int(* io_open)(struct AVFormatContext *s, AVIOContext **pb, const char *url, int flags, AVDictionary **options)
A callback for opening new IO streams.
Definition: avformat.h:1856
SegmentContext::individual_header_trailer
int individual_header_trailer
Set by a private option.
Definition: segment.c:111
SegmentContext::list_flags
int list_flags
flags affecting list generation
Definition: segment.c:81
AVPacket::stream_index
int stream_index
Definition: packet.h:524
seg_class
static const AVClass seg_class
Definition: segment.c:1080
SegmentContext::times
int64_t * times
list of segment interval specification
Definition: segment.c:101
av_gettime
int64_t av_gettime(void)
Get the current time in microseconds.
Definition: time.c:39
tc
#define tc
Definition: regdef.h:69
av_strdup
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:270
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
av_guess_format
const AVOutputFormat * av_guess_format(const char *short_name, const char *filename, const char *mime_type)
Return the output format in the list of registered output formats which best matches the provided par...
Definition: format.c:80
av_free
#define av_free(p)
Definition: tableprint_vlc.h:33
AVDictionaryEntry
Definition: dict.h:89
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
ff_stream_clone
AVStream * ff_stream_clone(AVFormatContext *dst_ctx, const AVStream *src)
Create a new stream and copy to it all parameters from a source stream, with the exception of the ind...
Definition: avformat.c:306
AVPacket
This structure stores compressed data.
Definition: packet.h:499
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:251
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:88
av_dict_copy
int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
Definition: dict.c:237
SEGMENT_LIST_FLAG_CACHE
#define SEGMENT_LIST_FLAG_CACHE
Definition: segment.c:67
AVFormatContext::io_close2
int(* io_close2)(struct AVFormatContext *s, AVIOContext *pb)
A callback for closing the streams opened with AVFormatContext.io_open().
Definition: avformat.h:1870
parse_times
static int parse_times(void *log_ctx, int64_t **times, int *nb_times, const char *times_str)
Definition: segment.c:458
avio_find_protocol_name
const char * avio_find_protocol_name(const char *url)
Return the name of the protocol that will handle the passed URL.
Definition: avio.c:656
AV_OPT_TYPE_FLAGS
@ AV_OPT_TYPE_FLAGS
Definition: opt.h:234
timestamp.h
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
SegmentContext::initial_offset
int64_t initial_offset
initial timestamps offset, expressed in microseconds
Definition: segment.c:116
av_ts2str
#define av_ts2str(ts)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: timestamp.h:54
av_timecode_init_from_string
int av_timecode_init_from_string(AVTimecode *tc, AVRational rate, const char *str, void *log_ctx)
Parse timecode representation (hh:mm:ss[:;.
Definition: timecode.c:252
AVDictionaryEntry::value
char * value
Definition: dict.h:91
avstring.h
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:239
write_header
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:346
AVTimecode
Definition: timecode.h:41
avformat_alloc_output_context2
int avformat_alloc_output_context2(AVFormatContext **ctx, const AVOutputFormat *oformat, const char *format_name, const char *filename)
Allocate an AVFormatContext for an output format.
Definition: mux.c:93
AVStream::pts_wrap_bits
int pts_wrap_bits
Number of bits in timestamps.
Definition: avformat.h:918
int
int
Definition: ffmpeg_filter.c:425
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:244
ff_segment_muxer
const FFOutputFormat ff_segment_muxer
snprintf
#define snprintf
Definition: snprintf.h:34
AVFormatContext::priv_data
void * priv_data
Format private data.
Definition: avformat.h:1283
ff_format_set_url
void ff_format_set_url(AVFormatContext *s, char *url)
Set AVFormatContext url field to the provided pointer.
Definition: avformat.c:937
open_null_ctx
static int open_null_ctx(AVIOContext **ctx)
Definition: segment.c:567
LIST_TYPE_FFCONCAT
@ LIST_TYPE_FFCONCAT
Definition: segment.c:63
ff_alloc_extradata
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition: utils.c:239
mux.h
SegmentListEntry::filename
char * filename
Definition: segment.c:52
ff_write_chained
int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt, AVFormatContext *src, int interleave)
Write a packet to another muxer than the one the user originally intended.
Definition: mux.c:1369