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