]> git.sesse.net Git - ffmpeg/blob - libavformat/smoothstreamingenc.c
indeo4: update AVCodecContext width/height on size change
[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         ffurl_seek(os->out, offset - os->cur_start_pos, SEEK_SET);
112         os->cur_pos = offset;
113         return offset;
114     }
115     for (i = os->nb_fragments - 1; i >= 0; i--) {
116         Fragment *frag = os->fragments[i];
117         if (offset >= frag->start_pos && offset < frag->start_pos + frag->size) {
118             int ret;
119             AVDictionary *opts = NULL;
120             os->tail_out = os->out;
121             av_dict_set(&opts, "truncate", "0", 0);
122             ret = ffurl_open(&os->out, frag->file, AVIO_FLAG_READ_WRITE, &os->ctx->interrupt_callback, &opts);
123             av_dict_free(&opts);
124             if (ret < 0) {
125                 os->out = os->tail_out;
126                 os->tail_out = NULL;
127                 return ret;
128             }
129             av_dict_set(&opts, "truncate", "0", 0);
130             ffurl_open(&os->out2, frag->infofile, AVIO_FLAG_READ_WRITE, &os->ctx->interrupt_callback, &opts);
131             av_dict_free(&opts);
132             ffurl_seek(os->out, offset - frag->start_pos, SEEK_SET);
133             if (os->out2)
134                 ffurl_seek(os->out2, offset - frag->start_pos, SEEK_SET);
135             os->cur_pos = offset;
136             return offset;
137         }
138     }
139     return AVERROR(EIO);
140 }
141
142 static void get_private_data(OutputStream *os)
143 {
144     AVCodecContext *codec = os->ctx->streams[0]->codec;
145     uint8_t *ptr = codec->extradata;
146     int size = codec->extradata_size;
147     int i;
148     if (codec->codec_id == AV_CODEC_ID_H264) {
149         ff_avc_write_annexb_extradata(ptr, &ptr, &size);
150         if (!ptr)
151             ptr = codec->extradata;
152     }
153     if (!ptr)
154         return;
155     os->private_str = av_mallocz(2*size + 1);
156     for (i = 0; i < size; i++)
157         snprintf(&os->private_str[2*i], 3, "%02x", ptr[i]);
158     if (ptr != codec->extradata)
159         av_free(ptr);
160 }
161
162 static void ism_free(AVFormatContext *s)
163 {
164     SmoothStreamingContext *c = s->priv_data;
165     int i, j;
166     if (!c->streams)
167         return;
168     for (i = 0; i < s->nb_streams; i++) {
169         OutputStream *os = &c->streams[i];
170         ffurl_close(os->out);
171         ffurl_close(os->out2);
172         ffurl_close(os->tail_out);
173         os->out = os->out2 = os->tail_out = NULL;
174         if (os->ctx && os->ctx_inited)
175             av_write_trailer(os->ctx);
176         if (os->ctx && os->ctx->pb)
177             av_free(os->ctx->pb);
178         if (os->ctx)
179             avformat_free_context(os->ctx);
180         av_free(os->private_str);
181         for (j = 0; j < os->nb_fragments; j++)
182             av_free(os->fragments[j]);
183         av_free(os->fragments);
184     }
185     av_freep(&c->streams);
186 }
187
188 static int ism_write_header(AVFormatContext *s)
189 {
190     SmoothStreamingContext *c = s->priv_data;
191     int ret = 0, i;
192     AVOutputFormat *oformat;
193
194     ret = mkdir(s->filename, 0777);
195     if (ret) {
196         av_log(s, AV_LOG_ERROR, "mkdir(%s): %s\n", s->filename, strerror(errno));
197         return AVERROR(errno);
198     }
199     ret = 0;
200
201     oformat = av_guess_format("ismv", NULL, NULL);
202     if (!oformat) {
203         ret = AVERROR_MUXER_NOT_FOUND;
204         goto fail;
205     }
206
207     c->streams = av_mallocz(sizeof(*c->streams) * s->nb_streams);
208     if (!c->streams) {
209         ret = AVERROR(ENOMEM);
210         goto fail;
211     }
212
213     for (i = 0; i < s->nb_streams; i++) {
214         OutputStream *os = &c->streams[i];
215         AVFormatContext *ctx;
216         AVStream *st;
217         AVDictionary *opts = NULL;
218         char buf[10];
219
220         if (!s->streams[i]->codec->bit_rate) {
221             av_log(s, AV_LOG_ERROR, "No bit rate set for stream %d\n", i);
222             ret = AVERROR(EINVAL);
223             goto fail;
224         }
225         snprintf(os->dirname, sizeof(os->dirname), "%s/QualityLevels(%d)", s->filename, s->streams[i]->codec->bit_rate);
226         mkdir(os->dirname, 0777);
227
228         ctx = avformat_alloc_context();
229         if (!ctx) {
230             ret = AVERROR(ENOMEM);
231             goto fail;
232         }
233         os->ctx = ctx;
234         ctx->oformat = oformat;
235         ctx->interrupt_callback = s->interrupt_callback;
236
237         if (!(st = avformat_new_stream(ctx, NULL))) {
238             ret = AVERROR(ENOMEM);
239             goto fail;
240         }
241         avcodec_copy_context(st->codec, s->streams[i]->codec);
242         st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
243
244         ctx->pb = avio_alloc_context(os->iobuf, sizeof(os->iobuf), AVIO_FLAG_WRITE, os, NULL, ism_write, ism_seek);
245         if (!ctx->pb) {
246             ret = AVERROR(ENOMEM);
247             goto fail;
248         }
249
250         snprintf(buf, sizeof(buf), "%d", c->lookahead_count);
251         av_dict_set(&opts, "ism_lookahead", buf, 0);
252         av_dict_set(&opts, "movflags", "frag_custom", 0);
253         if ((ret = avformat_write_header(ctx, &opts)) < 0) {
254              goto fail;
255         }
256         os->ctx_inited = 1;
257         avio_flush(ctx->pb);
258         av_dict_free(&opts);
259         s->streams[i]->time_base = st->time_base;
260         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
261             c->has_video = 1;
262             os->stream_type_tag = "video";
263             if (st->codec->codec_id == AV_CODEC_ID_H264) {
264                 os->fourcc = "H264";
265             } else if (st->codec->codec_id == AV_CODEC_ID_VC1) {
266                 os->fourcc = "WVC1";
267             } else {
268                 av_log(s, AV_LOG_ERROR, "Unsupported video codec\n");
269                 ret = AVERROR(EINVAL);
270                 goto fail;
271             }
272         } else {
273             c->has_audio = 1;
274             os->stream_type_tag = "audio";
275             if (st->codec->codec_id == AV_CODEC_ID_AAC) {
276                 os->fourcc = "AACL";
277                 os->audio_tag = 0xff;
278             } else if (st->codec->codec_id == AV_CODEC_ID_WMAPRO) {
279                 os->fourcc = "WMAP";
280                 os->audio_tag = 0x0162;
281             } else {
282                 av_log(s, AV_LOG_ERROR, "Unsupported audio codec\n");
283                 ret = AVERROR(EINVAL);
284                 goto fail;
285             }
286             os->packet_size = st->codec->block_align ? st->codec->block_align : 4;
287         }
288         get_private_data(os);
289     }
290
291     if (!c->has_video && c->min_frag_duration <= 0) {
292         av_log(s, AV_LOG_WARNING, "no video stream and no min frag duration set\n");
293         ret = AVERROR(EINVAL);
294     }
295
296 fail:
297     if (ret)
298         ism_free(s);
299     return ret;
300 }
301
302 static int parse_fragment(AVFormatContext *s, const char *filename, int64_t *start_ts, int64_t *duration, int64_t *moof_size, int64_t size)
303 {
304     AVIOContext *in;
305     int ret;
306     uint32_t len;
307     if ((ret = avio_open2(&in, filename, AVIO_FLAG_READ, &s->interrupt_callback, NULL)) < 0)
308         return ret;
309     ret = AVERROR(EIO);
310     *moof_size = avio_rb32(in);
311     if (*moof_size < 8 || *moof_size > size)
312         goto fail;
313     if (avio_rl32(in) != MKTAG('m','o','o','f'))
314         goto fail;
315     len = avio_rb32(in);
316     if (len > *moof_size)
317         goto fail;
318     if (avio_rl32(in) != MKTAG('m','f','h','d'))
319         goto fail;
320     avio_seek(in, len - 8, SEEK_CUR);
321     avio_rb32(in); /* traf size */
322     if (avio_rl32(in) != MKTAG('t','r','a','f'))
323         goto fail;
324     while (avio_tell(in) < *moof_size) {
325         uint32_t len = avio_rb32(in);
326         uint32_t tag = avio_rl32(in);
327         int64_t end = avio_tell(in) + len - 8;
328         if (len < 8 || len >= *moof_size)
329             goto fail;
330         if (tag == MKTAG('u','u','i','d')) {
331             const uint8_t tfxd[] = {
332                 0x6d, 0x1d, 0x9b, 0x05, 0x42, 0xd5, 0x44, 0xe6,
333                 0x80, 0xe2, 0x14, 0x1d, 0xaf, 0xf7, 0x57, 0xb2
334             };
335             uint8_t uuid[16];
336             avio_read(in, uuid, 16);
337             if (!memcmp(uuid, tfxd, 16) && len >= 8 + 16 + 4 + 16) {
338                 avio_seek(in, 4, SEEK_CUR);
339                 *start_ts = avio_rb64(in);
340                 *duration = avio_rb64(in);
341                 ret = 0;
342                 break;
343             }
344         }
345         avio_seek(in, end, SEEK_SET);
346     }
347 fail:
348     avio_close(in);
349     return ret;
350 }
351
352 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)
353 {
354     Fragment *frag;
355     if (os->nb_fragments >= os->fragments_size) {
356         os->fragments_size = (os->fragments_size + 1) * 2;
357         os->fragments = av_realloc(os->fragments, sizeof(*os->fragments)*os->fragments_size);
358         if (!os->fragments)
359             return AVERROR(ENOMEM);
360     }
361     frag = av_mallocz(sizeof(*frag));
362     if (!frag)
363         return AVERROR(ENOMEM);
364     av_strlcpy(frag->file, file, sizeof(frag->file));
365     av_strlcpy(frag->infofile, infofile, sizeof(frag->infofile));
366     frag->start_time = start_time;
367     frag->duration = duration;
368     frag->start_pos = start_pos;
369     frag->size = size;
370     frag->n = os->fragment_index;
371     os->fragments[os->nb_fragments++] = frag;
372     os->fragment_index++;
373     return 0;
374 }
375
376 static int copy_moof(AVFormatContext *s, const char* infile, const char *outfile, int64_t size)
377 {
378     AVIOContext *in, *out;
379     int ret = 0;
380     if ((ret = avio_open2(&in, infile, AVIO_FLAG_READ, &s->interrupt_callback, NULL)) < 0)
381         return ret;
382     if ((ret = avio_open2(&out, outfile, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL)) < 0) {
383         avio_close(in);
384         return ret;
385     }
386     while (size > 0) {
387         uint8_t buf[8192];
388         int n = FFMIN(size, sizeof(buf));
389         n = avio_read(in, buf, n);
390         if (n <= 0) {
391             ret = AVERROR(EIO);
392             break;
393         }
394         avio_write(out, buf, n);
395         size -= n;
396     }
397     avio_flush(out);
398     avio_close(out);
399     avio_close(in);
400     return ret;
401 }
402
403 static void output_chunk_list(OutputStream *os, AVIOContext *out, int final, int skip, int window_size)
404 {
405     int removed = 0, i, start = 0;
406     if (os->nb_fragments <= 0)
407         return;
408     if (os->fragments[0]->n > 0)
409         removed = 1;
410     if (final)
411         skip = 0;
412     if (window_size)
413         start = FFMAX(os->nb_fragments - skip - window_size, 0);
414     for (i = start; i < os->nb_fragments - skip; i++) {
415         Fragment *frag = os->fragments[i];
416         if (!final || removed)
417             avio_printf(out, "<c t=\"%"PRIu64"\" d=\"%"PRIu64"\" />\n", frag->start_time, frag->duration);
418         else
419             avio_printf(out, "<c n=\"%d\" d=\"%"PRIu64"\" />\n", frag->n, frag->duration);
420     }
421 }
422
423 static int write_manifest(AVFormatContext *s, int final)
424 {
425     SmoothStreamingContext *c = s->priv_data;
426     AVIOContext *out;
427     char filename[1024];
428     int ret, i, video_chunks = 0, audio_chunks = 0, video_streams = 0, audio_streams = 0;
429     int64_t duration = 0;
430
431     snprintf(filename, sizeof(filename), "%s/Manifest", s->filename);
432     ret = avio_open2(&out, filename, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL);
433     if (ret < 0)
434         return ret;
435     avio_printf(out, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
436     for (i = 0; i < s->nb_streams; i++) {
437         OutputStream *os = &c->streams[i];
438         if (os->nb_fragments > 0) {
439             Fragment *last = os->fragments[os->nb_fragments - 1];
440             duration = last->start_time + last->duration;
441         }
442         if (s->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
443             video_chunks = os->nb_fragments;
444             video_streams++;
445         } else {
446             audio_chunks = os->nb_fragments;
447             audio_streams++;
448         }
449     }
450     if (!final) {
451         duration = 0;
452         video_chunks = audio_chunks = 0;
453     }
454     if (c->window_size) {
455         video_chunks = FFMIN(video_chunks, c->window_size);
456         audio_chunks = FFMIN(audio_chunks, c->window_size);
457     }
458     avio_printf(out, "<SmoothStreamingMedia MajorVersion=\"2\" MinorVersion=\"0\" Duration=\"%"PRIu64"\"", duration);
459     if (!final)
460         avio_printf(out, " IsLive=\"true\" LookAheadFragmentCount=\"%d\" DVRWindowLength=\"0\"", c->lookahead_count);
461     avio_printf(out, ">\n");
462     if (c->has_video) {
463         int last = -1, index = 0;
464         avio_printf(out, "<StreamIndex Type=\"video\" QualityLevels=\"%d\" Chunks=\"%d\" Url=\"QualityLevels({bitrate})/Fragments(video={start time})\">\n", video_streams, video_chunks);
465         for (i = 0; i < s->nb_streams; i++) {
466             OutputStream *os = &c->streams[i];
467             if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_VIDEO)
468                 continue;
469             last = i;
470             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);
471             index++;
472         }
473         output_chunk_list(&c->streams[last], out, final, c->lookahead_count, c->window_size);
474         avio_printf(out, "</StreamIndex>\n");
475     }
476     if (c->has_audio) {
477         int last = -1, index = 0;
478         avio_printf(out, "<StreamIndex Type=\"audio\" QualityLevels=\"%d\" Chunks=\"%d\" Url=\"QualityLevels({bitrate})/Fragments(audio={start time})\">\n", audio_streams, audio_chunks);
479         for (i = 0; i < s->nb_streams; i++) {
480             OutputStream *os = &c->streams[i];
481             if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_AUDIO)
482                 continue;
483             last = i;
484             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);
485             index++;
486         }
487         output_chunk_list(&c->streams[last], out, final, c->lookahead_count, c->window_size);
488         avio_printf(out, "</StreamIndex>\n");
489     }
490     avio_printf(out, "</SmoothStreamingMedia>\n");
491     avio_flush(out);
492     avio_close(out);
493     return 0;
494 }
495
496 static int ism_flush(AVFormatContext *s, int final)
497 {
498     SmoothStreamingContext *c = s->priv_data;
499     int i, ret = 0;
500
501     for (i = 0; i < s->nb_streams; i++) {
502         OutputStream *os = &c->streams[i];
503         char filename[1024], target_filename[1024], header_filename[1024];
504         int64_t start_pos = os->tail_pos, size;
505         int64_t start_ts, duration, moof_size;
506         if (!os->packets_written)
507             continue;
508
509         snprintf(filename, sizeof(filename), "%s/temp", os->dirname);
510         ret = ffurl_open(&os->out, filename, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL);
511         if (ret < 0)
512             break;
513         os->cur_start_pos = os->tail_pos;
514         av_write_frame(os->ctx, NULL);
515         avio_flush(os->ctx->pb);
516         os->packets_written = 0;
517         if (!os->out || os->tail_out)
518             return AVERROR(EIO);
519
520         ffurl_close(os->out);
521         os->out = NULL;
522         size = os->tail_pos - start_pos;
523         if ((ret = parse_fragment(s, filename, &start_ts, &duration, &moof_size, size)) < 0)
524             break;
525         snprintf(header_filename, sizeof(header_filename), "%s/FragmentInfo(%s=%"PRIu64")", os->dirname, os->stream_type_tag, start_ts);
526         snprintf(target_filename, sizeof(target_filename), "%s/Fragments(%s=%"PRIu64")", os->dirname, os->stream_type_tag, start_ts);
527         copy_moof(s, filename, header_filename, moof_size);
528         rename(filename, target_filename);
529         add_fragment(os, target_filename, header_filename, start_ts, duration, start_pos, size);
530     }
531
532     if (c->window_size || (final && c->remove_at_exit)) {
533         for (i = 0; i < s->nb_streams; i++) {
534             OutputStream *os = &c->streams[i];
535             int j;
536             int remove = os->nb_fragments - c->window_size - c->extra_window_size - c->lookahead_count;
537             if (final && c->remove_at_exit)
538                 remove = os->nb_fragments;
539             if (remove > 0) {
540                 for (j = 0; j < remove; j++) {
541                     unlink(os->fragments[j]->file);
542                     unlink(os->fragments[j]->infofile);
543                     av_free(os->fragments[j]);
544                 }
545                 os->nb_fragments -= remove;
546                 memmove(os->fragments, os->fragments + remove, os->nb_fragments * sizeof(*os->fragments));
547             }
548             if (final && c->remove_at_exit)
549                 rmdir(os->dirname);
550         }
551     }
552
553     write_manifest(s, final);
554     return ret;
555 }
556
557 static int ism_write_packet(AVFormatContext *s, AVPacket *pkt)
558 {
559     SmoothStreamingContext *c = s->priv_data;
560     AVStream *st = s->streams[pkt->stream_index];
561     OutputStream *os = &c->streams[pkt->stream_index];
562     int64_t end_pts = (c->nb_fragments + 1) * c->min_frag_duration;
563
564     if ((!c->has_video || st->codec->codec_type == AVMEDIA_TYPE_VIDEO) &&
565         av_compare_ts(pkt->pts, st->time_base,
566                       end_pts, AV_TIME_BASE_Q) >= 0 &&
567         pkt->flags & AV_PKT_FLAG_KEY && os->packets_written) {
568
569         ism_flush(s, 0);
570         c->nb_fragments++;
571     }
572
573     os->packets_written++;
574     return ff_write_chained(os->ctx, 0, pkt, s);
575 }
576
577 static int ism_write_trailer(AVFormatContext *s)
578 {
579     SmoothStreamingContext *c = s->priv_data;
580     ism_flush(s, 1);
581
582     if (c->remove_at_exit) {
583         char filename[1024];
584         snprintf(filename, sizeof(filename), "%s/Manifest", s->filename);
585         unlink(filename);
586         rmdir(s->filename);
587     }
588
589     ism_free(s);
590     return 0;
591 }
592
593 #define OFFSET(x) offsetof(SmoothStreamingContext, x)
594 #define E AV_OPT_FLAG_ENCODING_PARAM
595 static const AVOption options[] = {
596     { "window_size", "number of fragments kept in the manifest", OFFSET(window_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, E },
597     { "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 },
598     { "lookahead_count", "number of lookahead fragments", OFFSET(lookahead_count), AV_OPT_TYPE_INT, { .i64 = 2 }, 0, INT_MAX, E },
599     { "min_frag_duration", "minimum fragment duration (in microseconds)", OFFSET(min_frag_duration), AV_OPT_TYPE_INT64, { .i64 = 5000000 }, 0, INT_MAX, E },
600     { "remove_at_exit", "remove all fragments when finished", OFFSET(remove_at_exit), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, E },
601     { NULL },
602 };
603
604 static const AVClass ism_class = {
605     .class_name = "smooth streaming muxer",
606     .item_name  = av_default_item_name,
607     .option     = options,
608     .version    = LIBAVUTIL_VERSION_INT,
609 };
610
611
612 AVOutputFormat ff_smoothstreaming_muxer = {
613     .name           = "smoothstreaming",
614     .long_name      = NULL_IF_CONFIG_SMALL("Smooth Streaming Muxer"),
615     .priv_data_size = sizeof(SmoothStreamingContext),
616     .audio_codec    = AV_CODEC_ID_AAC,
617     .video_codec    = AV_CODEC_ID_H264,
618     .flags          = AVFMT_GLOBALHEADER | AVFMT_NOFILE,
619     .write_header   = ism_write_header,
620     .write_packet   = ism_write_packet,
621     .write_trailer  = ism_write_trailer,
622     .codec_tag      = (const AVCodecTag* const []){ ff_mp4_obj_type, 0 },
623     .priv_class     = &ism_class,
624 };