]> git.sesse.net Git - ffmpeg/blob - libavformat/mux.c
Merge commit '1e9265cd8f0821acbeca1db437be1361a3976b85'
[ffmpeg] / libavformat / mux.c
1 /*
2  * muxing functions for use within FFmpeg
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
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 "avformat.h"
23 #include "avio_internal.h"
24 #include "internal.h"
25 #include "libavcodec/internal.h"
26 #include "libavcodec/bytestream.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/dict.h"
29 #include "libavutil/pixdesc.h"
30 #include "libavutil/timestamp.h"
31 #include "metadata.h"
32 #include "id3v2.h"
33 #include "libavutil/avassert.h"
34 #include "libavutil/avstring.h"
35 #include "libavutil/internal.h"
36 #include "libavutil/mathematics.h"
37 #include "libavutil/parseutils.h"
38 #include "libavutil/time.h"
39 #include "riff.h"
40 #include "audiointerleave.h"
41 #include "url.h"
42 #include <stdarg.h>
43 #if CONFIG_NETWORK
44 #include "network.h"
45 #endif
46
47 #undef NDEBUG
48 #include <assert.h>
49
50 /**
51  * @file
52  * muxing functions for use within libavformat
53  */
54
55 /* fraction handling */
56
57 /**
58  * f = val + (num / den) + 0.5.
59  *
60  * 'num' is normalized so that it is such as 0 <= num < den.
61  *
62  * @param f fractional number
63  * @param val integer value
64  * @param num must be >= 0
65  * @param den must be >= 1
66  */
67 static void frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den)
68 {
69     num += (den >> 1);
70     if (num >= den) {
71         val += num / den;
72         num  = num % den;
73     }
74     f->val = val;
75     f->num = num;
76     f->den = den;
77 }
78
79 /**
80  * Fractional addition to f: f = f + (incr / f->den).
81  *
82  * @param f fractional number
83  * @param incr increment, can be positive or negative
84  */
85 static void frac_add(AVFrac *f, int64_t incr)
86 {
87     int64_t num, den;
88
89     num = f->num + incr;
90     den = f->den;
91     if (num < 0) {
92         f->val += num / den;
93         num     = num % den;
94         if (num < 0) {
95             num += den;
96             f->val--;
97         }
98     } else if (num >= den) {
99         f->val += num / den;
100         num     = num % den;
101     }
102     f->num = num;
103 }
104
105 AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precission)
106 {
107     AVRational q;
108     int j;
109
110     if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
111         q = (AVRational){1, st->codec->sample_rate};
112     } else {
113         q = st->codec->time_base;
114     }
115     for (j=2; j<14; j+= 1+(j>2))
116         while (q.den / q.num < min_precission && q.num % j == 0)
117             q.num /= j;
118     while (q.den / q.num < min_precission && q.den < (1<<24))
119         q.den <<= 1;
120
121     return q;
122 }
123
124 int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat,
125                                    const char *format, const char *filename)
126 {
127     AVFormatContext *s = avformat_alloc_context();
128     int ret = 0;
129
130     *avctx = NULL;
131     if (!s)
132         goto nomem;
133
134     if (!oformat) {
135         if (format) {
136             oformat = av_guess_format(format, NULL, NULL);
137             if (!oformat) {
138                 av_log(s, AV_LOG_ERROR, "Requested output format '%s' is not a suitable output format\n", format);
139                 ret = AVERROR(EINVAL);
140                 goto error;
141             }
142         } else {
143             oformat = av_guess_format(NULL, filename, NULL);
144             if (!oformat) {
145                 ret = AVERROR(EINVAL);
146                 av_log(s, AV_LOG_ERROR, "Unable to find a suitable output format for '%s'\n",
147                        filename);
148                 goto error;
149             }
150         }
151     }
152
153     s->oformat = oformat;
154     if (s->oformat->priv_data_size > 0) {
155         s->priv_data = av_mallocz(s->oformat->priv_data_size);
156         if (!s->priv_data)
157             goto nomem;
158         if (s->oformat->priv_class) {
159             *(const AVClass**)s->priv_data= s->oformat->priv_class;
160             av_opt_set_defaults(s->priv_data);
161         }
162     } else
163         s->priv_data = NULL;
164
165     if (filename)
166         av_strlcpy(s->filename, filename, sizeof(s->filename));
167     *avctx = s;
168     return 0;
169 nomem:
170     av_log(s, AV_LOG_ERROR, "Out of memory\n");
171     ret = AVERROR(ENOMEM);
172 error:
173     avformat_free_context(s);
174     return ret;
175 }
176
177 #if FF_API_ALLOC_OUTPUT_CONTEXT
178 AVFormatContext *avformat_alloc_output_context(const char *format,
179                                                AVOutputFormat *oformat, const char *filename)
180 {
181     AVFormatContext *avctx;
182     int ret = avformat_alloc_output_context2(&avctx, oformat, format, filename);
183     return ret < 0 ? NULL : avctx;
184 }
185 #endif
186
187 static int validate_codec_tag(AVFormatContext *s, AVStream *st)
188 {
189     const AVCodecTag *avctag;
190     int n;
191     enum AVCodecID id = AV_CODEC_ID_NONE;
192     int64_t tag  = -1;
193
194     /**
195      * Check that tag + id is in the table
196      * If neither is in the table -> OK
197      * If tag is in the table with another id -> FAIL
198      * If id is in the table with another tag -> FAIL unless strict < normal
199      */
200     for (n = 0; s->oformat->codec_tag[n]; n++) {
201         avctag = s->oformat->codec_tag[n];
202         while (avctag->id != AV_CODEC_ID_NONE) {
203             if (avpriv_toupper4(avctag->tag) == avpriv_toupper4(st->codec->codec_tag)) {
204                 id = avctag->id;
205                 if (id == st->codec->codec_id)
206                     return 1;
207             }
208             if (avctag->id == st->codec->codec_id)
209                 tag = avctag->tag;
210             avctag++;
211         }
212     }
213     if (id != AV_CODEC_ID_NONE)
214         return 0;
215     if (tag >= 0 && (st->codec->strict_std_compliance >= FF_COMPLIANCE_NORMAL))
216         return 0;
217     return 1;
218 }
219
220
221 static int init_muxer(AVFormatContext *s, AVDictionary **options)
222 {
223     int ret = 0, i;
224     AVStream *st;
225     AVDictionary *tmp = NULL;
226     AVCodecContext *codec = NULL;
227     AVOutputFormat *of = s->oformat;
228
229     if (options)
230         av_dict_copy(&tmp, *options, 0);
231
232     if ((ret = av_opt_set_dict(s, &tmp)) < 0)
233         goto fail;
234     if (s->priv_data && s->oformat->priv_class && *(const AVClass**)s->priv_data==s->oformat->priv_class &&
235         (ret = av_opt_set_dict(s->priv_data, &tmp)) < 0)
236         goto fail;
237
238     // some sanity checks
239     if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) {
240         av_log(s, AV_LOG_ERROR, "No streams to mux were specified\n");
241         ret = AVERROR(EINVAL);
242         goto fail;
243     }
244
245     for (i = 0; i < s->nb_streams; i++) {
246         st    = s->streams[i];
247         codec = st->codec;
248
249         switch (codec->codec_type) {
250         case AVMEDIA_TYPE_AUDIO:
251             if (codec->sample_rate <= 0) {
252                 av_log(s, AV_LOG_ERROR, "sample rate not set\n");
253                 ret = AVERROR(EINVAL);
254                 goto fail;
255             }
256             if (!codec->block_align)
257                 codec->block_align = codec->channels *
258                                      av_get_bits_per_sample(codec->codec_id) >> 3;
259             break;
260         case AVMEDIA_TYPE_VIDEO:
261             if (codec->time_base.num <= 0 ||
262                 codec->time_base.den <= 0) { //FIXME audio too?
263                 av_log(s, AV_LOG_ERROR, "time base not set\n");
264                 ret = AVERROR(EINVAL);
265                 goto fail;
266             }
267
268             if ((codec->width <= 0 || codec->height <= 0) &&
269                 !(of->flags & AVFMT_NODIMENSIONS)) {
270                 av_log(s, AV_LOG_ERROR, "dimensions not set\n");
271                 ret = AVERROR(EINVAL);
272                 goto fail;
273             }
274             if (av_cmp_q(st->sample_aspect_ratio, codec->sample_aspect_ratio)
275                 && FFABS(av_q2d(st->sample_aspect_ratio) - av_q2d(codec->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
276             ) {
277                 if (st->sample_aspect_ratio.num != 0 &&
278                     st->sample_aspect_ratio.den != 0 &&
279                     codec->sample_aspect_ratio.den != 0 &&
280                     codec->sample_aspect_ratio.den != 0) {
281                     av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
282                            "(%d/%d) and encoder layer (%d/%d)\n",
283                            st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
284                            codec->sample_aspect_ratio.num,
285                            codec->sample_aspect_ratio.den);
286                     ret = AVERROR(EINVAL);
287                     goto fail;
288                 }
289             }
290             break;
291         }
292
293         if (of->codec_tag) {
294             if (   codec->codec_tag
295                 && codec->codec_id == AV_CODEC_ID_RAWVIDEO
296                 && (   av_codec_get_tag(of->codec_tag, codec->codec_id) == 0
297                     || av_codec_get_tag(of->codec_tag, codec->codec_id) == MKTAG('r', 'a', 'w', ' '))
298                 && !validate_codec_tag(s, st)) {
299                 // the current rawvideo encoding system ends up setting
300                 // the wrong codec_tag for avi/mov, we override it here
301                 codec->codec_tag = 0;
302             }
303             if (codec->codec_tag) {
304                 if (!validate_codec_tag(s, st)) {
305                     char tagbuf[32], tagbuf2[32];
306                     av_get_codec_tag_string(tagbuf, sizeof(tagbuf), codec->codec_tag);
307                     av_get_codec_tag_string(tagbuf2, sizeof(tagbuf2), av_codec_get_tag(s->oformat->codec_tag, codec->codec_id));
308                     av_log(s, AV_LOG_ERROR,
309                            "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
310                            tagbuf, codec->codec_tag, codec->codec_id, tagbuf2);
311                     ret = AVERROR_INVALIDDATA;
312                     goto fail;
313                 }
314             } else
315                 codec->codec_tag = av_codec_get_tag(of->codec_tag, codec->codec_id);
316         }
317
318         if (of->flags & AVFMT_GLOBALHEADER &&
319             !(codec->flags & CODEC_FLAG_GLOBAL_HEADER))
320             av_log(s, AV_LOG_WARNING,
321                    "Codec for stream %d does not use global headers "
322                    "but container format requires global headers\n", i);
323     }
324
325     if (!s->priv_data && of->priv_data_size > 0) {
326         s->priv_data = av_mallocz(of->priv_data_size);
327         if (!s->priv_data) {
328             ret = AVERROR(ENOMEM);
329             goto fail;
330         }
331         if (of->priv_class) {
332             *(const AVClass **)s->priv_data = of->priv_class;
333             av_opt_set_defaults(s->priv_data);
334             if ((ret = av_opt_set_dict(s->priv_data, &tmp)) < 0)
335                 goto fail;
336         }
337     }
338
339     /* set muxer identification string */
340     if (s->nb_streams && !(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) {
341         av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
342     } else {
343         av_dict_set(&s->metadata, "encoder", NULL, 0);
344     }
345
346     if (options) {
347          av_dict_free(options);
348          *options = tmp;
349     }
350
351     return 0;
352
353 fail:
354     av_dict_free(&tmp);
355     return ret;
356 }
357
358 static int init_pts(AVFormatContext *s)
359 {
360     int i;
361     AVStream *st;
362
363     /* init PTS generation */
364     for (i = 0; i < s->nb_streams; i++) {
365         int64_t den = AV_NOPTS_VALUE;
366         st = s->streams[i];
367
368         switch (st->codec->codec_type) {
369         case AVMEDIA_TYPE_AUDIO:
370             den = (int64_t)st->time_base.num * st->codec->sample_rate;
371             break;
372         case AVMEDIA_TYPE_VIDEO:
373             den = (int64_t)st->time_base.num * st->codec->time_base.den;
374             break;
375         default:
376             break;
377         }
378         if (den != AV_NOPTS_VALUE) {
379             if (den <= 0)
380                 return AVERROR_INVALIDDATA;
381
382             frac_init(&st->pts, 0, 0, den);
383         }
384     }
385
386     return 0;
387 }
388
389 int avformat_write_header(AVFormatContext *s, AVDictionary **options)
390 {
391     int ret = 0;
392
393     if (ret = init_muxer(s, options))
394         return ret;
395
396     if (s->oformat->write_header) {
397         ret = s->oformat->write_header(s);
398         if (ret >= 0 && s->pb && s->pb->error < 0)
399             ret = s->pb->error;
400         if (ret < 0)
401             return ret;
402     }
403
404     if ((ret = init_pts(s)) < 0)
405         return ret;
406
407     if (s->avoid_negative_ts < 0) {
408         if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
409             s->avoid_negative_ts = 0;
410         } else
411             s->avoid_negative_ts = 1;
412     }
413
414     return 0;
415 }
416
417 //FIXME merge with compute_pkt_fields
418 static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt)
419 {
420     int delay = FFMAX(st->codec->has_b_frames, st->codec->max_b_frames > 0);
421     int num, den, frame_size, i;
422
423     av_dlog(s, "compute_pkt_fields2: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
424             av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
425
426     /* duration field */
427     if (pkt->duration == 0) {
428         ff_compute_frame_duration(&num, &den, st, NULL, pkt);
429         if (den && num) {
430             pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
431         }
432     }
433
434     if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
435         pkt->pts = pkt->dts;
436
437     //XXX/FIXME this is a temporary hack until all encoders output pts
438     if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
439         static int warned;
440         if (!warned) {
441             av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
442             warned = 1;
443         }
444         pkt->dts =
445 //        pkt->pts= st->cur_dts;
446             pkt->pts = st->pts.val;
447     }
448
449     //calculate dts from pts
450     if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
451         st->pts_buffer[0] = pkt->pts;
452         for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
453             st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
454         for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
455             FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
456
457         pkt->dts = st->pts_buffer[0];
458     }
459
460     if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
461         ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
462           st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
463         av_log(s, AV_LOG_ERROR,
464                "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
465                st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
466         return AVERROR(EINVAL);
467     }
468     if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
469         av_log(s, AV_LOG_ERROR, "pts (%s) < dts (%s) in stream %d\n",
470                av_ts2str(pkt->pts), av_ts2str(pkt->dts), st->index);
471         return AVERROR(EINVAL);
472     }
473
474     av_dlog(s, "av_write_frame: pts2:%s dts2:%s\n",
475             av_ts2str(pkt->pts), av_ts2str(pkt->dts));
476     st->cur_dts = pkt->dts;
477     st->pts.val = pkt->dts;
478
479     /* update pts */
480     switch (st->codec->codec_type) {
481     case AVMEDIA_TYPE_AUDIO:
482         frame_size = ff_get_audio_frame_size(st->codec, pkt->size, 1);
483
484         /* HACK/FIXME, we skip the initial 0 size packets as they are most
485          * likely equal to the encoder delay, but it would be better if we
486          * had the real timestamps from the encoder */
487         if (frame_size >= 0 && (pkt->size || st->pts.num != st->pts.den >> 1 || st->pts.val)) {
488             frac_add(&st->pts, (int64_t)st->time_base.den * frame_size);
489         }
490         break;
491     case AVMEDIA_TYPE_VIDEO:
492         frac_add(&st->pts, (int64_t)st->time_base.den * st->codec->time_base.num);
493         break;
494     default:
495         break;
496     }
497     return 0;
498 }
499
500 /**
501  * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
502  * sidedata.
503  *
504  * FIXME: this function should NEVER get undefined pts/dts beside when the
505  * AVFMT_NOTIMESTAMPS is set.
506  * Those additional safety checks should be dropped once the correct checks
507  * are set in the callers.
508  */
509 static int write_packet(AVFormatContext *s, AVPacket *pkt)
510 {
511     int ret, did_split;
512
513     if (s->avoid_negative_ts > 0) {
514         AVStream *st = s->streams[pkt->stream_index];
515         int64_t offset = st->mux_ts_offset;
516
517         if (pkt->dts < 0 && pkt->dts != AV_NOPTS_VALUE && !s->offset) {
518             s->offset = -pkt->dts;
519             s->offset_timebase = st->time_base;
520         }
521
522         if (s->offset && !offset) {
523             offset = st->mux_ts_offset =
524                 av_rescale_q_rnd(s->offset,
525                                  s->offset_timebase,
526                                  st->time_base,
527                                  AV_ROUND_UP);
528         }
529
530         if (pkt->dts != AV_NOPTS_VALUE)
531             pkt->dts += offset;
532         if (pkt->pts != AV_NOPTS_VALUE)
533             pkt->pts += offset;
534
535         av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0);
536     }
537
538     did_split = av_packet_split_side_data(pkt);
539     ret = s->oformat->write_packet(s, pkt);
540
541     if (s->flush_packets && s->pb && ret >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
542         avio_flush(s->pb);
543
544     if (did_split)
545         av_packet_merge_side_data(pkt);
546
547     return ret;
548 }
549
550 int av_write_frame(AVFormatContext *s, AVPacket *pkt)
551 {
552     int ret;
553
554     if (!pkt) {
555         if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
556             ret = s->oformat->write_packet(s, NULL);
557             if (s->flush_packets && s->pb && s->pb->error >= 0)
558                 avio_flush(s->pb);
559             if (ret >= 0 && s->pb && s->pb->error < 0)
560                 ret = s->pb->error;
561             return ret;
562         }
563         return 1;
564     }
565
566     ret = compute_pkt_fields2(s, s->streams[pkt->stream_index], pkt);
567
568     if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
569         return ret;
570
571     ret = write_packet(s, pkt);
572     if (ret >= 0 && s->pb && s->pb->error < 0)
573         ret = s->pb->error;
574
575     if (ret >= 0)
576         s->streams[pkt->stream_index]->nb_frames++;
577     return ret;
578 }
579
580 #define CHUNK_START 0x1000
581
582 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
583                               int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
584 {
585     AVPacketList **next_point, *this_pktl;
586     AVStream *st   = s->streams[pkt->stream_index];
587     int chunked    = s->max_chunk_size || s->max_chunk_duration;
588
589     this_pktl      = av_mallocz(sizeof(AVPacketList));
590     if (!this_pktl)
591         return AVERROR(ENOMEM);
592     this_pktl->pkt = *pkt;
593 #if FF_API_DESTRUCT_PACKET
594 FF_DISABLE_DEPRECATION_WARNINGS
595     pkt->destruct  = NULL;           // do not free original but only the copy
596 FF_ENABLE_DEPRECATION_WARNINGS
597 #endif
598     pkt->buf       = NULL;
599     av_dup_packet(&this_pktl->pkt);  // duplicate the packet if it uses non-allocated memory
600     av_copy_packet_side_data(&this_pktl->pkt, &this_pktl->pkt); // copy side data
601
602     if (s->streams[pkt->stream_index]->last_in_packet_buffer) {
603         next_point = &(st->last_in_packet_buffer->next);
604     } else {
605         next_point = &s->packet_buffer;
606     }
607
608     if (chunked) {
609         uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
610         st->interleaver_chunk_size     += pkt->size;
611         st->interleaver_chunk_duration += pkt->duration;
612         if (   (s->max_chunk_size && st->interleaver_chunk_size > s->max_chunk_size)
613             || (max && st->interleaver_chunk_duration           > max)) {
614             st->interleaver_chunk_size      = 0;
615             this_pktl->pkt.flags |= CHUNK_START;
616             if (max && st->interleaver_chunk_duration > max) {
617                 int64_t syncoffset = (st->codec->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
618                 int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
619
620                 st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
621             } else
622                 st->interleaver_chunk_duration = 0;
623         }
624     }
625     if (*next_point) {
626         if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
627             goto next_non_null;
628
629         if (compare(s, &s->packet_buffer_end->pkt, pkt)) {
630             while (   *next_point
631                    && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
632                        || !compare(s, &(*next_point)->pkt, pkt)))
633                 next_point = &(*next_point)->next;
634             if (*next_point)
635                 goto next_non_null;
636         } else {
637             next_point = &(s->packet_buffer_end->next);
638         }
639     }
640     av_assert1(!*next_point);
641
642     s->packet_buffer_end = this_pktl;
643 next_non_null:
644
645     this_pktl->next = *next_point;
646
647     s->streams[pkt->stream_index]->last_in_packet_buffer =
648         *next_point                                      = this_pktl;
649     return 0;
650 }
651
652 static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
653                                   AVPacket *pkt)
654 {
655     AVStream *st  = s->streams[pkt->stream_index];
656     AVStream *st2 = s->streams[next->stream_index];
657     int comp      = av_compare_ts(next->dts, st2->time_base, pkt->dts,
658                                   st->time_base);
659     if (s->audio_preload && ((st->codec->codec_type == AVMEDIA_TYPE_AUDIO) != (st2->codec->codec_type == AVMEDIA_TYPE_AUDIO))) {
660         int64_t ts = av_rescale_q(pkt ->dts, st ->time_base, AV_TIME_BASE_Q) - s->audio_preload*(st ->codec->codec_type == AVMEDIA_TYPE_AUDIO);
661         int64_t ts2= av_rescale_q(next->dts, st2->time_base, AV_TIME_BASE_Q) - s->audio_preload*(st2->codec->codec_type == AVMEDIA_TYPE_AUDIO);
662         if (ts == ts2) {
663             ts= ( pkt ->dts* st->time_base.num*AV_TIME_BASE - s->audio_preload*(int64_t)(st ->codec->codec_type == AVMEDIA_TYPE_AUDIO)* st->time_base.den)*st2->time_base.den
664                -( next->dts*st2->time_base.num*AV_TIME_BASE - s->audio_preload*(int64_t)(st2->codec->codec_type == AVMEDIA_TYPE_AUDIO)*st2->time_base.den)* st->time_base.den;
665             ts2=0;
666         }
667         comp= (ts>ts2) - (ts<ts2);
668     }
669
670     if (comp == 0)
671         return pkt->stream_index < next->stream_index;
672     return comp > 0;
673 }
674
675 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
676                                  AVPacket *pkt, int flush)
677 {
678     AVPacketList *pktl;
679     int stream_count = 0, noninterleaved_count = 0;
680     int64_t delta_dts_max = 0;
681     int i, ret;
682
683     if (pkt) {
684         ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts);
685         if (ret < 0)
686             return ret;
687     }
688
689     for (i = 0; i < s->nb_streams; i++) {
690         if (s->streams[i]->last_in_packet_buffer) {
691             ++stream_count;
692         } else if (s->streams[i]->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
693             ++noninterleaved_count;
694         }
695     }
696
697     if (s->nb_streams == stream_count) {
698         flush = 1;
699     } else if (!flush) {
700         for (i=0; i < s->nb_streams; i++) {
701             if (s->streams[i]->last_in_packet_buffer) {
702                 int64_t delta_dts =
703                     av_rescale_q(s->streams[i]->last_in_packet_buffer->pkt.dts,
704                                 s->streams[i]->time_base,
705                                 AV_TIME_BASE_Q) -
706                     av_rescale_q(s->packet_buffer->pkt.dts,
707                                 s->streams[s->packet_buffer->pkt.stream_index]->time_base,
708                                 AV_TIME_BASE_Q);
709                 delta_dts_max= FFMAX(delta_dts_max, delta_dts);
710             }
711         }
712         if (s->nb_streams == stream_count+noninterleaved_count &&
713            delta_dts_max > 20*AV_TIME_BASE) {
714             av_log(s, AV_LOG_DEBUG, "flushing with %d noninterleaved\n", noninterleaved_count);
715             flush = 1;
716         }
717     }
718     if (stream_count && flush) {
719         AVStream *st;
720         pktl = s->packet_buffer;
721         *out = pktl->pkt;
722         st   = s->streams[out->stream_index];
723
724         s->packet_buffer = pktl->next;
725         if (!s->packet_buffer)
726             s->packet_buffer_end = NULL;
727
728         if (st->last_in_packet_buffer == pktl)
729             st->last_in_packet_buffer = NULL;
730         av_freep(&pktl);
731
732         return 1;
733     } else {
734         av_init_packet(out);
735         return 0;
736     }
737 }
738
739 /**
740  * Interleave an AVPacket correctly so it can be muxed.
741  * @param out the interleaved packet will be output here
742  * @param in the input packet
743  * @param flush 1 if no further packets are available as input and all
744  *              remaining packets should be output
745  * @return 1 if a packet was output, 0 if no packet could be output,
746  *         < 0 if an error occurred
747  */
748 static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
749 {
750     if (s->oformat->interleave_packet) {
751         int ret = s->oformat->interleave_packet(s, out, in, flush);
752         if (in)
753             av_free_packet(in);
754         return ret;
755     } else
756         return ff_interleave_packet_per_dts(s, out, in, flush);
757 }
758
759 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
760 {
761     int ret, flush = 0;
762
763     if (pkt) {
764         AVStream *st = s->streams[pkt->stream_index];
765
766         //FIXME/XXX/HACK drop zero sized packets
767         if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->size == 0)
768             return 0;
769
770         av_dlog(s, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
771                 pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
772         if ((ret = compute_pkt_fields2(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
773             return ret;
774
775         if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
776             return AVERROR(EINVAL);
777     } else {
778         av_dlog(s, "av_interleaved_write_frame FLUSH\n");
779         flush = 1;
780     }
781
782     for (;; ) {
783         AVPacket opkt;
784         int ret = interleave_packet(s, &opkt, pkt, flush);
785         if (ret <= 0) //FIXME cleanup needed for ret<0 ?
786             return ret;
787
788         ret = write_packet(s, &opkt);
789         if (ret >= 0)
790             s->streams[opkt.stream_index]->nb_frames++;
791
792         av_free_packet(&opkt);
793         pkt = NULL;
794
795         if (ret < 0)
796             return ret;
797         if(s->pb && s->pb->error)
798             return s->pb->error;
799     }
800 }
801
802 int av_write_trailer(AVFormatContext *s)
803 {
804     int ret, i;
805
806     for (;; ) {
807         AVPacket pkt;
808         ret = interleave_packet(s, &pkt, NULL, 1);
809         if (ret < 0) //FIXME cleanup needed for ret<0 ?
810             goto fail;
811         if (!ret)
812             break;
813
814         ret = write_packet(s, &pkt);
815         if (ret >= 0)
816             s->streams[pkt.stream_index]->nb_frames++;
817
818         av_free_packet(&pkt);
819
820         if (ret < 0)
821             goto fail;
822         if(s->pb && s->pb->error)
823             goto fail;
824     }
825
826     if (s->oformat->write_trailer)
827         ret = s->oformat->write_trailer(s);
828
829 fail:
830     if (s->pb)
831        avio_flush(s->pb);
832     if (ret == 0)
833        ret = s->pb ? s->pb->error : 0;
834     for (i = 0; i < s->nb_streams; i++) {
835         av_freep(&s->streams[i]->priv_data);
836         av_freep(&s->streams[i]->index_entries);
837     }
838     if (s->oformat->priv_class)
839         av_opt_free(s->priv_data);
840     av_freep(&s->priv_data);
841     return ret;
842 }
843
844 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
845                             int64_t *dts, int64_t *wall)
846 {
847     if (!s->oformat || !s->oformat->get_output_timestamp)
848         return AVERROR(ENOSYS);
849     s->oformat->get_output_timestamp(s, stream, dts, wall);
850     return 0;
851 }
852
853 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
854                      AVFormatContext *src)
855 {
856     AVPacket local_pkt;
857
858     local_pkt = *pkt;
859     local_pkt.stream_index = dst_stream;
860     if (pkt->pts != AV_NOPTS_VALUE)
861         local_pkt.pts = av_rescale_q(pkt->pts,
862                                      src->streams[pkt->stream_index]->time_base,
863                                      dst->streams[dst_stream]->time_base);
864     if (pkt->dts != AV_NOPTS_VALUE)
865         local_pkt.dts = av_rescale_q(pkt->dts,
866                                      src->streams[pkt->stream_index]->time_base,
867                                      dst->streams[dst_stream]->time_base);
868     if (pkt->duration)
869         local_pkt.duration = av_rescale_q(pkt->duration,
870                                           src->streams[pkt->stream_index]->time_base,
871                                           dst->streams[dst_stream]->time_base);
872     return av_write_frame(dst, &local_pkt);
873 }