]> git.sesse.net Git - ffmpeg/blob - libavformat/smoothstreamingenc.c
smoothstreamingenc: Move the output_chunk_list and write_manifest functions up
[ffmpeg] / libavformat / smoothstreamingenc.c
1 /*
2  * Live smooth streaming fragmenter
3  * Copyright (c) 2012 Martin Storsjo
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23 #include <float.h>
24 #if HAVE_UNISTD_H
25 #include <unistd.h>
26 #endif
27
28 #include "avformat.h"
29 #include "internal.h"
30 #include "os_support.h"
31 #include "avc.h"
32 #include "url.h"
33 #include "isom.h"
34
35 #include "libavutil/opt.h"
36 #include "libavutil/avstring.h"
37 #include "libavutil/mathematics.h"
38 #include "libavutil/intreadwrite.h"
39
40 typedef struct {
41     char file[1024];
42     char infofile[1024];
43     int64_t start_time, duration;
44     int n;
45     int64_t start_pos, size;
46 } Fragment;
47
48 typedef struct {
49     AVFormatContext *ctx;
50     int ctx_inited;
51     char dirname[1024];
52     uint8_t iobuf[32768];
53     URLContext *out;  // Current output stream where all output is written
54     URLContext *out2; // Auxillary output stream where all output also is written
55     URLContext *tail_out; // The actual main output stream, if we're currently seeked back to write elsewhere
56     int64_t tail_pos, cur_pos, cur_start_pos;
57     int packets_written;
58     const char *stream_type_tag;
59     int nb_fragments, fragments_size, fragment_index;
60     Fragment **fragments;
61
62     const char *fourcc;
63     char *private_str;
64     int packet_size;
65     int audio_tag;
66 } OutputStream;
67
68 typedef struct {
69     const AVClass *class;  /* Class for private options. */
70     int window_size;
71     int extra_window_size;
72     int lookahead_count;
73     int min_frag_duration;
74     int remove_at_exit;
75     OutputStream *streams;
76     int has_video, has_audio;
77     int nb_fragments;
78 } SmoothStreamingContext;
79
80 static int ism_write(void *opaque, uint8_t *buf, int buf_size)
81 {
82     OutputStream *os = opaque;
83     if (os->out)
84         ffurl_write(os->out, buf, buf_size);
85     if (os->out2)
86         ffurl_write(os->out2, buf, buf_size);
87     os->cur_pos += buf_size;
88     if (os->cur_pos >= os->tail_pos)
89         os->tail_pos = os->cur_pos;
90     return buf_size;
91 }
92
93 static int64_t ism_seek(void *opaque, int64_t offset, int whence)
94 {
95     OutputStream *os = opaque;
96     int i;
97     if (whence != SEEK_SET)
98         return AVERROR(ENOSYS);
99     if (os->tail_out) {
100         if (os->out) {
101             ffurl_close(os->out);
102         }
103         if (os->out2) {
104             ffurl_close(os->out2);
105         }
106         os->out = os->tail_out;
107         os->out2 = NULL;
108         os->tail_out = NULL;
109     }
110     if (offset >= os->cur_start_pos) {
111         if (os->out)
112             ffurl_seek(os->out, offset - os->cur_start_pos, SEEK_SET);
113         os->cur_pos = offset;
114         return offset;
115     }
116     for (i = os->nb_fragments - 1; i >= 0; i--) {
117         Fragment *frag = os->fragments[i];
118         if (offset >= frag->start_pos && offset < frag->start_pos + frag->size) {
119             int ret;
120             AVDictionary *opts = NULL;
121             os->tail_out = os->out;
122             av_dict_set(&opts, "truncate", "0", 0);
123             ret = ffurl_open(&os->out, frag->file, AVIO_FLAG_READ_WRITE, &os->ctx->interrupt_callback, &opts);
124             av_dict_free(&opts);
125             if (ret < 0) {
126                 os->out = os->tail_out;
127                 os->tail_out = NULL;
128                 return ret;
129             }
130             av_dict_set(&opts, "truncate", "0", 0);
131             ffurl_open(&os->out2, frag->infofile, AVIO_FLAG_READ_WRITE, &os->ctx->interrupt_callback, &opts);
132             av_dict_free(&opts);
133             ffurl_seek(os->out, offset - frag->start_pos, SEEK_SET);
134             if (os->out2)
135                 ffurl_seek(os->out2, offset - frag->start_pos, SEEK_SET);
136             os->cur_pos = offset;
137             return offset;
138         }
139     }
140     return AVERROR(EIO);
141 }
142
143 static void get_private_data(OutputStream *os)
144 {
145     AVCodecContext *codec = os->ctx->streams[0]->codec;
146     uint8_t *ptr = codec->extradata;
147     int size = codec->extradata_size;
148     int i;
149     if (codec->codec_id == AV_CODEC_ID_H264) {
150         ff_avc_write_annexb_extradata(ptr, &ptr, &size);
151         if (!ptr)
152             ptr = codec->extradata;
153     }
154     if (!ptr)
155         return;
156     os->private_str = av_mallocz(2*size + 1);
157     for (i = 0; i < size; i++)
158         snprintf(&os->private_str[2*i], 3, "%02x", ptr[i]);
159     if (ptr != codec->extradata)
160         av_free(ptr);
161 }
162
163 static void ism_free(AVFormatContext *s)
164 {
165     SmoothStreamingContext *c = s->priv_data;
166     int i, j;
167     if (!c->streams)
168         return;
169     for (i = 0; i < s->nb_streams; i++) {
170         OutputStream *os = &c->streams[i];
171         ffurl_close(os->out);
172         ffurl_close(os->out2);
173         ffurl_close(os->tail_out);
174         os->out = os->out2 = os->tail_out = NULL;
175         if (os->ctx && os->ctx_inited)
176             av_write_trailer(os->ctx);
177         if (os->ctx && os->ctx->pb)
178             av_free(os->ctx->pb);
179         if (os->ctx)
180             avformat_free_context(os->ctx);
181         av_free(os->private_str);
182         for (j = 0; j < os->nb_fragments; j++)
183             av_free(os->fragments[j]);
184         av_free(os->fragments);
185     }
186     av_freep(&c->streams);
187 }
188
189 static void output_chunk_list(OutputStream *os, AVIOContext *out, int final, int skip, int window_size)
190 {
191     int removed = 0, i, start = 0;
192     if (os->nb_fragments <= 0)
193         return;
194     if (os->fragments[0]->n > 0)
195         removed = 1;
196     if (final)
197         skip = 0;
198     if (window_size)
199         start = FFMAX(os->nb_fragments - skip - window_size, 0);
200     for (i = start; i < os->nb_fragments - skip; i++) {
201         Fragment *frag = os->fragments[i];
202         if (!final || removed)
203             avio_printf(out, "<c t=\"%"PRIu64"\" d=\"%"PRIu64"\" />\n", frag->start_time, frag->duration);
204         else
205             avio_printf(out, "<c n=\"%d\" d=\"%"PRIu64"\" />\n", frag->n, frag->duration);
206     }
207 }
208
209 static int write_manifest(AVFormatContext *s, int final)
210 {
211     SmoothStreamingContext *c = s->priv_data;
212     AVIOContext *out;
213     char filename[1024];
214     int ret, i, video_chunks = 0, audio_chunks = 0, video_streams = 0, audio_streams = 0;
215     int64_t duration = 0;
216
217     snprintf(filename, sizeof(filename), "%s/Manifest", s->filename);
218     ret = avio_open2(&out, filename, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL);
219     if (ret < 0)
220         return ret;
221     avio_printf(out, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
222     for (i = 0; i < s->nb_streams; i++) {
223         OutputStream *os = &c->streams[i];
224         if (os->nb_fragments > 0) {
225             Fragment *last = os->fragments[os->nb_fragments - 1];
226             duration = last->start_time + last->duration;
227         }
228         if (s->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
229             video_chunks = os->nb_fragments;
230             video_streams++;
231         } else {
232             audio_chunks = os->nb_fragments;
233             audio_streams++;
234         }
235     }
236     if (!final) {
237         duration = 0;
238         video_chunks = audio_chunks = 0;
239     }
240     if (c->window_size) {
241         video_chunks = FFMIN(video_chunks, c->window_size);
242         audio_chunks = FFMIN(audio_chunks, c->window_size);
243     }
244     avio_printf(out, "<SmoothStreamingMedia MajorVersion=\"2\" MinorVersion=\"0\" Duration=\"%"PRIu64"\"", duration);
245     if (!final)
246         avio_printf(out, " IsLive=\"true\" LookAheadFragmentCount=\"%d\" DVRWindowLength=\"0\"", c->lookahead_count);
247     avio_printf(out, ">\n");
248     if (c->has_video) {
249         int last = -1, index = 0;
250         avio_printf(out, "<StreamIndex Type=\"video\" QualityLevels=\"%d\" Chunks=\"%d\" Url=\"QualityLevels({bitrate})/Fragments(video={start time})\">\n", video_streams, video_chunks);
251         for (i = 0; i < s->nb_streams; i++) {
252             OutputStream *os = &c->streams[i];
253             if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_VIDEO)
254                 continue;
255             last = i;
256             avio_printf(out, "<QualityLevel Index=\"%d\" Bitrate=\"%d\" FourCC=\"%s\" MaxWidth=\"%d\" MaxHeight=\"%d\" CodecPrivateData=\"%s\" />\n", index, s->streams[i]->codec->bit_rate, os->fourcc, s->streams[i]->codec->width, s->streams[i]->codec->height, os->private_str);
257             index++;
258         }
259         output_chunk_list(&c->streams[last], out, final, c->lookahead_count, c->window_size);
260         avio_printf(out, "</StreamIndex>\n");
261     }
262     if (c->has_audio) {
263         int last = -1, index = 0;
264         avio_printf(out, "<StreamIndex Type=\"audio\" QualityLevels=\"%d\" Chunks=\"%d\" Url=\"QualityLevels({bitrate})/Fragments(audio={start time})\">\n", audio_streams, audio_chunks);
265         for (i = 0; i < s->nb_streams; i++) {
266             OutputStream *os = &c->streams[i];
267             if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_AUDIO)
268                 continue;
269             last = i;
270             avio_printf(out, "<QualityLevel Index=\"%d\" Bitrate=\"%d\" FourCC=\"%s\" SamplingRate=\"%d\" Channels=\"%d\" BitsPerSample=\"16\" PacketSize=\"%d\" AudioTag=\"%d\" CodecPrivateData=\"%s\" />\n", index, s->streams[i]->codec->bit_rate, os->fourcc, s->streams[i]->codec->sample_rate, s->streams[i]->codec->channels, os->packet_size, os->audio_tag, os->private_str);
271             index++;
272         }
273         output_chunk_list(&c->streams[last], out, final, c->lookahead_count, c->window_size);
274         avio_printf(out, "</StreamIndex>\n");
275     }
276     avio_printf(out, "</SmoothStreamingMedia>\n");
277     avio_flush(out);
278     avio_close(out);
279     return 0;
280 }
281
282 static int ism_write_header(AVFormatContext *s)
283 {
284     SmoothStreamingContext *c = s->priv_data;
285     int ret = 0, i;
286     AVOutputFormat *oformat;
287
288     ret = mkdir(s->filename, 0777);
289     if (ret) {
290         av_log(s, AV_LOG_ERROR, "mkdir(%s): %s\n", s->filename, strerror(errno));
291         return AVERROR(errno);
292     }
293     ret = 0;
294
295     oformat = av_guess_format("ismv", NULL, NULL);
296     if (!oformat) {
297         ret = AVERROR_MUXER_NOT_FOUND;
298         goto fail;
299     }
300
301     c->streams = av_mallocz(sizeof(*c->streams) * s->nb_streams);
302     if (!c->streams) {
303         ret = AVERROR(ENOMEM);
304         goto fail;
305     }
306
307     for (i = 0; i < s->nb_streams; i++) {
308         OutputStream *os = &c->streams[i];
309         AVFormatContext *ctx;
310         AVStream *st;
311         AVDictionary *opts = NULL;
312         char buf[10];
313
314         if (!s->streams[i]->codec->bit_rate) {
315             av_log(s, AV_LOG_ERROR, "No bit rate set for stream %d\n", i);
316             ret = AVERROR(EINVAL);
317             goto fail;
318         }
319         snprintf(os->dirname, sizeof(os->dirname), "%s/QualityLevels(%d)", s->filename, s->streams[i]->codec->bit_rate);
320         mkdir(os->dirname, 0777);
321
322         ctx = avformat_alloc_context();
323         if (!ctx) {
324             ret = AVERROR(ENOMEM);
325             goto fail;
326         }
327         os->ctx = ctx;
328         ctx->oformat = oformat;
329         ctx->interrupt_callback = s->interrupt_callback;
330
331         if (!(st = avformat_new_stream(ctx, NULL))) {
332             ret = AVERROR(ENOMEM);
333             goto fail;
334         }
335         avcodec_copy_context(st->codec, s->streams[i]->codec);
336         st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
337
338         ctx->pb = avio_alloc_context(os->iobuf, sizeof(os->iobuf), AVIO_FLAG_WRITE, os, NULL, ism_write, ism_seek);
339         if (!ctx->pb) {
340             ret = AVERROR(ENOMEM);
341             goto fail;
342         }
343
344         snprintf(buf, sizeof(buf), "%d", c->lookahead_count);
345         av_dict_set(&opts, "ism_lookahead", buf, 0);
346         av_dict_set(&opts, "movflags", "frag_custom", 0);
347         if ((ret = avformat_write_header(ctx, &opts)) < 0) {
348              goto fail;
349         }
350         os->ctx_inited = 1;
351         avio_flush(ctx->pb);
352         av_dict_free(&opts);
353         s->streams[i]->time_base = st->time_base;
354         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
355             c->has_video = 1;
356             os->stream_type_tag = "video";
357             if (st->codec->codec_id == AV_CODEC_ID_H264) {
358                 os->fourcc = "H264";
359             } else if (st->codec->codec_id == AV_CODEC_ID_VC1) {
360                 os->fourcc = "WVC1";
361             } else {
362                 av_log(s, AV_LOG_ERROR, "Unsupported video codec\n");
363                 ret = AVERROR(EINVAL);
364                 goto fail;
365             }
366         } else {
367             c->has_audio = 1;
368             os->stream_type_tag = "audio";
369             if (st->codec->codec_id == AV_CODEC_ID_AAC) {
370                 os->fourcc = "AACL";
371                 os->audio_tag = 0xff;
372             } else if (st->codec->codec_id == AV_CODEC_ID_WMAPRO) {
373                 os->fourcc = "WMAP";
374                 os->audio_tag = 0x0162;
375             } else {
376                 av_log(s, AV_LOG_ERROR, "Unsupported audio codec\n");
377                 ret = AVERROR(EINVAL);
378                 goto fail;
379             }
380             os->packet_size = st->codec->block_align ? st->codec->block_align : 4;
381         }
382         get_private_data(os);
383     }
384
385     if (!c->has_video && c->min_frag_duration <= 0) {
386         av_log(s, AV_LOG_WARNING, "no video stream and no min frag duration set\n");
387         ret = AVERROR(EINVAL);
388     }
389
390 fail:
391     if (ret)
392         ism_free(s);
393     return ret;
394 }
395
396 static int parse_fragment(AVFormatContext *s, const char *filename, int64_t *start_ts, int64_t *duration, int64_t *moof_size, int64_t size)
397 {
398     AVIOContext *in;
399     int ret;
400     uint32_t len;
401     if ((ret = avio_open2(&in, filename, AVIO_FLAG_READ, &s->interrupt_callback, NULL)) < 0)
402         return ret;
403     ret = AVERROR(EIO);
404     *moof_size = avio_rb32(in);
405     if (*moof_size < 8 || *moof_size > size)
406         goto fail;
407     if (avio_rl32(in) != MKTAG('m','o','o','f'))
408         goto fail;
409     len = avio_rb32(in);
410     if (len > *moof_size)
411         goto fail;
412     if (avio_rl32(in) != MKTAG('m','f','h','d'))
413         goto fail;
414     avio_seek(in, len - 8, SEEK_CUR);
415     avio_rb32(in); /* traf size */
416     if (avio_rl32(in) != MKTAG('t','r','a','f'))
417         goto fail;
418     while (avio_tell(in) < *moof_size) {
419         uint32_t len = avio_rb32(in);
420         uint32_t tag = avio_rl32(in);
421         int64_t end = avio_tell(in) + len - 8;
422         if (len < 8 || len >= *moof_size)
423             goto fail;
424         if (tag == MKTAG('u','u','i','d')) {
425             const uint8_t tfxd[] = {
426                 0x6d, 0x1d, 0x9b, 0x05, 0x42, 0xd5, 0x44, 0xe6,
427                 0x80, 0xe2, 0x14, 0x1d, 0xaf, 0xf7, 0x57, 0xb2
428             };
429             uint8_t uuid[16];
430             avio_read(in, uuid, 16);
431             if (!memcmp(uuid, tfxd, 16) && len >= 8 + 16 + 4 + 16) {
432                 avio_seek(in, 4, SEEK_CUR);
433                 *start_ts = avio_rb64(in);
434                 *duration = avio_rb64(in);
435                 ret = 0;
436                 break;
437             }
438         }
439         avio_seek(in, end, SEEK_SET);
440     }
441 fail:
442     avio_close(in);
443     return ret;
444 }
445
446 static int add_fragment(OutputStream *os, const char *file, const char *infofile, int64_t start_time, int64_t duration, int64_t start_pos, int64_t size)
447 {
448     Fragment *frag;
449     if (os->nb_fragments >= os->fragments_size) {
450         os->fragments_size = (os->fragments_size + 1) * 2;
451         os->fragments = av_realloc(os->fragments, sizeof(*os->fragments)*os->fragments_size);
452         if (!os->fragments)
453             return AVERROR(ENOMEM);
454     }
455     frag = av_mallocz(sizeof(*frag));
456     if (!frag)
457         return AVERROR(ENOMEM);
458     av_strlcpy(frag->file, file, sizeof(frag->file));
459     av_strlcpy(frag->infofile, infofile, sizeof(frag->infofile));
460     frag->start_time = start_time;
461     frag->duration = duration;
462     frag->start_pos = start_pos;
463     frag->size = size;
464     frag->n = os->fragment_index;
465     os->fragments[os->nb_fragments++] = frag;
466     os->fragment_index++;
467     return 0;
468 }
469
470 static int copy_moof(AVFormatContext *s, const char* infile, const char *outfile, int64_t size)
471 {
472     AVIOContext *in, *out;
473     int ret = 0;
474     if ((ret = avio_open2(&in, infile, AVIO_FLAG_READ, &s->interrupt_callback, NULL)) < 0)
475         return ret;
476     if ((ret = avio_open2(&out, outfile, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL)) < 0) {
477         avio_close(in);
478         return ret;
479     }
480     while (size > 0) {
481         uint8_t buf[8192];
482         int n = FFMIN(size, sizeof(buf));
483         n = avio_read(in, buf, n);
484         if (n <= 0) {
485             ret = AVERROR(EIO);
486             break;
487         }
488         avio_write(out, buf, n);
489         size -= n;
490     }
491     avio_flush(out);
492     avio_close(out);
493     avio_close(in);
494     return ret;
495 }
496
497 static int ism_flush(AVFormatContext *s, int final)
498 {
499     SmoothStreamingContext *c = s->priv_data;
500     int i, ret = 0;
501
502     for (i = 0; i < s->nb_streams; i++) {
503         OutputStream *os = &c->streams[i];
504         char filename[1024], target_filename[1024], header_filename[1024];
505         int64_t start_pos = os->tail_pos, size;
506         int64_t start_ts, duration, moof_size;
507         if (!os->packets_written)
508             continue;
509
510         snprintf(filename, sizeof(filename), "%s/temp", os->dirname);
511         ret = ffurl_open(&os->out, filename, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL);
512         if (ret < 0)
513             break;
514         os->cur_start_pos = os->tail_pos;
515         av_write_frame(os->ctx, NULL);
516         avio_flush(os->ctx->pb);
517         os->packets_written = 0;
518         if (!os->out || os->tail_out)
519             return AVERROR(EIO);
520
521         ffurl_close(os->out);
522         os->out = NULL;
523         size = os->tail_pos - start_pos;
524         if ((ret = parse_fragment(s, filename, &start_ts, &duration, &moof_size, size)) < 0)
525             break;
526         snprintf(header_filename, sizeof(header_filename), "%s/FragmentInfo(%s=%"PRIu64")", os->dirname, os->stream_type_tag, start_ts);
527         snprintf(target_filename, sizeof(target_filename), "%s/Fragments(%s=%"PRIu64")", os->dirname, os->stream_type_tag, start_ts);
528         copy_moof(s, filename, header_filename, moof_size);
529         rename(filename, target_filename);
530         add_fragment(os, target_filename, header_filename, start_ts, duration, start_pos, size);
531     }
532
533     if (c->window_size || (final && c->remove_at_exit)) {
534         for (i = 0; i < s->nb_streams; i++) {
535             OutputStream *os = &c->streams[i];
536             int j;
537             int remove = os->nb_fragments - c->window_size - c->extra_window_size - c->lookahead_count;
538             if (final && c->remove_at_exit)
539                 remove = os->nb_fragments;
540             if (remove > 0) {
541                 for (j = 0; j < remove; j++) {
542                     unlink(os->fragments[j]->file);
543                     unlink(os->fragments[j]->infofile);
544                     av_free(os->fragments[j]);
545                 }
546                 os->nb_fragments -= remove;
547                 memmove(os->fragments, os->fragments + remove, os->nb_fragments * sizeof(*os->fragments));
548             }
549             if (final && c->remove_at_exit)
550                 rmdir(os->dirname);
551         }
552     }
553
554     if (ret >= 0)
555         ret = write_manifest(s, final);
556     return ret;
557 }
558
559 static int ism_write_packet(AVFormatContext *s, AVPacket *pkt)
560 {
561     SmoothStreamingContext *c = s->priv_data;
562     AVStream *st = s->streams[pkt->stream_index];
563     OutputStream *os = &c->streams[pkt->stream_index];
564     int64_t end_pts = (c->nb_fragments + 1) * c->min_frag_duration;
565     int ret;
566
567     if ((!c->has_video || st->codec->codec_type == AVMEDIA_TYPE_VIDEO) &&
568         av_compare_ts(pkt->pts, st->time_base,
569                       end_pts, AV_TIME_BASE_Q) >= 0 &&
570         pkt->flags & AV_PKT_FLAG_KEY && os->packets_written) {
571
572         if ((ret = ism_flush(s, 0)) < 0)
573             return ret;
574         c->nb_fragments++;
575     }
576
577     os->packets_written++;
578     return ff_write_chained(os->ctx, 0, pkt, s);
579 }
580
581 static int ism_write_trailer(AVFormatContext *s)
582 {
583     SmoothStreamingContext *c = s->priv_data;
584     ism_flush(s, 1);
585
586     if (c->remove_at_exit) {
587         char filename[1024];
588         snprintf(filename, sizeof(filename), "%s/Manifest", s->filename);
589         unlink(filename);
590         rmdir(s->filename);
591     }
592
593     ism_free(s);
594     return 0;
595 }
596
597 #define OFFSET(x) offsetof(SmoothStreamingContext, x)
598 #define E AV_OPT_FLAG_ENCODING_PARAM
599 static const AVOption options[] = {
600     { "window_size", "number of fragments kept in the manifest", OFFSET(window_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, E },
601     { "extra_window_size", "number of fragments kept outside of the manifest before removing from disk", OFFSET(extra_window_size), AV_OPT_TYPE_INT, { .i64 = 5 }, 0, INT_MAX, E },
602     { "lookahead_count", "number of lookahead fragments", OFFSET(lookahead_count), AV_OPT_TYPE_INT, { .i64 = 2 }, 0, INT_MAX, E },
603     { "min_frag_duration", "minimum fragment duration (in microseconds)", OFFSET(min_frag_duration), AV_OPT_TYPE_INT64, { .i64 = 5000000 }, 0, INT_MAX, E },
604     { "remove_at_exit", "remove all fragments when finished", OFFSET(remove_at_exit), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, E },
605     { NULL },
606 };
607
608 static const AVClass ism_class = {
609     .class_name = "smooth streaming muxer",
610     .item_name  = av_default_item_name,
611     .option     = options,
612     .version    = LIBAVUTIL_VERSION_INT,
613 };
614
615
616 AVOutputFormat ff_smoothstreaming_muxer = {
617     .name           = "smoothstreaming",
618     .long_name      = NULL_IF_CONFIG_SMALL("Smooth Streaming Muxer"),
619     .priv_data_size = sizeof(SmoothStreamingContext),
620     .audio_codec    = AV_CODEC_ID_AAC,
621     .video_codec    = AV_CODEC_ID_H264,
622     .flags          = AVFMT_GLOBALHEADER | AVFMT_NOFILE,
623     .write_header   = ism_write_header,
624     .write_packet   = ism_write_packet,
625     .write_trailer  = ism_write_trailer,
626     .codec_tag      = (const AVCodecTag* const []){ ff_mp4_obj_type, 0 },
627     .priv_class     = &ism_class,
628 };