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