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