]> git.sesse.net Git - ffmpeg/blob - libavformat/segment.c
avformat/segment: Access AVStream more directly
[ffmpeg] / libavformat / segment.c
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 <float.h>
28 #include <time.h>
29
30 #include "avformat.h"
31 #include "avio_internal.h"
32 #include "internal.h"
33
34 #include "libavutil/avassert.h"
35 #include "libavutil/internal.h"
36 #include "libavutil/log.h"
37 #include "libavutil/opt.h"
38 #include "libavutil/avstring.h"
39 #include "libavutil/parseutils.h"
40 #include "libavutil/mathematics.h"
41 #include "libavutil/time.h"
42 #include "libavutil/timecode.h"
43 #include "libavutil/time_internal.h"
44 #include "libavutil/timestamp.h"
45
46 typedef struct SegmentListEntry {
47     int index;
48     double start_time, end_time;
49     int64_t start_pts;
50     int64_t offset_pts;
51     char *filename;
52     struct SegmentListEntry *next;
53     int64_t last_duration;
54 } SegmentListEntry;
55
56 typedef enum {
57     LIST_TYPE_UNDEFINED = -1,
58     LIST_TYPE_FLAT = 0,
59     LIST_TYPE_CSV,
60     LIST_TYPE_M3U8,
61     LIST_TYPE_EXT, ///< deprecated
62     LIST_TYPE_FFCONCAT,
63     LIST_TYPE_NB,
64 } ListType;
65
66 #define SEGMENT_LIST_FLAG_CACHE 1
67 #define SEGMENT_LIST_FLAG_LIVE  2
68
69 typedef struct SegmentContext {
70     const AVClass *class;  /**< Class for private options. */
71     int segment_idx;       ///< index of the segment file to write, starting from 0
72     int segment_idx_wrap;  ///< number after which the index wraps
73     int segment_idx_wrap_nb;  ///< number of time the index has wraped
74     int segment_count;     ///< number of segment files already written
75     ff_const59 AVOutputFormat *oformat;
76     AVFormatContext *avf;
77     char *format;              ///< format to use for output segment files
78     AVDictionary *format_options;
79     char *list;            ///< filename for the segment list file
80     int   list_flags;      ///< flags affecting list generation
81     int   list_size;       ///< number of entries for the segment list file
82
83     int use_clocktime;    ///< flag to cut segments at regular clock time
84     int64_t clocktime_offset; //< clock offset for cutting the segments at regular clock time
85     int64_t clocktime_wrap_duration; //< wrapping duration considered for starting a new segment
86     int64_t last_val;      ///< remember last time for wrap around detection
87     int cut_pending;
88     int header_written;    ///< whether we've already called avformat_write_header
89
90     char *entry_prefix;    ///< prefix to add to list entry filenames
91     int list_type;         ///< set the list type
92     AVIOContext *list_pb;  ///< list file put-byte context
93     char *time_str;        ///< segment duration specification string
94     int64_t time;          ///< segment duration
95     int use_strftime;      ///< flag to expand filename with strftime
96     int increment_tc;      ///< flag to increment timecode if found
97
98     char *times_str;       ///< segment times specification string
99     int64_t *times;        ///< list of segment interval specification
100     int nb_times;          ///< number of elments in the times array
101
102     char *frames_str;      ///< segment frame numbers specification string
103     int *frames;           ///< list of frame number specification
104     int nb_frames;         ///< number of elments in the frames array
105     int frame_count;       ///< total number of reference frames
106     int segment_frame_count; ///< number of reference frames in the segment
107
108     int64_t time_delta;
109     int  individual_header_trailer; /**< Set by a private option. */
110     int  write_header_trailer; /**< Set by a private option. */
111     char *header_filename;  ///< filename to write the output header to
112
113     int reset_timestamps;  ///< reset timestamps at the beginning of each segment
114     int64_t initial_offset;    ///< initial timestamps offset, expressed in microseconds
115     char *reference_stream_specifier; ///< reference stream specifier
116     int   reference_stream_index;
117     int   break_non_keyframes;
118     int   write_empty;
119
120     int use_rename;
121     char temp_list_filename[1024];
122
123     SegmentListEntry cur_entry;
124     SegmentListEntry *segment_list_entries;
125     SegmentListEntry *segment_list_entries_end;
126 } SegmentContext;
127
128 static void print_csv_escaped_str(AVIOContext *ctx, const char *str)
129 {
130     int needs_quoting = !!str[strcspn(str, "\",\n\r")];
131
132     if (needs_quoting)
133         avio_w8(ctx, '"');
134
135     for (; *str; str++) {
136         if (*str == '"')
137             avio_w8(ctx, '"');
138         avio_w8(ctx, *str);
139     }
140     if (needs_quoting)
141         avio_w8(ctx, '"');
142 }
143
144 static int segment_mux_init(AVFormatContext *s)
145 {
146     SegmentContext *seg = s->priv_data;
147     AVFormatContext *oc;
148     int i;
149     int ret;
150
151     ret = avformat_alloc_output_context2(&seg->avf, seg->oformat, NULL, NULL);
152     if (ret < 0)
153         return ret;
154     oc = seg->avf;
155
156     oc->interrupt_callback = s->interrupt_callback;
157     oc->max_delay          = s->max_delay;
158     av_dict_copy(&oc->metadata, s->metadata, 0);
159     oc->opaque             = s->opaque;
160     oc->io_close           = s->io_close;
161     oc->io_open            = s->io_open;
162     oc->flags              = s->flags;
163
164     for (i = 0; i < s->nb_streams; i++) {
165         AVStream *st, *ist = s->streams[i];
166         AVCodecParameters *ipar = ist->codecpar, *opar;
167
168         if (!(st = avformat_new_stream(oc, NULL)))
169             return AVERROR(ENOMEM);
170         opar = st->codecpar;
171         avcodec_parameters_copy(opar, ipar);
172         if (!oc->oformat->codec_tag ||
173             av_codec_get_id (oc->oformat->codec_tag, ipar->codec_tag) == opar->codec_id ||
174             av_codec_get_tag(oc->oformat->codec_tag, ipar->codec_id) <= 0) {
175             opar->codec_tag = ipar->codec_tag;
176         } else {
177             opar->codec_tag = 0;
178         }
179         st->sample_aspect_ratio = ist->sample_aspect_ratio;
180         st->time_base           = ist->time_base;
181         st->avg_frame_rate      = ist->avg_frame_rate;
182 #if FF_API_LAVF_AVCTX
183 FF_DISABLE_DEPRECATION_WARNINGS
184         if (ipar->codec_tag == MKTAG('t','m','c','d'))
185             st->codec->time_base = ist->codec->time_base;
186 FF_ENABLE_DEPRECATION_WARNINGS
187 #endif
188         av_dict_copy(&st->metadata, ist->metadata, 0);
189     }
190
191     return 0;
192 }
193
194 static int set_segment_filename(AVFormatContext *s)
195 {
196     SegmentContext *seg = s->priv_data;
197     AVFormatContext *oc = seg->avf;
198     size_t size;
199     int ret;
200     char buf[1024];
201     char *new_name;
202
203     if (seg->segment_idx_wrap)
204         seg->segment_idx %= seg->segment_idx_wrap;
205     if (seg->use_strftime) {
206         time_t now0;
207         struct tm *tm, tmpbuf;
208         time(&now0);
209         tm = localtime_r(&now0, &tmpbuf);
210         if (!strftime(buf, sizeof(buf), s->url, tm)) {
211             av_log(oc, AV_LOG_ERROR, "Could not get segment filename with strftime\n");
212             return AVERROR(EINVAL);
213         }
214     } else if (av_get_frame_filename(buf, sizeof(buf),
215                                      s->url, seg->segment_idx) < 0) {
216         av_log(oc, AV_LOG_ERROR, "Invalid segment filename template '%s'\n", s->url);
217         return AVERROR(EINVAL);
218     }
219     new_name = av_strdup(buf);
220     if (!new_name)
221         return AVERROR(ENOMEM);
222     ff_format_set_url(oc, new_name);
223
224     /* copy modified name in list entry */
225     size = strlen(av_basename(oc->url)) + 1;
226     if (seg->entry_prefix)
227         size += strlen(seg->entry_prefix);
228
229     if ((ret = av_reallocp(&seg->cur_entry.filename, size)) < 0)
230         return ret;
231     snprintf(seg->cur_entry.filename, size, "%s%s",
232              seg->entry_prefix ? seg->entry_prefix : "",
233              av_basename(oc->url));
234
235     return 0;
236 }
237
238 static int segment_start(AVFormatContext *s, int write_header)
239 {
240     SegmentContext *seg = s->priv_data;
241     AVFormatContext *oc = seg->avf;
242     int err = 0;
243
244     if (write_header) {
245         avformat_free_context(oc);
246         seg->avf = NULL;
247         if ((err = segment_mux_init(s)) < 0)
248             return err;
249         oc = seg->avf;
250     }
251
252     seg->segment_idx++;
253     if ((seg->segment_idx_wrap) && (seg->segment_idx % seg->segment_idx_wrap == 0))
254         seg->segment_idx_wrap_nb++;
255
256     if ((err = set_segment_filename(s)) < 0)
257         return err;
258
259     if ((err = s->io_open(s, &oc->pb, oc->url, AVIO_FLAG_WRITE, NULL)) < 0) {
260         av_log(s, AV_LOG_ERROR, "Failed to open segment '%s'\n", oc->url);
261         return err;
262     }
263     if (!seg->individual_header_trailer)
264         oc->pb->seekable = 0;
265
266     if (oc->oformat->priv_class && oc->priv_data)
267         av_opt_set(oc->priv_data, "mpegts_flags", "+resend_headers", 0);
268
269     if (write_header) {
270         AVDictionary *options = NULL;
271         av_dict_copy(&options, seg->format_options, 0);
272         av_dict_set(&options, "fflags", "-autobsf", 0);
273         err = avformat_write_header(oc, &options);
274         av_dict_free(&options);
275         if (err < 0)
276             return err;
277     }
278
279     seg->segment_frame_count = 0;
280     return 0;
281 }
282
283 static int segment_list_open(AVFormatContext *s)
284 {
285     SegmentContext *seg = s->priv_data;
286     int ret;
287
288     snprintf(seg->temp_list_filename, sizeof(seg->temp_list_filename), seg->use_rename ? "%s.tmp" : "%s", seg->list);
289     ret = s->io_open(s, &seg->list_pb, seg->temp_list_filename, AVIO_FLAG_WRITE, NULL);
290     if (ret < 0) {
291         av_log(s, AV_LOG_ERROR, "Failed to open segment list '%s'\n", seg->list);
292         return ret;
293     }
294
295     if (seg->list_type == LIST_TYPE_M3U8 && seg->segment_list_entries) {
296         SegmentListEntry *entry;
297         double max_duration = 0;
298
299         avio_printf(seg->list_pb, "#EXTM3U\n");
300         avio_printf(seg->list_pb, "#EXT-X-VERSION:3\n");
301         avio_printf(seg->list_pb, "#EXT-X-MEDIA-SEQUENCE:%d\n", seg->segment_list_entries->index);
302         avio_printf(seg->list_pb, "#EXT-X-ALLOW-CACHE:%s\n",
303                     seg->list_flags & SEGMENT_LIST_FLAG_CACHE ? "YES" : "NO");
304
305         av_log(s, AV_LOG_VERBOSE, "EXT-X-MEDIA-SEQUENCE:%d\n",
306                seg->segment_list_entries->index);
307
308         for (entry = seg->segment_list_entries; entry; entry = entry->next)
309             max_duration = FFMAX(max_duration, entry->end_time - entry->start_time);
310         avio_printf(seg->list_pb, "#EXT-X-TARGETDURATION:%"PRId64"\n", (int64_t)ceil(max_duration));
311     } else if (seg->list_type == LIST_TYPE_FFCONCAT) {
312         avio_printf(seg->list_pb, "ffconcat version 1.0\n");
313     }
314
315     return ret;
316 }
317
318 static void segment_list_print_entry(AVIOContext      *list_ioctx,
319                                      ListType          list_type,
320                                      const SegmentListEntry *list_entry,
321                                      void *log_ctx)
322 {
323     switch (list_type) {
324     case LIST_TYPE_FLAT:
325         avio_printf(list_ioctx, "%s\n", list_entry->filename);
326         break;
327     case LIST_TYPE_CSV:
328     case LIST_TYPE_EXT:
329         print_csv_escaped_str(list_ioctx, list_entry->filename);
330         avio_printf(list_ioctx, ",%f,%f\n", list_entry->start_time, list_entry->end_time);
331         break;
332     case LIST_TYPE_M3U8:
333         avio_printf(list_ioctx, "#EXTINF:%f,\n%s\n",
334                     list_entry->end_time - list_entry->start_time, list_entry->filename);
335         break;
336     case LIST_TYPE_FFCONCAT:
337     {
338         char *buf;
339         if (av_escape(&buf, list_entry->filename, NULL, AV_ESCAPE_MODE_AUTO, AV_ESCAPE_FLAG_WHITESPACE) < 0) {
340             av_log(log_ctx, AV_LOG_WARNING,
341                    "Error writing list entry '%s' in list file\n", list_entry->filename);
342             return;
343         }
344         avio_printf(list_ioctx, "file %s\n", buf);
345         av_free(buf);
346         break;
347     }
348     default:
349         av_assert0(!"Invalid list type");
350     }
351 }
352
353 static int segment_end(AVFormatContext *s, int write_trailer, int is_last)
354 {
355     SegmentContext *seg = s->priv_data;
356     AVFormatContext *oc = seg->avf;
357     int ret = 0;
358     AVTimecode tc;
359     AVRational rate;
360     AVDictionaryEntry *tcr;
361     char buf[AV_TIMECODE_STR_SIZE];
362     int i;
363     int err;
364
365     if (!oc || !oc->pb)
366         return AVERROR(EINVAL);
367
368     av_write_frame(oc, NULL); /* Flush any buffered data (fragmented mp4) */
369     if (write_trailer)
370         ret = av_write_trailer(oc);
371
372     if (ret < 0)
373         av_log(s, AV_LOG_ERROR, "Failure occurred when ending segment '%s'\n",
374                oc->url);
375
376     if (seg->list) {
377         if (seg->list_size || seg->list_type == LIST_TYPE_M3U8) {
378             SegmentListEntry *entry = av_mallocz(sizeof(*entry));
379             if (!entry) {
380                 ret = AVERROR(ENOMEM);
381                 goto end;
382             }
383
384             /* append new element */
385             memcpy(entry, &seg->cur_entry, sizeof(*entry));
386             entry->filename = av_strdup(entry->filename);
387             if (!seg->segment_list_entries)
388                 seg->segment_list_entries = seg->segment_list_entries_end = entry;
389             else
390                 seg->segment_list_entries_end->next = entry;
391             seg->segment_list_entries_end = entry;
392
393             /* drop first item */
394             if (seg->list_size && seg->segment_count >= seg->list_size) {
395                 entry = seg->segment_list_entries;
396                 seg->segment_list_entries = seg->segment_list_entries->next;
397                 av_freep(&entry->filename);
398                 av_freep(&entry);
399             }
400
401             if ((ret = segment_list_open(s)) < 0)
402                 goto end;
403             for (entry = seg->segment_list_entries; entry; entry = entry->next)
404                 segment_list_print_entry(seg->list_pb, seg->list_type, entry, s);
405             if (seg->list_type == LIST_TYPE_M3U8 && is_last)
406                 avio_printf(seg->list_pb, "#EXT-X-ENDLIST\n");
407             ff_format_io_close(s, &seg->list_pb);
408             if (seg->use_rename)
409                 ff_rename(seg->temp_list_filename, seg->list, s);
410         } else {
411             segment_list_print_entry(seg->list_pb, seg->list_type, &seg->cur_entry, s);
412             avio_flush(seg->list_pb);
413         }
414     }
415
416     av_log(s, AV_LOG_VERBOSE, "segment:'%s' count:%d ended\n",
417            seg->avf->url, seg->segment_count);
418     seg->segment_count++;
419
420     if (seg->increment_tc) {
421         tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
422         if (tcr) {
423             /* search the first video stream */
424             for (i = 0; i < s->nb_streams; i++) {
425                 if (s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
426                     rate = s->streams[i]->avg_frame_rate;/* Get fps from the video stream */
427                     err = av_timecode_init_from_string(&tc, rate, tcr->value, s);
428                     if (err < 0) {
429                         av_log(s, AV_LOG_WARNING, "Could not increment global timecode, error occurred during timecode creation.\n");
430                         break;
431                     }
432                     tc.start += (int)((seg->cur_entry.end_time - seg->cur_entry.start_time) * av_q2d(rate));/* increment timecode */
433                     av_dict_set(&s->metadata, "timecode",
434                                 av_timecode_make_string(&tc, buf, 0), 0);
435                     break;
436                 }
437             }
438         } else {
439             av_log(s, AV_LOG_WARNING, "Could not increment global timecode, no global timecode metadata found.\n");
440         }
441         for (i = 0; i < s->nb_streams; i++) {
442             if (s->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
443                 char st_buf[AV_TIMECODE_STR_SIZE];
444                 AVTimecode st_tc;
445                 AVRational st_rate = s->streams[i]->avg_frame_rate;
446                 AVDictionaryEntry *st_tcr = av_dict_get(s->streams[i]->metadata, "timecode", NULL, 0);
447                 if (st_tcr) {
448                     if ((av_timecode_init_from_string(&st_tc, st_rate, st_tcr->value, s) < 0)) {
449                         av_log(s, AV_LOG_WARNING, "Could not increment stream %d timecode, error occurred during timecode creation.\n", i);
450                         continue;
451                     }
452                 st_tc.start += (int)((seg->cur_entry.end_time - seg->cur_entry.start_time) * av_q2d(st_rate));    // increment timecode
453                 av_dict_set(&s->streams[i]->metadata, "timecode", av_timecode_make_string(&st_tc, st_buf, 0), 0);
454                 }
455             }
456         }
457     }
458
459 end:
460     ff_format_io_close(oc, &oc->pb);
461
462     return ret;
463 }
464
465 static int parse_times(void *log_ctx, int64_t **times, int *nb_times,
466                        const char *times_str)
467 {
468     char *p;
469     int i, ret = 0;
470     char *times_str1 = av_strdup(times_str);
471     char *saveptr = NULL;
472
473     if (!times_str1)
474         return AVERROR(ENOMEM);
475
476 #define FAIL(err) ret = err; goto end
477
478     *nb_times = 1;
479     for (p = times_str1; *p; p++)
480         if (*p == ',')
481             (*nb_times)++;
482
483     *times = av_malloc_array(*nb_times, sizeof(**times));
484     if (!*times) {
485         av_log(log_ctx, AV_LOG_ERROR, "Could not allocate forced times array\n");
486         FAIL(AVERROR(ENOMEM));
487     }
488
489     p = times_str1;
490     for (i = 0; i < *nb_times; i++) {
491         int64_t t;
492         char *tstr = av_strtok(p, ",", &saveptr);
493         p = NULL;
494
495         if (!tstr || !tstr[0]) {
496             av_log(log_ctx, AV_LOG_ERROR, "Empty time specification in times list %s\n",
497                    times_str);
498             FAIL(AVERROR(EINVAL));
499         }
500
501         ret = av_parse_time(&t, tstr, 1);
502         if (ret < 0) {
503             av_log(log_ctx, AV_LOG_ERROR,
504                    "Invalid time duration specification '%s' in times list %s\n", tstr, times_str);
505             FAIL(AVERROR(EINVAL));
506         }
507         (*times)[i] = t;
508
509         /* check on monotonicity */
510         if (i && (*times)[i-1] > (*times)[i]) {
511             av_log(log_ctx, AV_LOG_ERROR,
512                    "Specified time %f is greater than the following time %f\n",
513                    (float)((*times)[i])/1000000, (float)((*times)[i-1])/1000000);
514             FAIL(AVERROR(EINVAL));
515         }
516     }
517
518 end:
519     av_free(times_str1);
520     return ret;
521 }
522
523 static int parse_frames(void *log_ctx, int **frames, int *nb_frames,
524                         const char *frames_str)
525 {
526     char *p;
527     int i, ret = 0;
528     char *frames_str1 = av_strdup(frames_str);
529     char *saveptr = NULL;
530
531     if (!frames_str1)
532         return AVERROR(ENOMEM);
533
534 #define FAIL(err) ret = err; goto end
535
536     *nb_frames = 1;
537     for (p = frames_str1; *p; p++)
538         if (*p == ',')
539             (*nb_frames)++;
540
541     *frames = av_malloc_array(*nb_frames, sizeof(**frames));
542     if (!*frames) {
543         av_log(log_ctx, AV_LOG_ERROR, "Could not allocate forced frames array\n");
544         FAIL(AVERROR(ENOMEM));
545     }
546
547     p = frames_str1;
548     for (i = 0; i < *nb_frames; i++) {
549         long int f;
550         char *tailptr;
551         char *fstr = av_strtok(p, ",", &saveptr);
552
553         p = NULL;
554         if (!fstr) {
555             av_log(log_ctx, AV_LOG_ERROR, "Empty frame specification in frame list %s\n",
556                    frames_str);
557             FAIL(AVERROR(EINVAL));
558         }
559         f = strtol(fstr, &tailptr, 10);
560         if (*tailptr || f <= 0 || f >= INT_MAX) {
561             av_log(log_ctx, AV_LOG_ERROR,
562                    "Invalid argument '%s', must be a positive integer <= INT64_MAX\n",
563                    fstr);
564             FAIL(AVERROR(EINVAL));
565         }
566         (*frames)[i] = f;
567
568         /* check on monotonicity */
569         if (i && (*frames)[i-1] > (*frames)[i]) {
570             av_log(log_ctx, AV_LOG_ERROR,
571                    "Specified frame %d is greater than the following frame %d\n",
572                    (*frames)[i], (*frames)[i-1]);
573             FAIL(AVERROR(EINVAL));
574         }
575     }
576
577 end:
578     av_free(frames_str1);
579     return ret;
580 }
581
582 static int open_null_ctx(AVIOContext **ctx)
583 {
584     int buf_size = 32768;
585     uint8_t *buf = av_malloc(buf_size);
586     if (!buf)
587         return AVERROR(ENOMEM);
588     *ctx = avio_alloc_context(buf, buf_size, AVIO_FLAG_WRITE, NULL, NULL, NULL, NULL);
589     if (!*ctx) {
590         av_free(buf);
591         return AVERROR(ENOMEM);
592     }
593     return 0;
594 }
595
596 static void close_null_ctxp(AVIOContext **pb)
597 {
598     av_freep(&(*pb)->buffer);
599     avio_context_free(pb);
600 }
601
602 static int select_reference_stream(AVFormatContext *s)
603 {
604     SegmentContext *seg = s->priv_data;
605     int ret, i;
606
607     seg->reference_stream_index = -1;
608     if (!strcmp(seg->reference_stream_specifier, "auto")) {
609         /* select first index of type with highest priority */
610         int type_index_map[AVMEDIA_TYPE_NB];
611         static const enum AVMediaType type_priority_list[] = {
612             AVMEDIA_TYPE_VIDEO,
613             AVMEDIA_TYPE_AUDIO,
614             AVMEDIA_TYPE_SUBTITLE,
615             AVMEDIA_TYPE_DATA,
616             AVMEDIA_TYPE_ATTACHMENT
617         };
618         enum AVMediaType type;
619
620         for (i = 0; i < AVMEDIA_TYPE_NB; i++)
621             type_index_map[i] = -1;
622
623         /* select first index for each type */
624         for (i = 0; i < s->nb_streams; i++) {
625             type = s->streams[i]->codecpar->codec_type;
626             if ((unsigned)type < AVMEDIA_TYPE_NB && type_index_map[type] == -1
627                 /* ignore attached pictures/cover art streams */
628                 && !(s->streams[i]->disposition & AV_DISPOSITION_ATTACHED_PIC))
629                 type_index_map[type] = i;
630         }
631
632         for (i = 0; i < FF_ARRAY_ELEMS(type_priority_list); i++) {
633             type = type_priority_list[i];
634             if ((seg->reference_stream_index = type_index_map[type]) >= 0)
635                 break;
636         }
637     } else {
638         for (i = 0; i < s->nb_streams; i++) {
639             ret = avformat_match_stream_specifier(s, s->streams[i],
640                                                   seg->reference_stream_specifier);
641             if (ret < 0)
642                 return ret;
643             if (ret > 0) {
644                 seg->reference_stream_index = i;
645                 break;
646             }
647         }
648     }
649
650     if (seg->reference_stream_index < 0) {
651         av_log(s, AV_LOG_ERROR, "Could not select stream matching identifier '%s'\n",
652                seg->reference_stream_specifier);
653         return AVERROR(EINVAL);
654     }
655
656     return 0;
657 }
658
659 static void seg_free(AVFormatContext *s)
660 {
661     SegmentContext *seg = s->priv_data;
662     ff_format_io_close(seg->avf, &seg->list_pb);
663     avformat_free_context(seg->avf);
664     seg->avf = NULL;
665 }
666
667 static int seg_init(AVFormatContext *s)
668 {
669     SegmentContext *seg = s->priv_data;
670     AVFormatContext *oc = seg->avf;
671     AVDictionary *options = NULL;
672     int ret;
673     int i;
674
675     seg->segment_count = 0;
676     if (!seg->write_header_trailer)
677         seg->individual_header_trailer = 0;
678
679     if (seg->header_filename) {
680         seg->write_header_trailer = 1;
681         seg->individual_header_trailer = 0;
682     }
683
684     if (seg->initial_offset > 0) {
685         av_log(s, AV_LOG_WARNING, "NOTE: the option initial_offset is deprecated,"
686                "you can use output_ts_offset instead of it\n");
687     }
688
689     if (!!seg->time_str + !!seg->times_str + !!seg->frames_str > 1) {
690         av_log(s, AV_LOG_ERROR,
691                "segment_time, segment_times, and segment_frames options "
692                "are mutually exclusive, select just one of them\n");
693         return AVERROR(EINVAL);
694     }
695
696     if (seg->times_str) {
697         if ((ret = parse_times(s, &seg->times, &seg->nb_times, seg->times_str)) < 0)
698             return ret;
699     } else if (seg->frames_str) {
700         if ((ret = parse_frames(s, &seg->frames, &seg->nb_frames, seg->frames_str)) < 0)
701             return ret;
702     } else {
703         /* set default value if not specified */
704         if (!seg->time_str)
705             seg->time_str = av_strdup("2");
706         if ((ret = av_parse_time(&seg->time, seg->time_str, 1)) < 0) {
707             av_log(s, AV_LOG_ERROR,
708                    "Invalid time duration specification '%s' for segment_time option\n",
709                    seg->time_str);
710             return ret;
711         }
712         if (seg->use_clocktime) {
713             if (seg->time <= 0) {
714                 av_log(s, AV_LOG_ERROR, "Invalid negative segment_time with segment_atclocktime option set\n");
715                 return AVERROR(EINVAL);
716             }
717             seg->clocktime_offset = seg->time - (seg->clocktime_offset % seg->time);
718         }
719     }
720
721     if (seg->list) {
722         if (seg->list_type == LIST_TYPE_UNDEFINED) {
723             if      (av_match_ext(seg->list, "csv" )) seg->list_type = LIST_TYPE_CSV;
724             else if (av_match_ext(seg->list, "ext" )) seg->list_type = LIST_TYPE_EXT;
725             else if (av_match_ext(seg->list, "m3u8")) seg->list_type = LIST_TYPE_M3U8;
726             else if (av_match_ext(seg->list, "ffcat,ffconcat")) seg->list_type = LIST_TYPE_FFCONCAT;
727             else                                      seg->list_type = LIST_TYPE_FLAT;
728         }
729         if (!seg->list_size && seg->list_type != LIST_TYPE_M3U8) {
730             if ((ret = segment_list_open(s)) < 0)
731                 return ret;
732         } else {
733             const char *proto = avio_find_protocol_name(seg->list);
734             seg->use_rename = proto && !strcmp(proto, "file");
735         }
736     }
737
738     if (seg->list_type == LIST_TYPE_EXT)
739         av_log(s, AV_LOG_WARNING, "'ext' list type option is deprecated in favor of 'csv'\n");
740
741     if ((ret = select_reference_stream(s)) < 0)
742         return ret;
743     av_log(s, AV_LOG_VERBOSE, "Selected stream id:%d type:%s\n",
744            seg->reference_stream_index,
745            av_get_media_type_string(s->streams[seg->reference_stream_index]->codecpar->codec_type));
746
747     seg->oformat = av_guess_format(seg->format, s->url, NULL);
748
749     if (!seg->oformat)
750         return AVERROR_MUXER_NOT_FOUND;
751     if (seg->oformat->flags & AVFMT_NOFILE) {
752         av_log(s, AV_LOG_ERROR, "format %s not supported.\n",
753                seg->oformat->name);
754         return AVERROR(EINVAL);
755     }
756
757     if ((ret = segment_mux_init(s)) < 0)
758         return ret;
759
760     if ((ret = set_segment_filename(s)) < 0)
761         return ret;
762     oc = seg->avf;
763
764     if (seg->write_header_trailer) {
765         if ((ret = s->io_open(s, &oc->pb,
766                               seg->header_filename ? seg->header_filename : oc->url,
767                               AVIO_FLAG_WRITE, NULL)) < 0) {
768             av_log(s, AV_LOG_ERROR, "Failed to open segment '%s'\n", oc->url);
769             return ret;
770         }
771         if (!seg->individual_header_trailer)
772             oc->pb->seekable = 0;
773     } else {
774         if ((ret = open_null_ctx(&oc->pb)) < 0)
775             return ret;
776     }
777
778     av_dict_copy(&options, seg->format_options, 0);
779     av_dict_set(&options, "fflags", "-autobsf", 0);
780     ret = avformat_init_output(oc, &options);
781     if (av_dict_count(options)) {
782         av_log(s, AV_LOG_ERROR,
783                "Some of the provided format options are not recognized\n");
784         av_dict_free(&options);
785         return AVERROR(EINVAL);
786     }
787     av_dict_free(&options);
788
789     if (ret < 0) {
790         ff_format_io_close(oc, &oc->pb);
791         return ret;
792     }
793     seg->segment_frame_count = 0;
794
795     av_assert0(s->nb_streams == oc->nb_streams);
796     if (ret == AVSTREAM_INIT_IN_WRITE_HEADER) {
797         ret = avformat_write_header(oc, NULL);
798         if (ret < 0)
799             return ret;
800         seg->header_written = 1;
801     }
802
803     for (i = 0; i < s->nb_streams; i++) {
804         AVStream *inner_st  = oc->streams[i];
805         AVStream *outer_st = s->streams[i];
806         avpriv_set_pts_info(outer_st, inner_st->pts_wrap_bits, inner_st->time_base.num, inner_st->time_base.den);
807     }
808
809     if (oc->avoid_negative_ts > 0 && s->avoid_negative_ts < 0)
810         s->avoid_negative_ts = 1;
811
812     return ret;
813 }
814
815 static int seg_write_header(AVFormatContext *s)
816 {
817     SegmentContext *seg = s->priv_data;
818     AVFormatContext *oc = seg->avf;
819     int ret, i;
820
821     if (!seg->header_written) {
822         for (i = 0; i < s->nb_streams; i++) {
823             AVStream *st = oc->streams[i];
824             AVCodecParameters *ipar, *opar;
825
826             ipar = s->streams[i]->codecpar;
827             opar = oc->streams[i]->codecpar;
828             avcodec_parameters_copy(opar, ipar);
829             if (!oc->oformat->codec_tag ||
830                 av_codec_get_id (oc->oformat->codec_tag, ipar->codec_tag) == opar->codec_id ||
831                 av_codec_get_tag(oc->oformat->codec_tag, ipar->codec_id) <= 0) {
832                 opar->codec_tag = ipar->codec_tag;
833             } else {
834                 opar->codec_tag = 0;
835             }
836             st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
837             st->time_base = s->streams[i]->time_base;
838         }
839         ret = avformat_write_header(oc, NULL);
840         if (ret < 0)
841             return ret;
842     }
843
844     if (!seg->write_header_trailer || seg->header_filename) {
845         if (seg->header_filename) {
846             av_write_frame(oc, NULL);
847             ff_format_io_close(oc, &oc->pb);
848         } else {
849             close_null_ctxp(&oc->pb);
850         }
851         if ((ret = oc->io_open(oc, &oc->pb, oc->url, AVIO_FLAG_WRITE, NULL)) < 0)
852             return ret;
853         if (!seg->individual_header_trailer)
854             oc->pb->seekable = 0;
855     }
856
857     return 0;
858 }
859
860 static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
861 {
862     SegmentContext *seg = s->priv_data;
863     AVStream *st = s->streams[pkt->stream_index];
864     int64_t end_pts = INT64_MAX, offset;
865     int start_frame = INT_MAX;
866     int ret;
867     struct tm ti;
868     int64_t usecs;
869     int64_t wrapped_val;
870
871     if (!seg->avf || !seg->avf->pb)
872         return AVERROR(EINVAL);
873
874     if (!st->codecpar->extradata_size) {
875         int pkt_extradata_size = 0;
876         uint8_t *pkt_extradata = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, &pkt_extradata_size);
877         if (pkt_extradata && pkt_extradata_size > 0) {
878             ret = ff_alloc_extradata(st->codecpar, pkt_extradata_size);
879             if (ret < 0) {
880                 av_log(s, AV_LOG_WARNING, "Unable to add extradata to stream. Output segments may be invalid.\n");
881                 goto calc_times;
882             }
883             memcpy(st->codecpar->extradata, pkt_extradata, pkt_extradata_size);
884         }
885     }
886
887 calc_times:
888     if (seg->times) {
889         end_pts = seg->segment_count < seg->nb_times ?
890             seg->times[seg->segment_count] : INT64_MAX;
891     } else if (seg->frames) {
892         start_frame = seg->segment_count < seg->nb_frames ?
893             seg->frames[seg->segment_count] : INT_MAX;
894     } else {
895         if (seg->use_clocktime) {
896             int64_t avgt = av_gettime();
897             time_t sec = avgt / 1000000;
898             localtime_r(&sec, &ti);
899             usecs = (int64_t)(ti.tm_hour * 3600 + ti.tm_min * 60 + ti.tm_sec) * 1000000 + (avgt % 1000000);
900             wrapped_val = (usecs + seg->clocktime_offset) % seg->time;
901             if (wrapped_val < seg->last_val && wrapped_val < seg->clocktime_wrap_duration)
902                 seg->cut_pending = 1;
903             seg->last_val = wrapped_val;
904         } else {
905             end_pts = seg->time * (seg->segment_count + 1);
906         }
907     }
908
909     ff_dlog(s, "packet stream:%d pts:%s pts_time:%s duration_time:%s is_key:%d frame:%d\n",
910             pkt->stream_index, av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
911             av_ts2timestr(pkt->duration, &st->time_base),
912             pkt->flags & AV_PKT_FLAG_KEY,
913             pkt->stream_index == seg->reference_stream_index ? seg->frame_count : -1);
914
915     if (pkt->stream_index == seg->reference_stream_index &&
916         (pkt->flags & AV_PKT_FLAG_KEY || seg->break_non_keyframes) &&
917         (seg->segment_frame_count > 0 || seg->write_empty) &&
918         (seg->cut_pending || seg->frame_count >= start_frame ||
919          (pkt->pts != AV_NOPTS_VALUE &&
920           av_compare_ts(pkt->pts, st->time_base,
921                         end_pts - seg->time_delta, AV_TIME_BASE_Q) >= 0))) {
922         /* sanitize end time in case last packet didn't have a defined duration */
923         if (seg->cur_entry.last_duration == 0)
924             seg->cur_entry.end_time = (double)pkt->pts * av_q2d(st->time_base);
925
926         if ((ret = segment_end(s, seg->individual_header_trailer, 0)) < 0)
927             goto fail;
928
929         if ((ret = segment_start(s, seg->individual_header_trailer)) < 0)
930             goto fail;
931
932         seg->cut_pending = 0;
933         seg->cur_entry.index = seg->segment_idx + seg->segment_idx_wrap * seg->segment_idx_wrap_nb;
934         seg->cur_entry.start_time = (double)pkt->pts * av_q2d(st->time_base);
935         seg->cur_entry.start_pts = av_rescale_q(pkt->pts, st->time_base, AV_TIME_BASE_Q);
936         seg->cur_entry.end_time = seg->cur_entry.start_time;
937
938         if (seg->times || (!seg->frames && !seg->use_clocktime) && seg->write_empty)
939             goto calc_times;
940     }
941
942     if (pkt->stream_index == seg->reference_stream_index) {
943         if (pkt->pts != AV_NOPTS_VALUE)
944             seg->cur_entry.end_time =
945                 FFMAX(seg->cur_entry.end_time, (double)(pkt->pts + pkt->duration) * av_q2d(st->time_base));
946         seg->cur_entry.last_duration = pkt->duration;
947     }
948
949     if (seg->segment_frame_count == 0) {
950         av_log(s, AV_LOG_VERBOSE, "segment:'%s' starts with packet stream:%d pts:%s pts_time:%s frame:%d\n",
951                seg->avf->url, pkt->stream_index,
952                av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base), seg->frame_count);
953     }
954
955     av_log(s, AV_LOG_DEBUG, "stream:%d start_pts_time:%s pts:%s pts_time:%s dts:%s dts_time:%s",
956            pkt->stream_index,
957            av_ts2timestr(seg->cur_entry.start_pts, &AV_TIME_BASE_Q),
958            av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
959            av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &st->time_base));
960
961     /* compute new timestamps */
962     offset = av_rescale_q(seg->initial_offset - (seg->reset_timestamps ? seg->cur_entry.start_pts : 0),
963                           AV_TIME_BASE_Q, st->time_base);
964     if (pkt->pts != AV_NOPTS_VALUE)
965         pkt->pts += offset;
966     if (pkt->dts != AV_NOPTS_VALUE)
967         pkt->dts += offset;
968
969     av_log(s, AV_LOG_DEBUG, " -> pts:%s pts_time:%s dts:%s dts_time:%s\n",
970            av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
971            av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &st->time_base));
972
973     ret = ff_write_chained(seg->avf, pkt->stream_index, pkt, s,
974                            seg->initial_offset || seg->reset_timestamps || seg->avf->oformat->interleave_packet);
975
976 fail:
977     if (pkt->stream_index == seg->reference_stream_index) {
978         seg->frame_count++;
979         seg->segment_frame_count++;
980     }
981
982     return ret;
983 }
984
985 static int seg_write_trailer(struct AVFormatContext *s)
986 {
987     SegmentContext *seg = s->priv_data;
988     AVFormatContext *oc = seg->avf;
989     SegmentListEntry *cur, *next;
990     int ret = 0;
991
992     if (!oc)
993         goto fail;
994
995     if (!seg->write_header_trailer) {
996         if ((ret = segment_end(s, 0, 1)) < 0)
997             goto fail;
998         if ((ret = open_null_ctx(&oc->pb)) < 0)
999             goto fail;
1000         ret = av_write_trailer(oc);
1001         close_null_ctxp(&oc->pb);
1002     } else {
1003         ret = segment_end(s, 1, 1);
1004     }
1005 fail:
1006     if (seg->list)
1007         ff_format_io_close(s, &seg->list_pb);
1008
1009     av_opt_free(seg);
1010     av_freep(&seg->times);
1011     av_freep(&seg->frames);
1012     av_freep(&seg->cur_entry.filename);
1013
1014     cur = seg->segment_list_entries;
1015     while (cur) {
1016         next = cur->next;
1017         av_freep(&cur->filename);
1018         av_free(cur);
1019         cur = next;
1020     }
1021
1022     avformat_free_context(oc);
1023     seg->avf = NULL;
1024     return ret;
1025 }
1026
1027 static int seg_check_bitstream(struct AVFormatContext *s, const AVPacket *pkt)
1028 {
1029     SegmentContext *seg = s->priv_data;
1030     AVFormatContext *oc = seg->avf;
1031     if (oc->oformat->check_bitstream) {
1032         int ret = oc->oformat->check_bitstream(oc, pkt);
1033         if (ret == 1) {
1034             AVStream *st = s->streams[pkt->stream_index];
1035             AVStream *ost = oc->streams[pkt->stream_index];
1036             st->internal->bsfc = ost->internal->bsfc;
1037             ost->internal->bsfc = NULL;
1038         }
1039         return ret;
1040     }
1041     return 1;
1042 }
1043
1044 #define OFFSET(x) offsetof(SegmentContext, x)
1045 #define E AV_OPT_FLAG_ENCODING_PARAM
1046 static const AVOption options[] = {
1047     { "reference_stream",  "set reference stream", OFFSET(reference_stream_specifier), AV_OPT_TYPE_STRING, {.str = "auto"}, 0, 0, E },
1048     { "segment_format",    "set container format used for the segments", OFFSET(format),  AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E },
1049     { "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 },
1050     { "segment_list",      "set the segment list filename",              OFFSET(list),    AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E },
1051     { "segment_header_filename", "write a single file containing the header", OFFSET(header_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
1052
1053     { "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, "list_flags"},
1054     { "cache",             "allow list caching",                                    0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_LIST_FLAG_CACHE }, INT_MIN, INT_MAX,   E, "list_flags"},
1055     { "live",              "enable live-friendly list generation (useful for HLS)", 0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_LIST_FLAG_LIVE }, INT_MIN, INT_MAX,    E, "list_flags"},
1056
1057     { "segment_list_size", "set the maximum number of playlist entries", OFFSET(list_size), AV_OPT_TYPE_INT,  {.i64 = 0},     0, INT_MAX, E },
1058
1059     { "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, "list_type" },
1060     { "flat", "flat format",     0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_FLAT }, INT_MIN, INT_MAX, E, "list_type" },
1061     { "csv",  "csv format",      0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_CSV  }, INT_MIN, INT_MAX, E, "list_type" },
1062     { "ext",  "extended format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_EXT  }, INT_MIN, INT_MAX, E, "list_type" },
1063     { "ffconcat", "ffconcat format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_FFCONCAT }, INT_MIN, INT_MAX, E, "list_type" },
1064     { "m3u8", "M3U8 format",     0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_M3U8 }, INT_MIN, INT_MAX, E, "list_type" },
1065     { "hls", "Apple HTTP Live Streaming compatible", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_M3U8 }, INT_MIN, INT_MAX, E, "list_type" },
1066
1067     { "segment_atclocktime",      "set segment to be cut at clocktime",  OFFSET(use_clocktime), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E},
1068     { "segment_clocktime_offset", "set segment clocktime offset",        OFFSET(clocktime_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, 86400000000LL, E},
1069     { "segment_clocktime_wrap_duration", "set segment clocktime wrapping duration", OFFSET(clocktime_wrap_duration), AV_OPT_TYPE_DURATION, {.i64 = INT64_MAX}, 0, INT64_MAX, E},
1070     { "segment_time",      "set segment duration",                       OFFSET(time_str),AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E },
1071     { "segment_time_delta","set approximation value used for the segment times", OFFSET(time_delta), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, INT64_MAX, E },
1072     { "segment_times",     "set segment split time points",              OFFSET(times_str),AV_OPT_TYPE_STRING,{.str = NULL},  0, 0,       E },
1073     { "segment_frames",    "set segment split frame numbers",            OFFSET(frames_str),AV_OPT_TYPE_STRING,{.str = NULL},  0, 0,       E },
1074     { "segment_wrap",      "set number after which the index wraps",     OFFSET(segment_idx_wrap), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E },
1075     { "segment_list_entry_prefix", "set base url prefix for segments", OFFSET(entry_prefix), AV_OPT_TYPE_STRING,  {.str = NULL}, 0, 0, E },
1076     { "segment_start_number", "set the sequence number of the first segment", OFFSET(segment_idx), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E },
1077     { "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 },
1078     { "strftime",          "set filename expansion with strftime at segment creation", OFFSET(use_strftime), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
1079     { "increment_tc", "increment timecode between each segment", OFFSET(increment_tc), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
1080     { "break_non_keyframes", "allow breaking segments on non-keyframes", OFFSET(break_non_keyframes), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1081
1082     { "individual_header_trailer", "write header/trailer to each segment", OFFSET(individual_header_trailer), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, E },
1083     { "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 },
1084     { "reset_timestamps", "reset timestamps at the beginning of each segment", OFFSET(reset_timestamps), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1085     { "initial_offset", "set initial timestamp offset", OFFSET(initial_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, -INT64_MAX, INT64_MAX, E },
1086     { "write_empty_segments", "allow writing empty 'filler' segments", OFFSET(write_empty), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1087     { NULL },
1088 };
1089
1090 #if CONFIG_SEGMENT_MUXER
1091 static const AVClass seg_class = {
1092     .class_name = "segment muxer",
1093     .item_name  = av_default_item_name,
1094     .option     = options,
1095     .version    = LIBAVUTIL_VERSION_INT,
1096 };
1097
1098 AVOutputFormat ff_segment_muxer = {
1099     .name           = "segment",
1100     .long_name      = NULL_IF_CONFIG_SMALL("segment"),
1101     .priv_data_size = sizeof(SegmentContext),
1102     .flags          = AVFMT_NOFILE|AVFMT_GLOBALHEADER,
1103     .init           = seg_init,
1104     .write_header   = seg_write_header,
1105     .write_packet   = seg_write_packet,
1106     .write_trailer  = seg_write_trailer,
1107     .deinit         = seg_free,
1108     .check_bitstream = seg_check_bitstream,
1109     .priv_class     = &seg_class,
1110 };
1111 #endif
1112
1113 #if CONFIG_STREAM_SEGMENT_MUXER
1114 static const AVClass sseg_class = {
1115     .class_name = "stream_segment muxer",
1116     .item_name  = av_default_item_name,
1117     .option     = options,
1118     .version    = LIBAVUTIL_VERSION_INT,
1119 };
1120
1121 AVOutputFormat ff_stream_segment_muxer = {
1122     .name           = "stream_segment,ssegment",
1123     .long_name      = NULL_IF_CONFIG_SMALL("streaming segment muxer"),
1124     .priv_data_size = sizeof(SegmentContext),
1125     .flags          = AVFMT_NOFILE,
1126     .init           = seg_init,
1127     .write_header   = seg_write_header,
1128     .write_packet   = seg_write_packet,
1129     .write_trailer  = seg_write_trailer,
1130     .deinit         = seg_free,
1131     .check_bitstream = seg_check_bitstream,
1132     .priv_class     = &sseg_class,
1133 };
1134 #endif