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