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