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