]> git.sesse.net Git - ffmpeg/blob - libavformat/mux.c
avcodec, avformat: deprecate anything related to side data merging
[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 /**
48  * @file
49  * muxing functions for use within libavformat
50  */
51
52 /* fraction handling */
53
54 /**
55  * f = val + (num / den) + 0.5.
56  *
57  * 'num' is normalized so that it is such as 0 <= num < den.
58  *
59  * @param f fractional number
60  * @param val integer value
61  * @param num must be >= 0
62  * @param den must be >= 1
63  */
64 static void frac_init(FFFrac *f, int64_t val, int64_t num, int64_t den)
65 {
66     num += (den >> 1);
67     if (num >= den) {
68         val += num / den;
69         num  = num % den;
70     }
71     f->val = val;
72     f->num = num;
73     f->den = den;
74 }
75
76 /**
77  * Fractional addition to f: f = f + (incr / f->den).
78  *
79  * @param f fractional number
80  * @param incr increment, can be positive or negative
81  */
82 static void frac_add(FFFrac *f, int64_t incr)
83 {
84     int64_t num, den;
85
86     num = f->num + incr;
87     den = f->den;
88     if (num < 0) {
89         f->val += num / den;
90         num     = num % den;
91         if (num < 0) {
92             num += den;
93             f->val--;
94         }
95     } else if (num >= den) {
96         f->val += num / den;
97         num     = num % den;
98     }
99     f->num = num;
100 }
101
102 AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precision)
103 {
104     AVRational q;
105     int j;
106
107     q = st->time_base;
108
109     for (j=2; j<14; j+= 1+(j>2))
110         while (q.den / q.num < min_precision && q.num % j == 0)
111             q.num /= j;
112     while (q.den / q.num < min_precision && q.den < (1<<24))
113         q.den <<= 1;
114
115     return q;
116 }
117
118 enum AVChromaLocation ff_choose_chroma_location(AVFormatContext *s, AVStream *st)
119 {
120     AVCodecParameters *par = st->codecpar;
121     const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(par->format);
122
123     if (par->chroma_location != AVCHROMA_LOC_UNSPECIFIED)
124         return par->chroma_location;
125
126     if (pix_desc) {
127         if (pix_desc->log2_chroma_h == 0) {
128             return AVCHROMA_LOC_TOPLEFT;
129         } else if (pix_desc->log2_chroma_w == 1 && pix_desc->log2_chroma_h == 1) {
130             if (par->field_order == AV_FIELD_UNKNOWN || par->field_order == AV_FIELD_PROGRESSIVE) {
131                 switch (par->codec_id) {
132                 case AV_CODEC_ID_MJPEG:
133                 case AV_CODEC_ID_MPEG1VIDEO: return AVCHROMA_LOC_CENTER;
134                 }
135             }
136             if (par->field_order == AV_FIELD_UNKNOWN || par->field_order != AV_FIELD_PROGRESSIVE) {
137                 switch (par->codec_id) {
138                 case AV_CODEC_ID_MPEG2VIDEO: return AVCHROMA_LOC_LEFT;
139                 }
140             }
141         }
142     }
143
144     return AVCHROMA_LOC_UNSPECIFIED;
145
146 }
147
148 int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat,
149                                    const char *format, const char *filename)
150 {
151     AVFormatContext *s = avformat_alloc_context();
152     int ret = 0;
153
154     *avctx = NULL;
155     if (!s)
156         goto nomem;
157
158     if (!oformat) {
159         if (format) {
160             oformat = av_guess_format(format, NULL, NULL);
161             if (!oformat) {
162                 av_log(s, AV_LOG_ERROR, "Requested output format '%s' is not a suitable output format\n", format);
163                 ret = AVERROR(EINVAL);
164                 goto error;
165             }
166         } else {
167             oformat = av_guess_format(NULL, filename, NULL);
168             if (!oformat) {
169                 ret = AVERROR(EINVAL);
170                 av_log(s, AV_LOG_ERROR, "Unable to find a suitable output format for '%s'\n",
171                        filename);
172                 goto error;
173             }
174         }
175     }
176
177     s->oformat = oformat;
178     if (s->oformat->priv_data_size > 0) {
179         s->priv_data = av_mallocz(s->oformat->priv_data_size);
180         if (!s->priv_data)
181             goto nomem;
182         if (s->oformat->priv_class) {
183             *(const AVClass**)s->priv_data= s->oformat->priv_class;
184             av_opt_set_defaults(s->priv_data);
185         }
186     } else
187         s->priv_data = NULL;
188
189     if (filename)
190         av_strlcpy(s->filename, filename, sizeof(s->filename));
191     *avctx = s;
192     return 0;
193 nomem:
194     av_log(s, AV_LOG_ERROR, "Out of memory\n");
195     ret = AVERROR(ENOMEM);
196 error:
197     avformat_free_context(s);
198     return ret;
199 }
200
201 static int validate_codec_tag(AVFormatContext *s, AVStream *st)
202 {
203     const AVCodecTag *avctag;
204     int n;
205     enum AVCodecID id = AV_CODEC_ID_NONE;
206     int64_t tag  = -1;
207
208     /**
209      * Check that tag + id is in the table
210      * If neither is in the table -> OK
211      * If tag is in the table with another id -> FAIL
212      * If id is in the table with another tag -> FAIL unless strict < normal
213      */
214     for (n = 0; s->oformat->codec_tag[n]; n++) {
215         avctag = s->oformat->codec_tag[n];
216         while (avctag->id != AV_CODEC_ID_NONE) {
217             if (avpriv_toupper4(avctag->tag) == avpriv_toupper4(st->codecpar->codec_tag)) {
218                 id = avctag->id;
219                 if (id == st->codecpar->codec_id)
220                     return 1;
221             }
222             if (avctag->id == st->codecpar->codec_id)
223                 tag = avctag->tag;
224             avctag++;
225         }
226     }
227     if (id != AV_CODEC_ID_NONE)
228         return 0;
229     if (tag >= 0 && (s->strict_std_compliance >= FF_COMPLIANCE_NORMAL))
230         return 0;
231     return 1;
232 }
233
234
235 static int init_muxer(AVFormatContext *s, AVDictionary **options)
236 {
237     int ret = 0, i;
238     AVStream *st;
239     AVDictionary *tmp = NULL;
240     AVCodecParameters *par = NULL;
241     AVOutputFormat *of = s->oformat;
242     const AVCodecDescriptor *desc;
243     AVDictionaryEntry *e;
244
245     if (options)
246         av_dict_copy(&tmp, *options, 0);
247
248     if ((ret = av_opt_set_dict(s, &tmp)) < 0)
249         goto fail;
250     if (s->priv_data && s->oformat->priv_class && *(const AVClass**)s->priv_data==s->oformat->priv_class &&
251         (ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
252         goto fail;
253
254 #if FF_API_LAVF_AVCTX
255 FF_DISABLE_DEPRECATION_WARNINGS
256     if (s->nb_streams && s->streams[0]->codec->flags & AV_CODEC_FLAG_BITEXACT) {
257         if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
258 #if FF_API_LAVF_BITEXACT
259             av_log(s, AV_LOG_WARNING,
260                    "Setting the AVFormatContext to bitexact mode, because "
261                    "the AVCodecContext is in that mode. This behavior will "
262                    "change in the future. To keep the current behavior, set "
263                    "AVFormatContext.flags |= AVFMT_FLAG_BITEXACT.\n");
264             s->flags |= AVFMT_FLAG_BITEXACT;
265 #else
266             av_log(s, AV_LOG_WARNING,
267                    "The AVFormatContext is not in set to bitexact mode, only "
268                    "the AVCodecContext. If this is not intended, set "
269                    "AVFormatContext.flags |= AVFMT_FLAG_BITEXACT.\n");
270 #endif
271         }
272     }
273 FF_ENABLE_DEPRECATION_WARNINGS
274 #endif
275
276     // some sanity checks
277     if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) {
278         av_log(s, AV_LOG_ERROR, "No streams to mux were specified\n");
279         ret = AVERROR(EINVAL);
280         goto fail;
281     }
282
283     for (i = 0; i < s->nb_streams; i++) {
284         st  = s->streams[i];
285         par = st->codecpar;
286
287 #if FF_API_LAVF_CODEC_TB && FF_API_LAVF_AVCTX
288 FF_DISABLE_DEPRECATION_WARNINGS
289         if (!st->time_base.num && st->codec->time_base.num) {
290             av_log(s, AV_LOG_WARNING, "Using AVStream.codec.time_base as a "
291                    "timebase hint to the muxer is deprecated. Set "
292                    "AVStream.time_base instead.\n");
293             avpriv_set_pts_info(st, 64, st->codec->time_base.num, st->codec->time_base.den);
294         }
295 FF_ENABLE_DEPRECATION_WARNINGS
296 #endif
297
298 #if FF_API_LAVF_AVCTX
299 FF_DISABLE_DEPRECATION_WARNINGS
300         if (st->codecpar->codec_type == AVMEDIA_TYPE_UNKNOWN &&
301             st->codec->codec_type    != AVMEDIA_TYPE_UNKNOWN) {
302             av_log(s, AV_LOG_WARNING, "Using AVStream.codec to pass codec "
303                    "parameters to muxers is deprecated, use AVStream.codecpar "
304                    "instead.\n");
305             ret = avcodec_parameters_from_context(st->codecpar, st->codec);
306             if (ret < 0)
307                 goto fail;
308         }
309 FF_ENABLE_DEPRECATION_WARNINGS
310 #endif
311
312         if (!st->time_base.num) {
313             /* fall back on the default timebase values */
314             if (par->codec_type == AVMEDIA_TYPE_AUDIO && par->sample_rate)
315                 avpriv_set_pts_info(st, 64, 1, par->sample_rate);
316             else
317                 avpriv_set_pts_info(st, 33, 1, 90000);
318         }
319
320         switch (par->codec_type) {
321         case AVMEDIA_TYPE_AUDIO:
322             if (par->sample_rate <= 0) {
323                 av_log(s, AV_LOG_ERROR, "sample rate not set\n");
324                 ret = AVERROR(EINVAL);
325                 goto fail;
326             }
327             if (!par->block_align)
328                 par->block_align = par->channels *
329                                    av_get_bits_per_sample(par->codec_id) >> 3;
330             break;
331         case AVMEDIA_TYPE_VIDEO:
332             if ((par->width <= 0 || par->height <= 0) &&
333                 !(of->flags & AVFMT_NODIMENSIONS)) {
334                 av_log(s, AV_LOG_ERROR, "dimensions not set\n");
335                 ret = AVERROR(EINVAL);
336                 goto fail;
337             }
338             if (av_cmp_q(st->sample_aspect_ratio, par->sample_aspect_ratio)
339                 && fabs(av_q2d(st->sample_aspect_ratio) - av_q2d(par->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
340             ) {
341                 if (st->sample_aspect_ratio.num != 0 &&
342                     st->sample_aspect_ratio.den != 0 &&
343                     par->sample_aspect_ratio.num != 0 &&
344                     par->sample_aspect_ratio.den != 0) {
345                     av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
346                            "(%d/%d) and encoder layer (%d/%d)\n",
347                            st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
348                            par->sample_aspect_ratio.num,
349                            par->sample_aspect_ratio.den);
350                     ret = AVERROR(EINVAL);
351                     goto fail;
352                 }
353             }
354             break;
355         }
356
357         desc = avcodec_descriptor_get(par->codec_id);
358         if (desc && desc->props & AV_CODEC_PROP_REORDER)
359             st->internal->reorder = 1;
360
361         if (of->codec_tag) {
362             if (   par->codec_tag
363                 && par->codec_id == AV_CODEC_ID_RAWVIDEO
364                 && (   av_codec_get_tag(of->codec_tag, par->codec_id) == 0
365                     || av_codec_get_tag(of->codec_tag, par->codec_id) == MKTAG('r', 'a', 'w', ' '))
366                 && !validate_codec_tag(s, st)) {
367                 // the current rawvideo encoding system ends up setting
368                 // the wrong codec_tag for avi/mov, we override it here
369                 par->codec_tag = 0;
370             }
371             if (par->codec_tag) {
372                 if (!validate_codec_tag(s, st)) {
373                     char tagbuf[32], tagbuf2[32];
374                     av_get_codec_tag_string(tagbuf, sizeof(tagbuf), par->codec_tag);
375                     av_get_codec_tag_string(tagbuf2, sizeof(tagbuf2), av_codec_get_tag(s->oformat->codec_tag, par->codec_id));
376                     av_log(s, AV_LOG_ERROR,
377                            "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
378                            tagbuf, par->codec_tag, par->codec_id, tagbuf2);
379                     ret = AVERROR_INVALIDDATA;
380                     goto fail;
381                 }
382             } else
383                 par->codec_tag = av_codec_get_tag(of->codec_tag, par->codec_id);
384         }
385
386         if (par->codec_type != AVMEDIA_TYPE_ATTACHMENT)
387             s->internal->nb_interleaved_streams++;
388     }
389
390     if (!s->priv_data && of->priv_data_size > 0) {
391         s->priv_data = av_mallocz(of->priv_data_size);
392         if (!s->priv_data) {
393             ret = AVERROR(ENOMEM);
394             goto fail;
395         }
396         if (of->priv_class) {
397             *(const AVClass **)s->priv_data = of->priv_class;
398             av_opt_set_defaults(s->priv_data);
399             if ((ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
400                 goto fail;
401         }
402     }
403
404     /* set muxer identification string */
405     if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
406         av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
407     } else {
408         av_dict_set(&s->metadata, "encoder", NULL, 0);
409     }
410
411     for (e = NULL; e = av_dict_get(s->metadata, "encoder-", e, AV_DICT_IGNORE_SUFFIX); ) {
412         av_dict_set(&s->metadata, e->key, NULL, 0);
413     }
414
415     if (options) {
416          av_dict_free(options);
417          *options = tmp;
418     }
419
420     if (s->oformat->init) {
421         if ((ret = s->oformat->init(s)) < 0) {
422             if (s->oformat->deinit)
423                 s->oformat->deinit(s);
424             return ret;
425         }
426         return ret == 0;
427     }
428
429     return 0;
430
431 fail:
432     av_dict_free(&tmp);
433     return ret;
434 }
435
436 static int init_pts(AVFormatContext *s)
437 {
438     int i;
439     AVStream *st;
440
441     /* init PTS generation */
442     for (i = 0; i < s->nb_streams; i++) {
443         int64_t den = AV_NOPTS_VALUE;
444         st = s->streams[i];
445
446         switch (st->codecpar->codec_type) {
447         case AVMEDIA_TYPE_AUDIO:
448             den = (int64_t)st->time_base.num * st->codecpar->sample_rate;
449             break;
450         case AVMEDIA_TYPE_VIDEO:
451             den = (int64_t)st->time_base.num * st->time_base.den;
452             break;
453         default:
454             break;
455         }
456
457         if (!st->priv_pts)
458             st->priv_pts = av_mallocz(sizeof(*st->priv_pts));
459         if (!st->priv_pts)
460             return AVERROR(ENOMEM);
461
462         if (den != AV_NOPTS_VALUE) {
463             if (den <= 0)
464                 return AVERROR_INVALIDDATA;
465
466             frac_init(st->priv_pts, 0, 0, den);
467         }
468     }
469
470     return 0;
471 }
472
473 static int write_header_internal(AVFormatContext *s)
474 {
475     if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb)
476         avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_HEADER);
477     if (s->oformat->write_header) {
478         int ret = s->oformat->write_header(s);
479         if (ret >= 0 && s->pb && s->pb->error < 0)
480             ret = s->pb->error;
481         s->internal->write_header_ret = ret;
482         if (ret < 0)
483             return ret;
484         if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
485             avio_flush(s->pb);
486     }
487     s->internal->header_written = 1;
488     if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb)
489         avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_UNKNOWN);
490     return 0;
491 }
492
493 int avformat_init_output(AVFormatContext *s, AVDictionary **options)
494 {
495     int ret = 0;
496
497     if ((ret = init_muxer(s, options)) < 0)
498         return ret;
499
500     s->internal->initialized = 1;
501     s->internal->streams_initialized = ret;
502
503     if (s->oformat->init && ret) {
504         if ((ret = init_pts(s)) < 0)
505             return ret;
506
507         if (s->avoid_negative_ts < 0) {
508             av_assert2(s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO);
509             if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
510                 s->avoid_negative_ts = 0;
511             } else
512                 s->avoid_negative_ts = AVFMT_AVOID_NEG_TS_MAKE_NON_NEGATIVE;
513         }
514
515         return AVSTREAM_INIT_IN_INIT_OUTPUT;
516     }
517
518     return AVSTREAM_INIT_IN_WRITE_HEADER;
519 }
520
521 int avformat_write_header(AVFormatContext *s, AVDictionary **options)
522 {
523     int ret = 0;
524     int already_initialized = s->internal->initialized;
525     int streams_already_initialized = s->internal->streams_initialized;
526
527     if (!already_initialized)
528         if ((ret = avformat_init_output(s, options)) < 0)
529             return ret;
530
531     if (!(s->oformat->check_bitstream && s->flags & AVFMT_FLAG_AUTO_BSF)) {
532         ret = write_header_internal(s);
533         if (ret < 0)
534             goto fail;
535     }
536
537     if (!s->internal->streams_initialized) {
538         if ((ret = init_pts(s)) < 0)
539             goto fail;
540
541         if (s->avoid_negative_ts < 0) {
542             av_assert2(s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO);
543             if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
544                 s->avoid_negative_ts = 0;
545             } else
546                 s->avoid_negative_ts = AVFMT_AVOID_NEG_TS_MAKE_NON_NEGATIVE;
547         }
548     }
549
550     return streams_already_initialized;
551
552 fail:
553     if (s->oformat->deinit)
554         s->oformat->deinit(s);
555     return ret;
556 }
557
558 #define AV_PKT_FLAG_UNCODED_FRAME 0x2000
559
560 /* Note: using sizeof(AVFrame) from outside lavu is unsafe in general, but
561    it is only being used internally to this file as a consistency check.
562    The value is chosen to be very unlikely to appear on its own and to cause
563    immediate failure if used anywhere as a real size. */
564 #define UNCODED_FRAME_PACKET_SIZE (INT_MIN / 3 * 2 + (int)sizeof(AVFrame))
565
566
567 #if FF_API_COMPUTE_PKT_FIELDS2 && FF_API_LAVF_AVCTX
568 FF_DISABLE_DEPRECATION_WARNINGS
569 //FIXME merge with compute_pkt_fields
570 static int compute_muxer_pkt_fields(AVFormatContext *s, AVStream *st, AVPacket *pkt)
571 {
572     int delay = FFMAX(st->codecpar->video_delay, st->internal->avctx->max_b_frames > 0);
573     int num, den, i;
574     int frame_size;
575
576     if (!s->internal->missing_ts_warning &&
577         !(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
578         (!(st->disposition & AV_DISPOSITION_ATTACHED_PIC) || (st->disposition & AV_DISPOSITION_TIMED_THUMBNAILS)) &&
579         (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE)) {
580         av_log(s, AV_LOG_WARNING,
581                "Timestamps are unset in a packet for stream %d. "
582                "This is deprecated and will stop working in the future. "
583                "Fix your code to set the timestamps properly\n", st->index);
584         s->internal->missing_ts_warning = 1;
585     }
586
587     if (s->debug & FF_FDEBUG_TS)
588         av_log(s, AV_LOG_TRACE, "compute_muxer_pkt_fields: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
589             av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
590
591     if (pkt->duration < 0 && st->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE) {
592         av_log(s, AV_LOG_WARNING, "Packet with invalid duration %"PRId64" in stream %d\n",
593                pkt->duration, pkt->stream_index);
594         pkt->duration = 0;
595     }
596
597     /* duration field */
598     if (pkt->duration == 0) {
599         ff_compute_frame_duration(s, &num, &den, st, NULL, pkt);
600         if (den && num) {
601             pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
602         }
603     }
604
605     if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
606         pkt->pts = pkt->dts;
607
608     //XXX/FIXME this is a temporary hack until all encoders output pts
609     if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
610         static int warned;
611         if (!warned) {
612             av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
613             warned = 1;
614         }
615         pkt->dts =
616 //        pkt->pts= st->cur_dts;
617             pkt->pts = st->priv_pts->val;
618     }
619
620     //calculate dts from pts
621     if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
622         st->pts_buffer[0] = pkt->pts;
623         for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
624             st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
625         for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
626             FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
627
628         pkt->dts = st->pts_buffer[0];
629     }
630
631     if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
632         ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
633           st->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE &&
634           st->codecpar->codec_type != AVMEDIA_TYPE_DATA &&
635           st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
636         av_log(s, AV_LOG_ERROR,
637                "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
638                st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
639         return AVERROR(EINVAL);
640     }
641     if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
642         av_log(s, AV_LOG_ERROR,
643                "pts (%s) < dts (%s) in stream %d\n",
644                av_ts2str(pkt->pts), av_ts2str(pkt->dts),
645                st->index);
646         return AVERROR(EINVAL);
647     }
648
649     if (s->debug & FF_FDEBUG_TS)
650         av_log(s, AV_LOG_TRACE, "av_write_frame: pts2:%s dts2:%s\n",
651             av_ts2str(pkt->pts), av_ts2str(pkt->dts));
652
653     st->cur_dts = pkt->dts;
654     st->priv_pts->val = pkt->dts;
655
656     /* update pts */
657     switch (st->codecpar->codec_type) {
658     case AVMEDIA_TYPE_AUDIO:
659         frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
660                      ((AVFrame *)pkt->data)->nb_samples :
661                      av_get_audio_frame_duration(st->codec, pkt->size);
662
663         /* HACK/FIXME, we skip the initial 0 size packets as they are most
664          * likely equal to the encoder delay, but it would be better if we
665          * had the real timestamps from the encoder */
666         if (frame_size >= 0 && (pkt->size || st->priv_pts->num != st->priv_pts->den >> 1 || st->priv_pts->val)) {
667             frac_add(st->priv_pts, (int64_t)st->time_base.den * frame_size);
668         }
669         break;
670     case AVMEDIA_TYPE_VIDEO:
671         frac_add(st->priv_pts, (int64_t)st->time_base.den * st->time_base.num);
672         break;
673     }
674     return 0;
675 }
676 FF_ENABLE_DEPRECATION_WARNINGS
677 #endif
678
679 /**
680  * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
681  * sidedata.
682  *
683  * FIXME: this function should NEVER get undefined pts/dts beside when the
684  * AVFMT_NOTIMESTAMPS is set.
685  * Those additional safety checks should be dropped once the correct checks
686  * are set in the callers.
687  */
688 static int write_packet(AVFormatContext *s, AVPacket *pkt)
689 {
690     int ret, did_split;
691     int64_t pts_backup, dts_backup;
692
693     pts_backup = pkt->pts;
694     dts_backup = pkt->dts;
695
696     // If the timestamp offsetting below is adjusted, adjust
697     // ff_interleaved_peek similarly.
698     if (s->output_ts_offset) {
699         AVStream *st = s->streams[pkt->stream_index];
700         int64_t offset = av_rescale_q(s->output_ts_offset, AV_TIME_BASE_Q, st->time_base);
701
702         if (pkt->dts != AV_NOPTS_VALUE)
703             pkt->dts += offset;
704         if (pkt->pts != AV_NOPTS_VALUE)
705             pkt->pts += offset;
706     }
707
708     if (s->avoid_negative_ts > 0) {
709         AVStream *st = s->streams[pkt->stream_index];
710         int64_t offset = st->mux_ts_offset;
711         int64_t ts = s->internal->avoid_negative_ts_use_pts ? pkt->pts : pkt->dts;
712
713         if (s->internal->offset == AV_NOPTS_VALUE && ts != AV_NOPTS_VALUE &&
714             (ts < 0 || s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO)) {
715             s->internal->offset = -ts;
716             s->internal->offset_timebase = st->time_base;
717         }
718
719         if (s->internal->offset != AV_NOPTS_VALUE && !offset) {
720             offset = st->mux_ts_offset =
721                 av_rescale_q_rnd(s->internal->offset,
722                                  s->internal->offset_timebase,
723                                  st->time_base,
724                                  AV_ROUND_UP);
725         }
726
727         if (pkt->dts != AV_NOPTS_VALUE)
728             pkt->dts += offset;
729         if (pkt->pts != AV_NOPTS_VALUE)
730             pkt->pts += offset;
731
732         if (s->internal->avoid_negative_ts_use_pts) {
733             if (pkt->pts != AV_NOPTS_VALUE && pkt->pts < 0) {
734                 av_log(s, AV_LOG_WARNING, "failed to avoid negative "
735                     "pts %s in stream %d.\n"
736                     "Try -avoid_negative_ts 1 as a possible workaround.\n",
737                     av_ts2str(pkt->dts),
738                     pkt->stream_index
739                 );
740             }
741         } else {
742             av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0 || s->max_interleave_delta > 0);
743             if (pkt->dts != AV_NOPTS_VALUE && pkt->dts < 0) {
744                 av_log(s, AV_LOG_WARNING,
745                     "Packets poorly interleaved, failed to avoid negative "
746                     "timestamp %s in stream %d.\n"
747                     "Try -max_interleave_delta 0 as a possible workaround.\n",
748                     av_ts2str(pkt->dts),
749                     pkt->stream_index
750                 );
751             }
752         }
753     }
754
755 #if FF_API_LAVF_MERGE_SD
756 FF_DISABLE_DEPRECATION_WARNINGS
757     did_split = av_packet_split_side_data(pkt);
758 FF_ENABLE_DEPRECATION_WARNINGS
759 #endif
760
761     if (!s->internal->header_written) {
762         ret = s->internal->write_header_ret ? s->internal->write_header_ret : write_header_internal(s);
763         if (ret < 0)
764             goto fail;
765     }
766
767     if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
768         AVFrame *frame = (AVFrame *)pkt->data;
769         av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
770         ret = s->oformat->write_uncoded_frame(s, pkt->stream_index, &frame, 0);
771         av_frame_free(&frame);
772     } else {
773         ret = s->oformat->write_packet(s, pkt);
774     }
775
776     if (s->pb && ret >= 0) {
777         if (s->flush_packets && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
778             avio_flush(s->pb);
779         if (s->pb->error < 0)
780             ret = s->pb->error;
781     }
782
783 fail:
784 #if FF_API_LAVF_MERGE_SD
785 FF_DISABLE_DEPRECATION_WARNINGS
786     if (did_split)
787         av_packet_merge_side_data(pkt);
788 FF_ENABLE_DEPRECATION_WARNINGS
789 #endif
790
791     if (ret < 0) {
792         pkt->pts = pts_backup;
793         pkt->dts = dts_backup;
794     }
795
796     return ret;
797 }
798
799 static int check_packet(AVFormatContext *s, AVPacket *pkt)
800 {
801     if (!pkt)
802         return 0;
803
804     if (pkt->stream_index < 0 || pkt->stream_index >= s->nb_streams) {
805         av_log(s, AV_LOG_ERROR, "Invalid packet stream index: %d\n",
806                pkt->stream_index);
807         return AVERROR(EINVAL);
808     }
809
810     if (s->streams[pkt->stream_index]->codecpar->codec_type == AVMEDIA_TYPE_ATTACHMENT) {
811         av_log(s, AV_LOG_ERROR, "Received a packet for an attachment stream.\n");
812         return AVERROR(EINVAL);
813     }
814
815     return 0;
816 }
817
818 static int prepare_input_packet(AVFormatContext *s, AVPacket *pkt)
819 {
820     int ret;
821
822     ret = check_packet(s, pkt);
823     if (ret < 0)
824         return ret;
825
826 #if !FF_API_COMPUTE_PKT_FIELDS2 && FF_API_LAVF_AVCTX
827     /* sanitize the timestamps */
828     if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
829         AVStream *st = s->streams[pkt->stream_index];
830
831         /* when there is no reordering (so dts is equal to pts), but
832          * only one of them is set, set the other as well */
833         if (!st->internal->reorder) {
834             if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE)
835                 pkt->pts = pkt->dts;
836             if (pkt->dts == AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE)
837                 pkt->dts = pkt->pts;
838         }
839
840         /* check that the timestamps are set */
841         if (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE) {
842             av_log(s, AV_LOG_ERROR,
843                    "Timestamps are unset in a packet for stream %d\n", st->index);
844             return AVERROR(EINVAL);
845         }
846
847         /* check that the dts are increasing (or at least non-decreasing,
848          * if the format allows it */
849         if (st->cur_dts != AV_NOPTS_VALUE &&
850             ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) && st->cur_dts >= pkt->dts) ||
851              st->cur_dts > pkt->dts)) {
852             av_log(s, AV_LOG_ERROR,
853                    "Application provided invalid, non monotonically increasing "
854                    "dts to muxer in stream %d: %" PRId64 " >= %" PRId64 "\n",
855                    st->index, st->cur_dts, pkt->dts);
856             return AVERROR(EINVAL);
857         }
858
859         if (pkt->pts < pkt->dts) {
860             av_log(s, AV_LOG_ERROR, "pts %" PRId64 " < dts %" PRId64 " in stream %d\n",
861                    pkt->pts, pkt->dts, st->index);
862             return AVERROR(EINVAL);
863         }
864     }
865 #endif
866
867     return 0;
868 }
869
870 static int do_packet_auto_bsf(AVFormatContext *s, AVPacket *pkt) {
871     AVStream *st = s->streams[pkt->stream_index];
872     int i, ret;
873
874     if (!(s->flags & AVFMT_FLAG_AUTO_BSF))
875         return 1;
876
877     if (s->oformat->check_bitstream) {
878         if (!st->internal->bitstream_checked) {
879             if ((ret = s->oformat->check_bitstream(s, pkt)) < 0)
880                 return ret;
881             else if (ret == 1)
882                 st->internal->bitstream_checked = 1;
883         }
884     }
885
886 #if FF_API_LAVF_MERGE_SD
887 FF_DISABLE_DEPRECATION_WARNINGS
888     if (st->internal->nb_bsfcs)
889         av_packet_split_side_data(pkt);
890 FF_ENABLE_DEPRECATION_WARNINGS
891 #endif
892
893     for (i = 0; i < st->internal->nb_bsfcs; i++) {
894         AVBSFContext *ctx = st->internal->bsfcs[i];
895         if (i > 0) {
896             AVBSFContext* prev_ctx = st->internal->bsfcs[i - 1];
897             if (prev_ctx->par_out->extradata_size != ctx->par_in->extradata_size) {
898                 if ((ret = avcodec_parameters_copy(ctx->par_in, prev_ctx->par_out)) < 0)
899                     return ret;
900             }
901         }
902         // TODO: when any bitstream filter requires flushing at EOF, we'll need to
903         // flush each stream's BSF chain on write_trailer.
904         if ((ret = av_bsf_send_packet(ctx, pkt)) < 0) {
905             av_log(ctx, AV_LOG_ERROR,
906                     "Failed to send packet to filter %s for stream %d\n",
907                     ctx->filter->name, pkt->stream_index);
908             return ret;
909         }
910         // TODO: when any automatically-added bitstream filter is generating multiple
911         // output packets for a single input one, we'll need to call this in a loop
912         // and write each output packet.
913         if ((ret = av_bsf_receive_packet(ctx, pkt)) < 0) {
914             if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
915                 return 0;
916             av_log(ctx, AV_LOG_ERROR,
917                     "Failed to send packet to filter %s for stream %d\n",
918                     ctx->filter->name, pkt->stream_index);
919             return ret;
920         }
921         if (i == st->internal->nb_bsfcs - 1) {
922             if (ctx->par_out->extradata_size != st->codecpar->extradata_size) {
923                 if ((ret = avcodec_parameters_copy(st->codecpar, ctx->par_out)) < 0)
924                     return ret;
925             }
926         }
927     }
928     return 1;
929 }
930
931 int av_write_frame(AVFormatContext *s, AVPacket *pkt)
932 {
933     int ret;
934
935     ret = prepare_input_packet(s, pkt);
936     if (ret < 0)
937         return ret;
938
939     if (!pkt) {
940         if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
941             if (!s->internal->header_written) {
942                 ret = s->internal->write_header_ret ? s->internal->write_header_ret : write_header_internal(s);
943                 if (ret < 0)
944                     return ret;
945             }
946             ret = s->oformat->write_packet(s, NULL);
947             if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
948                 avio_flush(s->pb);
949             if (ret >= 0 && s->pb && s->pb->error < 0)
950                 ret = s->pb->error;
951             return ret;
952         }
953         return 1;
954     }
955
956     ret = do_packet_auto_bsf(s, pkt);
957     if (ret <= 0)
958         return ret;
959
960 #if FF_API_COMPUTE_PKT_FIELDS2 && FF_API_LAVF_AVCTX
961     ret = compute_muxer_pkt_fields(s, s->streams[pkt->stream_index], pkt);
962
963     if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
964         return ret;
965 #endif
966
967     ret = write_packet(s, pkt);
968     if (ret >= 0 && s->pb && s->pb->error < 0)
969         ret = s->pb->error;
970
971     if (ret >= 0)
972         s->streams[pkt->stream_index]->nb_frames++;
973     return ret;
974 }
975
976 #define CHUNK_START 0x1000
977
978 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
979                              int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
980 {
981     int ret;
982     AVPacketList **next_point, *this_pktl;
983     AVStream *st   = s->streams[pkt->stream_index];
984     int chunked    = s->max_chunk_size || s->max_chunk_duration;
985
986     this_pktl      = av_mallocz(sizeof(AVPacketList));
987     if (!this_pktl)
988         return AVERROR(ENOMEM);
989     if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
990         av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
991         av_assert0(((AVFrame *)pkt->data)->buf);
992         this_pktl->pkt = *pkt;
993         pkt->buf = NULL;
994         pkt->side_data = NULL;
995         pkt->side_data_elems = 0;
996     } else {
997         if ((ret = av_packet_ref(&this_pktl->pkt, pkt)) < 0) {
998             av_free(this_pktl);
999             return ret;
1000         }
1001     }
1002
1003     if (s->streams[pkt->stream_index]->last_in_packet_buffer) {
1004         next_point = &(st->last_in_packet_buffer->next);
1005     } else {
1006         next_point = &s->internal->packet_buffer;
1007     }
1008
1009     if (chunked) {
1010         uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
1011         st->interleaver_chunk_size     += pkt->size;
1012         st->interleaver_chunk_duration += pkt->duration;
1013         if (   (s->max_chunk_size && st->interleaver_chunk_size > s->max_chunk_size)
1014             || (max && st->interleaver_chunk_duration           > max)) {
1015             st->interleaver_chunk_size      = 0;
1016             this_pktl->pkt.flags |= CHUNK_START;
1017             if (max && st->interleaver_chunk_duration > max) {
1018                 int64_t syncoffset = (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
1019                 int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
1020
1021                 st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
1022             } else
1023                 st->interleaver_chunk_duration = 0;
1024         }
1025     }
1026     if (*next_point) {
1027         if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
1028             goto next_non_null;
1029
1030         if (compare(s, &s->internal->packet_buffer_end->pkt, pkt)) {
1031             while (   *next_point
1032                    && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
1033                        || !compare(s, &(*next_point)->pkt, pkt)))
1034                 next_point = &(*next_point)->next;
1035             if (*next_point)
1036                 goto next_non_null;
1037         } else {
1038             next_point = &(s->internal->packet_buffer_end->next);
1039         }
1040     }
1041     av_assert1(!*next_point);
1042
1043     s->internal->packet_buffer_end = this_pktl;
1044 next_non_null:
1045
1046     this_pktl->next = *next_point;
1047
1048     s->streams[pkt->stream_index]->last_in_packet_buffer =
1049         *next_point                                      = this_pktl;
1050
1051     av_packet_unref(pkt);
1052
1053     return 0;
1054 }
1055
1056 static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
1057                                   AVPacket *pkt)
1058 {
1059     AVStream *st  = s->streams[pkt->stream_index];
1060     AVStream *st2 = s->streams[next->stream_index];
1061     int comp      = av_compare_ts(next->dts, st2->time_base, pkt->dts,
1062                                   st->time_base);
1063     if (s->audio_preload && ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) != (st2->codecpar->codec_type == AVMEDIA_TYPE_AUDIO))) {
1064         int64_t ts = av_rescale_q(pkt ->dts, st ->time_base, AV_TIME_BASE_Q) - s->audio_preload*(st ->codecpar->codec_type == AVMEDIA_TYPE_AUDIO);
1065         int64_t ts2= av_rescale_q(next->dts, st2->time_base, AV_TIME_BASE_Q) - s->audio_preload*(st2->codecpar->codec_type == AVMEDIA_TYPE_AUDIO);
1066         if (ts == ts2) {
1067             ts= ( pkt ->dts* st->time_base.num*AV_TIME_BASE - s->audio_preload*(int64_t)(st ->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)* st->time_base.den)*st2->time_base.den
1068                -( next->dts*st2->time_base.num*AV_TIME_BASE - s->audio_preload*(int64_t)(st2->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)*st2->time_base.den)* st->time_base.den;
1069             ts2=0;
1070         }
1071         comp= (ts>ts2) - (ts<ts2);
1072     }
1073
1074     if (comp == 0)
1075         return pkt->stream_index < next->stream_index;
1076     return comp > 0;
1077 }
1078
1079 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
1080                                  AVPacket *pkt, int flush)
1081 {
1082     AVPacketList *pktl;
1083     int stream_count = 0;
1084     int noninterleaved_count = 0;
1085     int i, ret;
1086     int eof = flush;
1087
1088     if (pkt) {
1089         if ((ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts)) < 0)
1090             return ret;
1091     }
1092
1093     for (i = 0; i < s->nb_streams; i++) {
1094         if (s->streams[i]->last_in_packet_buffer) {
1095             ++stream_count;
1096         } else if (s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_ATTACHMENT &&
1097                    s->streams[i]->codecpar->codec_id != AV_CODEC_ID_VP8 &&
1098                    s->streams[i]->codecpar->codec_id != AV_CODEC_ID_VP9) {
1099             ++noninterleaved_count;
1100         }
1101     }
1102
1103     if (s->internal->nb_interleaved_streams == stream_count)
1104         flush = 1;
1105
1106     if (s->max_interleave_delta > 0 &&
1107         s->internal->packet_buffer &&
1108         !flush &&
1109         s->internal->nb_interleaved_streams == stream_count+noninterleaved_count
1110     ) {
1111         AVPacket *top_pkt = &s->internal->packet_buffer->pkt;
1112         int64_t delta_dts = INT64_MIN;
1113         int64_t top_dts = av_rescale_q(top_pkt->dts,
1114                                        s->streams[top_pkt->stream_index]->time_base,
1115                                        AV_TIME_BASE_Q);
1116
1117         for (i = 0; i < s->nb_streams; i++) {
1118             int64_t last_dts;
1119             const AVPacketList *last = s->streams[i]->last_in_packet_buffer;
1120
1121             if (!last)
1122                 continue;
1123
1124             last_dts = av_rescale_q(last->pkt.dts,
1125                                     s->streams[i]->time_base,
1126                                     AV_TIME_BASE_Q);
1127             delta_dts = FFMAX(delta_dts, last_dts - top_dts);
1128         }
1129
1130         if (delta_dts > s->max_interleave_delta) {
1131             av_log(s, AV_LOG_DEBUG,
1132                    "Delay between the first packet and last packet in the "
1133                    "muxing queue is %"PRId64" > %"PRId64": forcing output\n",
1134                    delta_dts, s->max_interleave_delta);
1135             flush = 1;
1136         }
1137     }
1138
1139     if (s->internal->packet_buffer &&
1140         eof &&
1141         (s->flags & AVFMT_FLAG_SHORTEST) &&
1142         s->internal->shortest_end == AV_NOPTS_VALUE) {
1143         AVPacket *top_pkt = &s->internal->packet_buffer->pkt;
1144
1145         s->internal->shortest_end = av_rescale_q(top_pkt->dts,
1146                                        s->streams[top_pkt->stream_index]->time_base,
1147                                        AV_TIME_BASE_Q);
1148     }
1149
1150     if (s->internal->shortest_end != AV_NOPTS_VALUE) {
1151         while (s->internal->packet_buffer) {
1152             AVPacket *top_pkt = &s->internal->packet_buffer->pkt;
1153             AVStream *st;
1154             int64_t top_dts = av_rescale_q(top_pkt->dts,
1155                                         s->streams[top_pkt->stream_index]->time_base,
1156                                         AV_TIME_BASE_Q);
1157
1158             if (s->internal->shortest_end + 1 >= top_dts)
1159                 break;
1160
1161             pktl = s->internal->packet_buffer;
1162             st   = s->streams[pktl->pkt.stream_index];
1163
1164             s->internal->packet_buffer = pktl->next;
1165             if (!s->internal->packet_buffer)
1166                 s->internal->packet_buffer_end = NULL;
1167
1168             if (st->last_in_packet_buffer == pktl)
1169                 st->last_in_packet_buffer = NULL;
1170
1171             av_packet_unref(&pktl->pkt);
1172             av_freep(&pktl);
1173             flush = 0;
1174         }
1175     }
1176
1177     if (stream_count && flush) {
1178         AVStream *st;
1179         pktl = s->internal->packet_buffer;
1180         *out = pktl->pkt;
1181         st   = s->streams[out->stream_index];
1182
1183         s->internal->packet_buffer = pktl->next;
1184         if (!s->internal->packet_buffer)
1185             s->internal->packet_buffer_end = NULL;
1186
1187         if (st->last_in_packet_buffer == pktl)
1188             st->last_in_packet_buffer = NULL;
1189         av_freep(&pktl);
1190
1191         return 1;
1192     } else {
1193         av_init_packet(out);
1194         return 0;
1195     }
1196 }
1197
1198 int ff_interleaved_peek(AVFormatContext *s, int stream,
1199                         AVPacket *pkt, int add_offset)
1200 {
1201     AVPacketList *pktl = s->internal->packet_buffer;
1202     while (pktl) {
1203         if (pktl->pkt.stream_index == stream) {
1204             *pkt = pktl->pkt;
1205             if (add_offset) {
1206                 AVStream *st = s->streams[pkt->stream_index];
1207                 int64_t offset = st->mux_ts_offset;
1208
1209                 if (s->output_ts_offset)
1210                     offset += av_rescale_q(s->output_ts_offset, AV_TIME_BASE_Q, st->time_base);
1211
1212                 if (pkt->dts != AV_NOPTS_VALUE)
1213                     pkt->dts += offset;
1214                 if (pkt->pts != AV_NOPTS_VALUE)
1215                     pkt->pts += offset;
1216             }
1217             return 0;
1218         }
1219         pktl = pktl->next;
1220     }
1221     return AVERROR(ENOENT);
1222 }
1223
1224 /**
1225  * Interleave an AVPacket correctly so it can be muxed.
1226  * @param out the interleaved packet will be output here
1227  * @param in the input packet
1228  * @param flush 1 if no further packets are available as input and all
1229  *              remaining packets should be output
1230  * @return 1 if a packet was output, 0 if no packet could be output,
1231  *         < 0 if an error occurred
1232  */
1233 static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
1234 {
1235     if (s->oformat->interleave_packet) {
1236         int ret = s->oformat->interleave_packet(s, out, in, flush);
1237         if (in)
1238             av_packet_unref(in);
1239         return ret;
1240     } else
1241         return ff_interleave_packet_per_dts(s, out, in, flush);
1242 }
1243
1244 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
1245 {
1246     int ret, flush = 0;
1247
1248     ret = prepare_input_packet(s, pkt);
1249     if (ret < 0)
1250         goto fail;
1251
1252     if (pkt) {
1253         AVStream *st = s->streams[pkt->stream_index];
1254
1255         ret = do_packet_auto_bsf(s, pkt);
1256         if (ret == 0)
1257             return 0;
1258         else if (ret < 0)
1259             goto fail;
1260
1261         if (s->debug & FF_FDEBUG_TS)
1262             av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
1263                 pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
1264
1265 #if FF_API_COMPUTE_PKT_FIELDS2 && FF_API_LAVF_AVCTX
1266         if ((ret = compute_muxer_pkt_fields(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
1267             goto fail;
1268 #endif
1269
1270         if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
1271             ret = AVERROR(EINVAL);
1272             goto fail;
1273         }
1274     } else {
1275         av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame FLUSH\n");
1276         flush = 1;
1277     }
1278
1279     for (;; ) {
1280         AVPacket opkt;
1281         int ret = interleave_packet(s, &opkt, pkt, flush);
1282         if (pkt) {
1283             memset(pkt, 0, sizeof(*pkt));
1284             av_init_packet(pkt);
1285             pkt = NULL;
1286         }
1287         if (ret <= 0) //FIXME cleanup needed for ret<0 ?
1288             return ret;
1289
1290         ret = write_packet(s, &opkt);
1291         if (ret >= 0)
1292             s->streams[opkt.stream_index]->nb_frames++;
1293
1294         av_packet_unref(&opkt);
1295
1296         if (ret < 0)
1297             return ret;
1298         if(s->pb && s->pb->error)
1299             return s->pb->error;
1300     }
1301 fail:
1302     av_packet_unref(pkt);
1303     return ret;
1304 }
1305
1306 int av_write_trailer(AVFormatContext *s)
1307 {
1308     int ret, i;
1309
1310     for (;; ) {
1311         AVPacket pkt;
1312         ret = interleave_packet(s, &pkt, NULL, 1);
1313         if (ret < 0)
1314             goto fail;
1315         if (!ret)
1316             break;
1317
1318         ret = write_packet(s, &pkt);
1319         if (ret >= 0)
1320             s->streams[pkt.stream_index]->nb_frames++;
1321
1322         av_packet_unref(&pkt);
1323
1324         if (ret < 0)
1325             goto fail;
1326         if(s->pb && s->pb->error)
1327             goto fail;
1328     }
1329
1330     if (!s->internal->header_written) {
1331         ret = s->internal->write_header_ret ? s->internal->write_header_ret : write_header_internal(s);
1332         if (ret < 0)
1333             goto fail;
1334     }
1335
1336 fail:
1337     if (s->internal->header_written && s->oformat->write_trailer) {
1338         if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb)
1339             avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_TRAILER);
1340         if (ret >= 0) {
1341         ret = s->oformat->write_trailer(s);
1342         } else {
1343             s->oformat->write_trailer(s);
1344         }
1345     }
1346
1347     if (s->oformat->deinit)
1348         s->oformat->deinit(s);
1349
1350     s->internal->header_written =
1351     s->internal->initialized =
1352     s->internal->streams_initialized = 0;
1353
1354     if (s->pb)
1355        avio_flush(s->pb);
1356     if (ret == 0)
1357        ret = s->pb ? s->pb->error : 0;
1358     for (i = 0; i < s->nb_streams; i++) {
1359         av_freep(&s->streams[i]->priv_data);
1360         av_freep(&s->streams[i]->index_entries);
1361     }
1362     if (s->oformat->priv_class)
1363         av_opt_free(s->priv_data);
1364     av_freep(&s->priv_data);
1365     return ret;
1366 }
1367
1368 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
1369                             int64_t *dts, int64_t *wall)
1370 {
1371     if (!s->oformat || !s->oformat->get_output_timestamp)
1372         return AVERROR(ENOSYS);
1373     s->oformat->get_output_timestamp(s, stream, dts, wall);
1374     return 0;
1375 }
1376
1377 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
1378                      AVFormatContext *src, int interleave)
1379 {
1380     AVPacket local_pkt;
1381     int ret;
1382
1383     local_pkt = *pkt;
1384     local_pkt.stream_index = dst_stream;
1385     if (pkt->pts != AV_NOPTS_VALUE)
1386         local_pkt.pts = av_rescale_q(pkt->pts,
1387                                      src->streams[pkt->stream_index]->time_base,
1388                                      dst->streams[dst_stream]->time_base);
1389     if (pkt->dts != AV_NOPTS_VALUE)
1390         local_pkt.dts = av_rescale_q(pkt->dts,
1391                                      src->streams[pkt->stream_index]->time_base,
1392                                      dst->streams[dst_stream]->time_base);
1393     if (pkt->duration)
1394         local_pkt.duration = av_rescale_q(pkt->duration,
1395                                           src->streams[pkt->stream_index]->time_base,
1396                                           dst->streams[dst_stream]->time_base);
1397
1398     if (interleave) ret = av_interleaved_write_frame(dst, &local_pkt);
1399     else            ret = av_write_frame(dst, &local_pkt);
1400     pkt->buf = local_pkt.buf;
1401     pkt->side_data       = local_pkt.side_data;
1402     pkt->side_data_elems = local_pkt.side_data_elems;
1403     return ret;
1404 }
1405
1406 static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index,
1407                                            AVFrame *frame, int interleaved)
1408 {
1409     AVPacket pkt, *pktp;
1410
1411     av_assert0(s->oformat);
1412     if (!s->oformat->write_uncoded_frame)
1413         return AVERROR(ENOSYS);
1414
1415     if (!frame) {
1416         pktp = NULL;
1417     } else {
1418         pktp = &pkt;
1419         av_init_packet(&pkt);
1420         pkt.data = (void *)frame;
1421         pkt.size         = UNCODED_FRAME_PACKET_SIZE;
1422         pkt.pts          =
1423         pkt.dts          = frame->pts;
1424         pkt.duration     = av_frame_get_pkt_duration(frame);
1425         pkt.stream_index = stream_index;
1426         pkt.flags |= AV_PKT_FLAG_UNCODED_FRAME;
1427     }
1428
1429     return interleaved ? av_interleaved_write_frame(s, pktp) :
1430                          av_write_frame(s, pktp);
1431 }
1432
1433 int av_write_uncoded_frame(AVFormatContext *s, int stream_index,
1434                            AVFrame *frame)
1435 {
1436     return av_write_uncoded_frame_internal(s, stream_index, frame, 0);
1437 }
1438
1439 int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index,
1440                                        AVFrame *frame)
1441 {
1442     return av_write_uncoded_frame_internal(s, stream_index, frame, 1);
1443 }
1444
1445 int av_write_uncoded_frame_query(AVFormatContext *s, int stream_index)
1446 {
1447     av_assert0(s->oformat);
1448     if (!s->oformat->write_uncoded_frame)
1449         return AVERROR(ENOSYS);
1450     return s->oformat->write_uncoded_frame(s, stream_index, NULL,
1451                                            AV_WRITE_UNCODED_FRAME_QUERY);
1452 }