]> git.sesse.net Git - ffmpeg/blob - libavformat/segment.c
avformat/segment: Fix segfault when error happens and segment list is output
[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     int64_t time;          ///< segment duration
94     int use_strftime;      ///< flag to expand filename with strftime
95     int increment_tc;      ///< flag to increment timecode if found
96
97     char *times_str;       ///< segment times specification string
98     int64_t *times;        ///< list of segment interval specification
99     int nb_times;          ///< number of elments in the times array
100
101     char *frames_str;      ///< segment frame numbers specification string
102     int *frames;           ///< list of frame number specification
103     int nb_frames;         ///< number of elments in the frames array
104     int frame_count;       ///< total number of reference frames
105     int segment_frame_count; ///< number of reference frames in the segment
106
107     int64_t time_delta;
108     int  individual_header_trailer; /**< Set by a private option. */
109     int  write_header_trailer; /**< Set by a private option. */
110     char *header_filename;  ///< filename to write the output header to
111
112     int reset_timestamps;  ///< reset timestamps at the beginning of each segment
113     int64_t initial_offset;    ///< initial timestamps offset, expressed in microseconds
114     char *reference_stream_specifier; ///< reference stream specifier
115     int   reference_stream_index;
116     int   break_non_keyframes;
117     int   write_empty;
118
119     int use_rename;
120     char temp_list_filename[1024];
121
122     SegmentListEntry cur_entry;
123     SegmentListEntry *segment_list_entries;
124     SegmentListEntry *segment_list_entries_end;
125 } SegmentContext;
126
127 static void print_csv_escaped_str(AVIOContext *ctx, const char *str)
128 {
129     int needs_quoting = !!str[strcspn(str, "\",\n\r")];
130
131     if (needs_quoting)
132         avio_w8(ctx, '"');
133
134     for (; *str; str++) {
135         if (*str == '"')
136             avio_w8(ctx, '"');
137         avio_w8(ctx, *str);
138     }
139     if (needs_quoting)
140         avio_w8(ctx, '"');
141 }
142
143 static int segment_mux_init(AVFormatContext *s)
144 {
145     SegmentContext *seg = s->priv_data;
146     AVFormatContext *oc;
147     int i;
148     int ret;
149
150     ret = avformat_alloc_output_context2(&seg->avf, seg->oformat, NULL, NULL);
151     if (ret < 0)
152         return ret;
153     oc = seg->avf;
154
155     oc->interrupt_callback = s->interrupt_callback;
156     oc->max_delay          = s->max_delay;
157     av_dict_copy(&oc->metadata, s->metadata, 0);
158     oc->opaque             = s->opaque;
159     oc->io_close           = s->io_close;
160     oc->io_open            = s->io_open;
161     oc->flags              = s->flags;
162
163     for (i = 0; i < s->nb_streams; i++) {
164         AVStream *st, *ist = s->streams[i];
165         AVCodecParameters *ipar = ist->codecpar, *opar;
166
167         if (!(st = avformat_new_stream(oc, NULL)))
168             return AVERROR(ENOMEM);
169         opar = st->codecpar;
170         avcodec_parameters_copy(opar, ipar);
171         if (!oc->oformat->codec_tag ||
172             av_codec_get_id (oc->oformat->codec_tag, ipar->codec_tag) == opar->codec_id ||
173             av_codec_get_tag(oc->oformat->codec_tag, ipar->codec_id) <= 0) {
174             opar->codec_tag = ipar->codec_tag;
175         } else {
176             opar->codec_tag = 0;
177         }
178         st->sample_aspect_ratio = ist->sample_aspect_ratio;
179         st->time_base           = ist->time_base;
180         st->avg_frame_rate      = ist->avg_frame_rate;
181         st->disposition         = ist->disposition;
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(s, &seg->list_pb);
663     avformat_free_context(seg->avf);
664     seg->avf = NULL;
665     av_freep(&seg->times);
666     av_freep(&seg->frames);
667 }
668
669 static int seg_init(AVFormatContext *s)
670 {
671     SegmentContext *seg = s->priv_data;
672     AVFormatContext *oc = seg->avf;
673     AVDictionary *options = NULL;
674     int ret;
675     int i;
676
677     seg->segment_count = 0;
678     if (!seg->write_header_trailer)
679         seg->individual_header_trailer = 0;
680
681     if (seg->header_filename) {
682         seg->write_header_trailer = 1;
683         seg->individual_header_trailer = 0;
684     }
685
686     if (seg->initial_offset > 0) {
687         av_log(s, AV_LOG_WARNING, "NOTE: the option initial_offset is deprecated,"
688                "you can use output_ts_offset instead of it\n");
689     }
690
691     if ((seg->time != 2000000) + !!seg->times_str + !!seg->frames_str > 1) {
692         av_log(s, AV_LOG_ERROR,
693                "segment_time, segment_times, and segment_frames options "
694                "are mutually exclusive, select just one of them\n");
695         return AVERROR(EINVAL);
696     }
697
698     if (seg->times_str) {
699         if ((ret = parse_times(s, &seg->times, &seg->nb_times, seg->times_str)) < 0)
700             return ret;
701     } else if (seg->frames_str) {
702         if ((ret = parse_frames(s, &seg->frames, &seg->nb_frames, seg->frames_str)) < 0)
703             return ret;
704     } else {
705         if (seg->use_clocktime) {
706             if (seg->time <= 0) {
707                 av_log(s, AV_LOG_ERROR, "Invalid negative segment_time with segment_atclocktime option set\n");
708                 return AVERROR(EINVAL);
709             }
710             seg->clocktime_offset = seg->time - (seg->clocktime_offset % seg->time);
711         }
712     }
713
714     if (seg->list) {
715         if (seg->list_type == LIST_TYPE_UNDEFINED) {
716             if      (av_match_ext(seg->list, "csv" )) seg->list_type = LIST_TYPE_CSV;
717             else if (av_match_ext(seg->list, "ext" )) seg->list_type = LIST_TYPE_EXT;
718             else if (av_match_ext(seg->list, "m3u8")) seg->list_type = LIST_TYPE_M3U8;
719             else if (av_match_ext(seg->list, "ffcat,ffconcat")) seg->list_type = LIST_TYPE_FFCONCAT;
720             else                                      seg->list_type = LIST_TYPE_FLAT;
721         }
722         if (!seg->list_size && seg->list_type != LIST_TYPE_M3U8) {
723             if ((ret = segment_list_open(s)) < 0)
724                 return ret;
725         } else {
726             const char *proto = avio_find_protocol_name(seg->list);
727             seg->use_rename = proto && !strcmp(proto, "file");
728         }
729     }
730
731     if (seg->list_type == LIST_TYPE_EXT)
732         av_log(s, AV_LOG_WARNING, "'ext' list type option is deprecated in favor of 'csv'\n");
733
734     if ((ret = select_reference_stream(s)) < 0)
735         return ret;
736     av_log(s, AV_LOG_VERBOSE, "Selected stream id:%d type:%s\n",
737            seg->reference_stream_index,
738            av_get_media_type_string(s->streams[seg->reference_stream_index]->codecpar->codec_type));
739
740     seg->oformat = av_guess_format(seg->format, s->url, NULL);
741
742     if (!seg->oformat)
743         return AVERROR_MUXER_NOT_FOUND;
744     if (seg->oformat->flags & AVFMT_NOFILE) {
745         av_log(s, AV_LOG_ERROR, "format %s not supported.\n",
746                seg->oformat->name);
747         return AVERROR(EINVAL);
748     }
749
750     if ((ret = segment_mux_init(s)) < 0)
751         return ret;
752
753     if ((ret = set_segment_filename(s)) < 0)
754         return ret;
755     oc = seg->avf;
756
757     if (seg->write_header_trailer) {
758         if ((ret = s->io_open(s, &oc->pb,
759                               seg->header_filename ? seg->header_filename : oc->url,
760                               AVIO_FLAG_WRITE, NULL)) < 0) {
761             av_log(s, AV_LOG_ERROR, "Failed to open segment '%s'\n", oc->url);
762             return ret;
763         }
764         if (!seg->individual_header_trailer)
765             oc->pb->seekable = 0;
766     } else {
767         if ((ret = open_null_ctx(&oc->pb)) < 0)
768             return ret;
769     }
770
771     av_dict_copy(&options, seg->format_options, 0);
772     av_dict_set(&options, "fflags", "-autobsf", 0);
773     ret = avformat_init_output(oc, &options);
774     if (av_dict_count(options)) {
775         av_log(s, AV_LOG_ERROR,
776                "Some of the provided format options are not recognized\n");
777         av_dict_free(&options);
778         return AVERROR(EINVAL);
779     }
780     av_dict_free(&options);
781
782     if (ret < 0) {
783         ff_format_io_close(oc, &oc->pb);
784         return ret;
785     }
786     seg->segment_frame_count = 0;
787
788     av_assert0(s->nb_streams == oc->nb_streams);
789     if (ret == AVSTREAM_INIT_IN_WRITE_HEADER) {
790         ret = avformat_write_header(oc, NULL);
791         if (ret < 0)
792             return ret;
793         seg->header_written = 1;
794     }
795
796     for (i = 0; i < s->nb_streams; i++) {
797         AVStream *inner_st  = oc->streams[i];
798         AVStream *outer_st = s->streams[i];
799         avpriv_set_pts_info(outer_st, inner_st->pts_wrap_bits, inner_st->time_base.num, inner_st->time_base.den);
800     }
801
802     if (oc->avoid_negative_ts > 0 && s->avoid_negative_ts < 0)
803         s->avoid_negative_ts = 1;
804
805     return ret;
806 }
807
808 static int seg_write_header(AVFormatContext *s)
809 {
810     SegmentContext *seg = s->priv_data;
811     AVFormatContext *oc = seg->avf;
812     int ret;
813
814     if (!seg->header_written) {
815         ret = avformat_write_header(oc, NULL);
816         if (ret < 0)
817             return ret;
818     }
819
820     if (!seg->write_header_trailer || seg->header_filename) {
821         if (seg->header_filename) {
822             av_write_frame(oc, NULL);
823             ff_format_io_close(oc, &oc->pb);
824         } else {
825             close_null_ctxp(&oc->pb);
826         }
827         if ((ret = oc->io_open(oc, &oc->pb, oc->url, AVIO_FLAG_WRITE, NULL)) < 0)
828             return ret;
829         if (!seg->individual_header_trailer)
830             oc->pb->seekable = 0;
831     }
832
833     return 0;
834 }
835
836 static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
837 {
838     SegmentContext *seg = s->priv_data;
839     AVStream *st = s->streams[pkt->stream_index];
840     int64_t end_pts = INT64_MAX, offset;
841     int start_frame = INT_MAX;
842     int ret;
843     struct tm ti;
844     int64_t usecs;
845     int64_t wrapped_val;
846
847     if (!seg->avf || !seg->avf->pb)
848         return AVERROR(EINVAL);
849
850     if (!st->codecpar->extradata_size) {
851         int pkt_extradata_size;
852         uint8_t *pkt_extradata = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, &pkt_extradata_size);
853         if (pkt_extradata && pkt_extradata_size > 0) {
854             ret = ff_alloc_extradata(st->codecpar, pkt_extradata_size);
855             if (ret < 0) {
856                 av_log(s, AV_LOG_WARNING, "Unable to add extradata to stream. Output segments may be invalid.\n");
857                 goto calc_times;
858             }
859             memcpy(st->codecpar->extradata, pkt_extradata, pkt_extradata_size);
860         }
861     }
862
863 calc_times:
864     if (seg->times) {
865         end_pts = seg->segment_count < seg->nb_times ?
866             seg->times[seg->segment_count] : INT64_MAX;
867     } else if (seg->frames) {
868         start_frame = seg->segment_count < seg->nb_frames ?
869             seg->frames[seg->segment_count] : INT_MAX;
870     } else {
871         if (seg->use_clocktime) {
872             int64_t avgt = av_gettime();
873             time_t sec = avgt / 1000000;
874             localtime_r(&sec, &ti);
875             usecs = (int64_t)(ti.tm_hour * 3600 + ti.tm_min * 60 + ti.tm_sec) * 1000000 + (avgt % 1000000);
876             wrapped_val = (usecs + seg->clocktime_offset) % seg->time;
877             if (wrapped_val < seg->last_val && wrapped_val < seg->clocktime_wrap_duration)
878                 seg->cut_pending = 1;
879             seg->last_val = wrapped_val;
880         } else {
881             end_pts = seg->time * (seg->segment_count + 1);
882         }
883     }
884
885     ff_dlog(s, "packet stream:%d pts:%s pts_time:%s duration_time:%s is_key:%d frame:%d\n",
886             pkt->stream_index, av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
887             av_ts2timestr(pkt->duration, &st->time_base),
888             pkt->flags & AV_PKT_FLAG_KEY,
889             pkt->stream_index == seg->reference_stream_index ? seg->frame_count : -1);
890
891     if (pkt->stream_index == seg->reference_stream_index &&
892         (pkt->flags & AV_PKT_FLAG_KEY || seg->break_non_keyframes) &&
893         (seg->segment_frame_count > 0 || seg->write_empty) &&
894         (seg->cut_pending || seg->frame_count >= start_frame ||
895          (pkt->pts != AV_NOPTS_VALUE &&
896           av_compare_ts(pkt->pts, st->time_base,
897                         end_pts - seg->time_delta, AV_TIME_BASE_Q) >= 0))) {
898         /* sanitize end time in case last packet didn't have a defined duration */
899         if (seg->cur_entry.last_duration == 0)
900             seg->cur_entry.end_time = (double)pkt->pts * av_q2d(st->time_base);
901
902         if ((ret = segment_end(s, seg->individual_header_trailer, 0)) < 0)
903             goto fail;
904
905         if ((ret = segment_start(s, seg->individual_header_trailer)) < 0)
906             goto fail;
907
908         seg->cut_pending = 0;
909         seg->cur_entry.index = seg->segment_idx + seg->segment_idx_wrap * seg->segment_idx_wrap_nb;
910         seg->cur_entry.start_time = (double)pkt->pts * av_q2d(st->time_base);
911         seg->cur_entry.start_pts = av_rescale_q(pkt->pts, st->time_base, AV_TIME_BASE_Q);
912         seg->cur_entry.end_time = seg->cur_entry.start_time;
913
914         if (seg->times || (!seg->frames && !seg->use_clocktime) && seg->write_empty)
915             goto calc_times;
916     }
917
918     if (pkt->stream_index == seg->reference_stream_index) {
919         if (pkt->pts != AV_NOPTS_VALUE)
920             seg->cur_entry.end_time =
921                 FFMAX(seg->cur_entry.end_time, (double)(pkt->pts + pkt->duration) * av_q2d(st->time_base));
922         seg->cur_entry.last_duration = pkt->duration;
923     }
924
925     if (seg->segment_frame_count == 0) {
926         av_log(s, AV_LOG_VERBOSE, "segment:'%s' starts with packet stream:%d pts:%s pts_time:%s frame:%d\n",
927                seg->avf->url, pkt->stream_index,
928                av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base), seg->frame_count);
929     }
930
931     av_log(s, AV_LOG_DEBUG, "stream:%d start_pts_time:%s pts:%s pts_time:%s dts:%s dts_time:%s",
932            pkt->stream_index,
933            av_ts2timestr(seg->cur_entry.start_pts, &AV_TIME_BASE_Q),
934            av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
935            av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &st->time_base));
936
937     /* compute new timestamps */
938     offset = av_rescale_q(seg->initial_offset - (seg->reset_timestamps ? seg->cur_entry.start_pts : 0),
939                           AV_TIME_BASE_Q, st->time_base);
940     if (pkt->pts != AV_NOPTS_VALUE)
941         pkt->pts += offset;
942     if (pkt->dts != AV_NOPTS_VALUE)
943         pkt->dts += offset;
944
945     av_log(s, AV_LOG_DEBUG, " -> pts:%s pts_time:%s dts:%s dts_time:%s\n",
946            av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
947            av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &st->time_base));
948
949     ret = ff_write_chained(seg->avf, pkt->stream_index, pkt, s,
950                            seg->initial_offset || seg->reset_timestamps || seg->avf->oformat->interleave_packet);
951
952 fail:
953     if (pkt->stream_index == seg->reference_stream_index) {
954         seg->frame_count++;
955         seg->segment_frame_count++;
956     }
957
958     return ret;
959 }
960
961 static int seg_write_trailer(struct AVFormatContext *s)
962 {
963     SegmentContext *seg = s->priv_data;
964     AVFormatContext *oc = seg->avf;
965     SegmentListEntry *cur, *next;
966     int ret = 0;
967
968     if (!oc)
969         goto fail;
970
971     if (!seg->write_header_trailer) {
972         if ((ret = segment_end(s, 0, 1)) < 0)
973             goto fail;
974         if ((ret = open_null_ctx(&oc->pb)) < 0)
975             goto fail;
976         ret = av_write_trailer(oc);
977         close_null_ctxp(&oc->pb);
978     } else {
979         ret = segment_end(s, 1, 1);
980     }
981 fail:
982     if (seg->list)
983         ff_format_io_close(s, &seg->list_pb);
984
985     av_opt_free(seg);
986     av_freep(&seg->cur_entry.filename);
987
988     cur = seg->segment_list_entries;
989     while (cur) {
990         next = cur->next;
991         av_freep(&cur->filename);
992         av_free(cur);
993         cur = next;
994     }
995
996     avformat_free_context(oc);
997     seg->avf = NULL;
998     return ret;
999 }
1000
1001 static int seg_check_bitstream(struct AVFormatContext *s, const AVPacket *pkt)
1002 {
1003     SegmentContext *seg = s->priv_data;
1004     AVFormatContext *oc = seg->avf;
1005     if (oc->oformat->check_bitstream) {
1006         int ret = oc->oformat->check_bitstream(oc, pkt);
1007         if (ret == 1) {
1008             AVStream *st = s->streams[pkt->stream_index];
1009             AVStream *ost = oc->streams[pkt->stream_index];
1010             st->internal->bsfc = ost->internal->bsfc;
1011             ost->internal->bsfc = NULL;
1012         }
1013         return ret;
1014     }
1015     return 1;
1016 }
1017
1018 #define OFFSET(x) offsetof(SegmentContext, x)
1019 #define E AV_OPT_FLAG_ENCODING_PARAM
1020 static const AVOption options[] = {
1021     { "reference_stream",  "set reference stream", OFFSET(reference_stream_specifier), AV_OPT_TYPE_STRING, {.str = "auto"}, 0, 0, E },
1022     { "segment_format",    "set container format used for the segments", OFFSET(format),  AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E },
1023     { "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 },
1024     { "segment_list",      "set the segment list filename",              OFFSET(list),    AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E },
1025     { "segment_header_filename", "write a single file containing the header", OFFSET(header_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
1026
1027     { "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"},
1028     { "cache",             "allow list caching",                                    0, AV_OPT_TYPE_CONST, {.i64 = SEGMENT_LIST_FLAG_CACHE }, INT_MIN, INT_MAX,   E, "list_flags"},
1029     { "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"},
1030
1031     { "segment_list_size", "set the maximum number of playlist entries", OFFSET(list_size), AV_OPT_TYPE_INT,  {.i64 = 0},     0, INT_MAX, E },
1032
1033     { "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" },
1034     { "flat", "flat format",     0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_FLAT }, INT_MIN, INT_MAX, E, "list_type" },
1035     { "csv",  "csv format",      0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_CSV  }, INT_MIN, INT_MAX, E, "list_type" },
1036     { "ext",  "extended format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_EXT  }, INT_MIN, INT_MAX, E, "list_type" },
1037     { "ffconcat", "ffconcat format", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_FFCONCAT }, INT_MIN, INT_MAX, E, "list_type" },
1038     { "m3u8", "M3U8 format",     0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_M3U8 }, INT_MIN, INT_MAX, E, "list_type" },
1039     { "hls", "Apple HTTP Live Streaming compatible", 0, AV_OPT_TYPE_CONST, {.i64=LIST_TYPE_M3U8 }, INT_MIN, INT_MAX, E, "list_type" },
1040
1041     { "segment_atclocktime",      "set segment to be cut at clocktime",  OFFSET(use_clocktime), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E},
1042     { "segment_clocktime_offset", "set segment clocktime offset",        OFFSET(clocktime_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, 86400000000LL, E},
1043     { "segment_clocktime_wrap_duration", "set segment clocktime wrapping duration", OFFSET(clocktime_wrap_duration), AV_OPT_TYPE_DURATION, {.i64 = INT64_MAX}, 0, INT64_MAX, E},
1044     { "segment_time",      "set segment duration",                       OFFSET(time),AV_OPT_TYPE_DURATION, {.i64 = 2000000}, INT64_MIN, INT64_MAX,       E },
1045     { "segment_time_delta","set approximation value used for the segment times", OFFSET(time_delta), AV_OPT_TYPE_DURATION, {.i64 = 0}, 0, INT64_MAX, E },
1046     { "segment_times",     "set segment split time points",              OFFSET(times_str),AV_OPT_TYPE_STRING,{.str = NULL},  0, 0,       E },
1047     { "segment_frames",    "set segment split frame numbers",            OFFSET(frames_str),AV_OPT_TYPE_STRING,{.str = NULL},  0, 0,       E },
1048     { "segment_wrap",      "set number after which the index wraps",     OFFSET(segment_idx_wrap), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E },
1049     { "segment_list_entry_prefix", "set base url prefix for segments", OFFSET(entry_prefix), AV_OPT_TYPE_STRING,  {.str = NULL}, 0, 0, E },
1050     { "segment_start_number", "set the sequence number of the first segment", OFFSET(segment_idx), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E },
1051     { "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 },
1052     { "strftime",          "set filename expansion with strftime at segment creation", OFFSET(use_strftime), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
1053     { "increment_tc", "increment timecode between each segment", OFFSET(increment_tc), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
1054     { "break_non_keyframes", "allow breaking segments on non-keyframes", OFFSET(break_non_keyframes), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1055
1056     { "individual_header_trailer", "write header/trailer to each segment", OFFSET(individual_header_trailer), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, E },
1057     { "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 },
1058     { "reset_timestamps", "reset timestamps at the beginning of each segment", OFFSET(reset_timestamps), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1059     { "initial_offset", "set initial timestamp offset", OFFSET(initial_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, -INT64_MAX, INT64_MAX, E },
1060     { "write_empty_segments", "allow writing empty 'filler' segments", OFFSET(write_empty), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
1061     { NULL },
1062 };
1063
1064 #if CONFIG_SEGMENT_MUXER
1065 static const AVClass seg_class = {
1066     .class_name = "segment muxer",
1067     .item_name  = av_default_item_name,
1068     .option     = options,
1069     .version    = LIBAVUTIL_VERSION_INT,
1070 };
1071
1072 AVOutputFormat ff_segment_muxer = {
1073     .name           = "segment",
1074     .long_name      = NULL_IF_CONFIG_SMALL("segment"),
1075     .priv_data_size = sizeof(SegmentContext),
1076     .flags          = AVFMT_NOFILE|AVFMT_GLOBALHEADER,
1077     .init           = seg_init,
1078     .write_header   = seg_write_header,
1079     .write_packet   = seg_write_packet,
1080     .write_trailer  = seg_write_trailer,
1081     .deinit         = seg_free,
1082     .check_bitstream = seg_check_bitstream,
1083     .priv_class     = &seg_class,
1084 };
1085 #endif
1086
1087 #if CONFIG_STREAM_SEGMENT_MUXER
1088 static const AVClass sseg_class = {
1089     .class_name = "stream_segment muxer",
1090     .item_name  = av_default_item_name,
1091     .option     = options,
1092     .version    = LIBAVUTIL_VERSION_INT,
1093 };
1094
1095 AVOutputFormat ff_stream_segment_muxer = {
1096     .name           = "stream_segment,ssegment",
1097     .long_name      = NULL_IF_CONFIG_SMALL("streaming segment muxer"),
1098     .priv_data_size = sizeof(SegmentContext),
1099     .flags          = AVFMT_NOFILE,
1100     .init           = seg_init,
1101     .write_header   = seg_write_header,
1102     .write_packet   = seg_write_packet,
1103     .write_trailer  = seg_write_trailer,
1104     .deinit         = seg_free,
1105     .check_bitstream = seg_check_bitstream,
1106     .priv_class     = &sseg_class,
1107 };
1108 #endif