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