2 * muxing functions for use within FFmpeg
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
5 * This file is part of FFmpeg.
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.
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.
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
23 #include "avio_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"
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"
40 #include "audiointerleave.h"
49 * muxing functions for use within libavformat
52 /* fraction handling */
55 * f = val + (num / den) + 0.5.
57 * 'num' is normalized so that it is such as 0 <= num < den.
59 * @param f fractional number
60 * @param val integer value
61 * @param num must be >= 0
62 * @param den must be >= 1
64 static void frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den)
77 * Fractional addition to f: f = f + (incr / f->den).
79 * @param f fractional number
80 * @param incr increment, can be positive or negative
82 static void frac_add(AVFrac *f, int64_t incr)
95 } else if (num >= den) {
102 AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precision)
109 for (j=2; j<14; j+= 1+(j>2))
110 while (q.den / q.num < min_precision && q.num % j == 0)
112 while (q.den / q.num < min_precision && q.den < (1<<24))
118 enum AVChromaLocation ff_choose_chroma_location(AVFormatContext *s, AVStream *st)
120 AVCodecContext *avctx = st->codec;
121 const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(avctx->pix_fmt);
123 if (avctx->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
124 return avctx->chroma_sample_location;
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 (avctx->field_order == AV_FIELD_UNKNOWN || avctx->field_order == AV_FIELD_PROGRESSIVE) {
131 switch (avctx->codec_id) {
132 case AV_CODEC_ID_MJPEG:
133 case AV_CODEC_ID_MPEG1VIDEO: return AVCHROMA_LOC_CENTER;
136 if (avctx->field_order == AV_FIELD_UNKNOWN || avctx->field_order != AV_FIELD_PROGRESSIVE) {
137 switch (avctx->codec_id) {
138 case AV_CODEC_ID_MPEG2VIDEO: return AVCHROMA_LOC_LEFT;
144 return AVCHROMA_LOC_UNSPECIFIED;
148 int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat,
149 const char *format, const char *filename)
151 AVFormatContext *s = avformat_alloc_context();
160 oformat = av_guess_format(format, NULL, NULL);
162 av_log(s, AV_LOG_ERROR, "Requested output format '%s' is not a suitable output format\n", format);
163 ret = AVERROR(EINVAL);
167 oformat = av_guess_format(NULL, filename, NULL);
169 ret = AVERROR(EINVAL);
170 av_log(s, AV_LOG_ERROR, "Unable to find a suitable output format for '%s'\n",
177 s->oformat = oformat;
178 if (s->oformat->priv_data_size > 0) {
179 s->priv_data = av_mallocz(s->oformat->priv_data_size);
182 if (s->oformat->priv_class) {
183 *(const AVClass**)s->priv_data= s->oformat->priv_class;
184 av_opt_set_defaults(s->priv_data);
190 av_strlcpy(s->filename, filename, sizeof(s->filename));
194 av_log(s, AV_LOG_ERROR, "Out of memory\n");
195 ret = AVERROR(ENOMEM);
197 avformat_free_context(s);
201 static int validate_codec_tag(AVFormatContext *s, AVStream *st)
203 const AVCodecTag *avctag;
205 enum AVCodecID id = AV_CODEC_ID_NONE;
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
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->codec->codec_tag)) {
219 if (id == st->codec->codec_id)
222 if (avctag->id == st->codec->codec_id)
227 if (id != AV_CODEC_ID_NONE)
229 if (tag >= 0 && (s->strict_std_compliance >= FF_COMPLIANCE_NORMAL))
235 static int init_muxer(AVFormatContext *s, AVDictionary **options)
239 AVDictionary *tmp = NULL;
240 AVCodecContext *codec = NULL;
241 AVOutputFormat *of = s->oformat;
242 AVDictionaryEntry *e;
245 av_dict_copy(&tmp, *options, 0);
247 if ((ret = av_opt_set_dict(s, &tmp)) < 0)
249 if (s->priv_data && s->oformat->priv_class && *(const AVClass**)s->priv_data==s->oformat->priv_class &&
250 (ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
253 #if FF_API_LAVF_BITEXACT
254 if (s->nb_streams && s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)
255 s->flags |= AVFMT_FLAG_BITEXACT;
258 // some sanity checks
259 if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) {
260 av_log(s, AV_LOG_ERROR, "No streams to mux were specified\n");
261 ret = AVERROR(EINVAL);
265 for (i = 0; i < s->nb_streams; i++) {
269 #if FF_API_LAVF_CODEC_TB
270 FF_DISABLE_DEPRECATION_WARNINGS
271 if (!st->time_base.num && codec->time_base.num) {
272 av_log(s, AV_LOG_WARNING, "Using AVStream.codec.time_base as a "
273 "timebase hint to the muxer is deprecated. Set "
274 "AVStream.time_base instead.\n");
275 avpriv_set_pts_info(st, 64, codec->time_base.num, codec->time_base.den);
277 FF_ENABLE_DEPRECATION_WARNINGS
280 if (!st->time_base.num) {
281 /* fall back on the default timebase values */
282 if (codec->codec_type == AVMEDIA_TYPE_AUDIO && codec->sample_rate)
283 avpriv_set_pts_info(st, 64, 1, codec->sample_rate);
285 avpriv_set_pts_info(st, 33, 1, 90000);
288 switch (codec->codec_type) {
289 case AVMEDIA_TYPE_AUDIO:
290 if (codec->sample_rate <= 0) {
291 av_log(s, AV_LOG_ERROR, "sample rate not set\n");
292 ret = AVERROR(EINVAL);
295 if (!codec->block_align)
296 codec->block_align = codec->channels *
297 av_get_bits_per_sample(codec->codec_id) >> 3;
299 case AVMEDIA_TYPE_VIDEO:
300 if ((codec->width <= 0 || codec->height <= 0) &&
301 !(of->flags & AVFMT_NODIMENSIONS)) {
302 av_log(s, AV_LOG_ERROR, "dimensions not set\n");
303 ret = AVERROR(EINVAL);
306 if (av_cmp_q(st->sample_aspect_ratio, codec->sample_aspect_ratio)
307 && FFABS(av_q2d(st->sample_aspect_ratio) - av_q2d(codec->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
309 if (st->sample_aspect_ratio.num != 0 &&
310 st->sample_aspect_ratio.den != 0 &&
311 codec->sample_aspect_ratio.num != 0 &&
312 codec->sample_aspect_ratio.den != 0) {
313 av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
314 "(%d/%d) and encoder layer (%d/%d)\n",
315 st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
316 codec->sample_aspect_ratio.num,
317 codec->sample_aspect_ratio.den);
318 ret = AVERROR(EINVAL);
326 if ( codec->codec_tag
327 && codec->codec_id == AV_CODEC_ID_RAWVIDEO
328 && ( av_codec_get_tag(of->codec_tag, codec->codec_id) == 0
329 || av_codec_get_tag(of->codec_tag, codec->codec_id) == MKTAG('r', 'a', 'w', ' '))
330 && !validate_codec_tag(s, st)) {
331 // the current rawvideo encoding system ends up setting
332 // the wrong codec_tag for avi/mov, we override it here
333 codec->codec_tag = 0;
335 if (codec->codec_tag) {
336 if (!validate_codec_tag(s, st)) {
337 char tagbuf[32], tagbuf2[32];
338 av_get_codec_tag_string(tagbuf, sizeof(tagbuf), codec->codec_tag);
339 av_get_codec_tag_string(tagbuf2, sizeof(tagbuf2), av_codec_get_tag(s->oformat->codec_tag, codec->codec_id));
340 av_log(s, AV_LOG_ERROR,
341 "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
342 tagbuf, codec->codec_tag, codec->codec_id, tagbuf2);
343 ret = AVERROR_INVALIDDATA;
347 codec->codec_tag = av_codec_get_tag(of->codec_tag, codec->codec_id);
350 if (of->flags & AVFMT_GLOBALHEADER &&
351 !(codec->flags & CODEC_FLAG_GLOBAL_HEADER))
352 av_log(s, AV_LOG_WARNING,
353 "Codec for stream %d does not use global headers "
354 "but container format requires global headers\n", i);
356 if (codec->codec_type != AVMEDIA_TYPE_ATTACHMENT)
357 s->internal->nb_interleaved_streams++;
360 if (!s->priv_data && of->priv_data_size > 0) {
361 s->priv_data = av_mallocz(of->priv_data_size);
363 ret = AVERROR(ENOMEM);
366 if (of->priv_class) {
367 *(const AVClass **)s->priv_data = of->priv_class;
368 av_opt_set_defaults(s->priv_data);
369 if ((ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
374 /* set muxer identification string */
375 if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
376 av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
378 av_dict_set(&s->metadata, "encoder", NULL, 0);
381 for (e = NULL; e = av_dict_get(s->metadata, "encoder-", e, AV_DICT_IGNORE_SUFFIX); ) {
382 av_dict_set(&s->metadata, e->key, NULL, 0);
386 av_dict_free(options);
397 static int init_pts(AVFormatContext *s)
402 /* init PTS generation */
403 for (i = 0; i < s->nb_streams; i++) {
404 int64_t den = AV_NOPTS_VALUE;
407 switch (st->codec->codec_type) {
408 case AVMEDIA_TYPE_AUDIO:
409 den = (int64_t)st->time_base.num * st->codec->sample_rate;
411 case AVMEDIA_TYPE_VIDEO:
412 den = (int64_t)st->time_base.num * st->codec->time_base.den;
417 if (den != AV_NOPTS_VALUE) {
419 return AVERROR_INVALIDDATA;
421 frac_init(&st->pts, 0, 0, den);
428 int avformat_write_header(AVFormatContext *s, AVDictionary **options)
432 if ((ret = init_muxer(s, options)) < 0)
435 if (s->oformat->write_header) {
436 ret = s->oformat->write_header(s);
437 if (ret >= 0 && s->pb && s->pb->error < 0)
441 if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
445 if ((ret = init_pts(s)) < 0)
448 if (s->avoid_negative_ts < 0) {
449 av_assert2(s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO);
450 if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
451 s->avoid_negative_ts = 0;
453 s->avoid_negative_ts = AVFMT_AVOID_NEG_TS_MAKE_NON_NEGATIVE;
459 #define AV_PKT_FLAG_UNCODED_FRAME 0x2000
461 /* Note: using sizeof(AVFrame) from outside lavu is unsafe in general, but
462 it is only being used internally to this file as a consistency check.
463 The value is chosen to be very unlikely to appear on its own and to cause
464 immediate failure if used anywhere as a real size. */
465 #define UNCODED_FRAME_PACKET_SIZE (INT_MIN / 3 * 2 + (int)sizeof(AVFrame))
468 //FIXME merge with compute_pkt_fields
469 static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt)
471 int delay = FFMAX(st->codec->has_b_frames, st->codec->max_b_frames > 0);
475 if (s->debug & FF_FDEBUG_TS)
476 av_log(s, AV_LOG_TRACE, "compute_pkt_fields2: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
477 av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
479 if (pkt->duration < 0 && st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) {
480 av_log(s, AV_LOG_WARNING, "Packet with invalid duration %d in stream %d\n",
481 pkt->duration, pkt->stream_index);
486 if (pkt->duration == 0) {
487 ff_compute_frame_duration(s, &num, &den, st, NULL, pkt);
489 pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
493 if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
496 //XXX/FIXME this is a temporary hack until all encoders output pts
497 if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
500 av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
504 // pkt->pts= st->cur_dts;
505 pkt->pts = st->pts.val;
508 //calculate dts from pts
509 if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
510 st->pts_buffer[0] = pkt->pts;
511 for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
512 st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
513 for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
514 FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
516 pkt->dts = st->pts_buffer[0];
519 if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
520 ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
521 st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE &&
522 st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
523 av_log(s, AV_LOG_ERROR,
524 "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
525 st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
526 return AVERROR(EINVAL);
528 if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
529 av_log(s, AV_LOG_ERROR,
530 "pts (%s) < dts (%s) in stream %d\n",
531 av_ts2str(pkt->pts), av_ts2str(pkt->dts),
533 return AVERROR(EINVAL);
536 if (s->debug & FF_FDEBUG_TS)
537 av_log(s, AV_LOG_TRACE, "av_write_frame: pts2:%s dts2:%s\n",
538 av_ts2str(pkt->pts), av_ts2str(pkt->dts));
540 st->cur_dts = pkt->dts;
541 st->pts.val = pkt->dts;
544 switch (st->codec->codec_type) {
545 case AVMEDIA_TYPE_AUDIO:
546 frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
547 ((AVFrame *)pkt->data)->nb_samples :
548 av_get_audio_frame_duration(st->codec, pkt->size);
550 /* HACK/FIXME, we skip the initial 0 size packets as they are most
551 * likely equal to the encoder delay, but it would be better if we
552 * had the real timestamps from the encoder */
553 if (frame_size >= 0 && (pkt->size || st->pts.num != st->pts.den >> 1 || st->pts.val)) {
554 frac_add(&st->pts, (int64_t)st->time_base.den * frame_size);
557 case AVMEDIA_TYPE_VIDEO:
558 frac_add(&st->pts, (int64_t)st->time_base.den * st->codec->time_base.num);
565 * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
568 * FIXME: this function should NEVER get undefined pts/dts beside when the
569 * AVFMT_NOTIMESTAMPS is set.
570 * Those additional safety checks should be dropped once the correct checks
571 * are set in the callers.
573 static int write_packet(AVFormatContext *s, AVPacket *pkt)
577 if (s->output_ts_offset) {
578 AVStream *st = s->streams[pkt->stream_index];
579 int64_t offset = av_rescale_q(s->output_ts_offset, AV_TIME_BASE_Q, st->time_base);
581 if (pkt->dts != AV_NOPTS_VALUE)
583 if (pkt->pts != AV_NOPTS_VALUE)
587 if (s->avoid_negative_ts > 0) {
588 AVStream *st = s->streams[pkt->stream_index];
589 int64_t offset = st->mux_ts_offset;
590 int64_t ts = s->internal->avoid_negative_ts_use_pts ? pkt->pts : pkt->dts;
592 if (s->internal->offset == AV_NOPTS_VALUE && ts != AV_NOPTS_VALUE &&
593 (ts < 0 || s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO)) {
594 s->internal->offset = -ts;
595 s->internal->offset_timebase = st->time_base;
598 if (s->internal->offset != AV_NOPTS_VALUE && !offset) {
599 offset = st->mux_ts_offset =
600 av_rescale_q_rnd(s->internal->offset,
601 s->internal->offset_timebase,
606 if (pkt->dts != AV_NOPTS_VALUE)
608 if (pkt->pts != AV_NOPTS_VALUE)
611 if (s->internal->avoid_negative_ts_use_pts) {
612 if (pkt->pts != AV_NOPTS_VALUE && pkt->pts < 0) {
613 av_log(s, AV_LOG_WARNING, "failed to avoid negative "
614 "pts %s in stream %d.\n"
615 "Try -avoid_negative_ts 1 as a possible workaround.\n",
621 av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0 || s->max_interleave_delta > 0);
622 if (pkt->dts != AV_NOPTS_VALUE && pkt->dts < 0) {
623 av_log(s, AV_LOG_WARNING,
624 "Packets poorly interleaved, failed to avoid negative "
625 "timestamp %s in stream %d.\n"
626 "Try -max_interleave_delta 0 as a possible workaround.\n",
634 did_split = av_packet_split_side_data(pkt);
635 if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
636 AVFrame *frame = (AVFrame *)pkt->data;
637 av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
638 ret = s->oformat->write_uncoded_frame(s, pkt->stream_index, &frame, 0);
639 av_frame_free(&frame);
641 ret = s->oformat->write_packet(s, pkt);
644 if (s->flush_packets && s->pb && ret >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
648 av_packet_merge_side_data(pkt);
653 static int check_packet(AVFormatContext *s, AVPacket *pkt)
658 if (pkt->stream_index < 0 || pkt->stream_index >= s->nb_streams) {
659 av_log(s, AV_LOG_ERROR, "Invalid packet stream index: %d\n",
661 return AVERROR(EINVAL);
664 if (s->streams[pkt->stream_index]->codec->codec_type == AVMEDIA_TYPE_ATTACHMENT) {
665 av_log(s, AV_LOG_ERROR, "Received a packet for an attachment stream.\n");
666 return AVERROR(EINVAL);
672 int av_write_frame(AVFormatContext *s, AVPacket *pkt)
676 ret = check_packet(s, pkt);
681 if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
682 ret = s->oformat->write_packet(s, NULL);
683 if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
685 if (ret >= 0 && s->pb && s->pb->error < 0)
692 ret = compute_pkt_fields2(s, s->streams[pkt->stream_index], pkt);
694 if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
697 ret = write_packet(s, pkt);
698 if (ret >= 0 && s->pb && s->pb->error < 0)
702 s->streams[pkt->stream_index]->nb_frames++;
706 #define CHUNK_START 0x1000
708 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
709 int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
712 AVPacketList **next_point, *this_pktl;
713 AVStream *st = s->streams[pkt->stream_index];
714 int chunked = s->max_chunk_size || s->max_chunk_duration;
716 this_pktl = av_mallocz(sizeof(AVPacketList));
718 return AVERROR(ENOMEM);
719 this_pktl->pkt = *pkt;
720 #if FF_API_DESTRUCT_PACKET
721 FF_DISABLE_DEPRECATION_WARNINGS
722 pkt->destruct = NULL; // do not free original but only the copy
723 FF_ENABLE_DEPRECATION_WARNINGS
726 pkt->side_data = NULL;
727 pkt->side_data_elems = 0;
728 if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
729 av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
730 av_assert0(((AVFrame *)pkt->data)->buf);
732 // Duplicate the packet if it uses non-allocated memory
733 if ((ret = av_dup_packet(&this_pktl->pkt)) < 0) {
739 if (s->streams[pkt->stream_index]->last_in_packet_buffer) {
740 next_point = &(st->last_in_packet_buffer->next);
742 next_point = &s->internal->packet_buffer;
746 uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
747 st->interleaver_chunk_size += pkt->size;
748 st->interleaver_chunk_duration += pkt->duration;
749 if ( (s->max_chunk_size && st->interleaver_chunk_size > s->max_chunk_size)
750 || (max && st->interleaver_chunk_duration > max)) {
751 st->interleaver_chunk_size = 0;
752 this_pktl->pkt.flags |= CHUNK_START;
753 if (max && st->interleaver_chunk_duration > max) {
754 int64_t syncoffset = (st->codec->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
755 int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
757 st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
759 st->interleaver_chunk_duration = 0;
763 if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
766 if (compare(s, &s->internal->packet_buffer_end->pkt, pkt)) {
768 && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
769 || !compare(s, &(*next_point)->pkt, pkt)))
770 next_point = &(*next_point)->next;
774 next_point = &(s->internal->packet_buffer_end->next);
777 av_assert1(!*next_point);
779 s->internal->packet_buffer_end = this_pktl;
782 this_pktl->next = *next_point;
784 s->streams[pkt->stream_index]->last_in_packet_buffer =
785 *next_point = this_pktl;
790 static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
793 AVStream *st = s->streams[pkt->stream_index];
794 AVStream *st2 = s->streams[next->stream_index];
795 int comp = av_compare_ts(next->dts, st2->time_base, pkt->dts,
797 if (s->audio_preload && ((st->codec->codec_type == AVMEDIA_TYPE_AUDIO) != (st2->codec->codec_type == AVMEDIA_TYPE_AUDIO))) {
798 int64_t ts = av_rescale_q(pkt ->dts, st ->time_base, AV_TIME_BASE_Q) - s->audio_preload*(st ->codec->codec_type == AVMEDIA_TYPE_AUDIO);
799 int64_t ts2= av_rescale_q(next->dts, st2->time_base, AV_TIME_BASE_Q) - s->audio_preload*(st2->codec->codec_type == AVMEDIA_TYPE_AUDIO);
801 ts= ( pkt ->dts* st->time_base.num*AV_TIME_BASE - s->audio_preload*(int64_t)(st ->codec->codec_type == AVMEDIA_TYPE_AUDIO)* st->time_base.den)*st2->time_base.den
802 -( next->dts*st2->time_base.num*AV_TIME_BASE - s->audio_preload*(int64_t)(st2->codec->codec_type == AVMEDIA_TYPE_AUDIO)*st2->time_base.den)* st->time_base.den;
805 comp= (ts>ts2) - (ts<ts2);
809 return pkt->stream_index < next->stream_index;
813 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
814 AVPacket *pkt, int flush)
817 int stream_count = 0;
818 int noninterleaved_count = 0;
822 if ((ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts)) < 0)
826 for (i = 0; i < s->nb_streams; i++) {
827 if (s->streams[i]->last_in_packet_buffer) {
829 } else if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_ATTACHMENT &&
830 s->streams[i]->codec->codec_id != AV_CODEC_ID_VP8 &&
831 s->streams[i]->codec->codec_id != AV_CODEC_ID_VP9) {
832 ++noninterleaved_count;
836 if (s->internal->nb_interleaved_streams == stream_count)
839 if (s->max_interleave_delta > 0 &&
840 s->internal->packet_buffer &&
842 s->internal->nb_interleaved_streams == stream_count+noninterleaved_count
844 AVPacket *top_pkt = &s->internal->packet_buffer->pkt;
845 int64_t delta_dts = INT64_MIN;
846 int64_t top_dts = av_rescale_q(top_pkt->dts,
847 s->streams[top_pkt->stream_index]->time_base,
850 for (i = 0; i < s->nb_streams; i++) {
852 const AVPacketList *last = s->streams[i]->last_in_packet_buffer;
857 last_dts = av_rescale_q(last->pkt.dts,
858 s->streams[i]->time_base,
860 delta_dts = FFMAX(delta_dts, last_dts - top_dts);
863 if (delta_dts > s->max_interleave_delta) {
864 av_log(s, AV_LOG_DEBUG,
865 "Delay between the first packet and last packet in the "
866 "muxing queue is %"PRId64" > %"PRId64": forcing output\n",
867 delta_dts, s->max_interleave_delta);
872 if (stream_count && flush) {
874 pktl = s->internal->packet_buffer;
876 st = s->streams[out->stream_index];
878 s->internal->packet_buffer = pktl->next;
879 if (!s->internal->packet_buffer)
880 s->internal->packet_buffer_end = NULL;
882 if (st->last_in_packet_buffer == pktl)
883 st->last_in_packet_buffer = NULL;
894 * Interleave an AVPacket correctly so it can be muxed.
895 * @param out the interleaved packet will be output here
896 * @param in the input packet
897 * @param flush 1 if no further packets are available as input and all
898 * remaining packets should be output
899 * @return 1 if a packet was output, 0 if no packet could be output,
900 * < 0 if an error occurred
902 static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
904 if (s->oformat->interleave_packet) {
905 int ret = s->oformat->interleave_packet(s, out, in, flush);
910 return ff_interleave_packet_per_dts(s, out, in, flush);
913 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
917 ret = check_packet(s, pkt);
922 AVStream *st = s->streams[pkt->stream_index];
924 if (s->debug & FF_FDEBUG_TS)
925 av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
926 pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
928 if ((ret = compute_pkt_fields2(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
931 if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
932 ret = AVERROR(EINVAL);
936 av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame FLUSH\n");
942 int ret = interleave_packet(s, &opkt, pkt, flush);
944 memset(pkt, 0, sizeof(*pkt));
948 if (ret <= 0) //FIXME cleanup needed for ret<0 ?
951 ret = write_packet(s, &opkt);
953 s->streams[opkt.stream_index]->nb_frames++;
955 av_free_packet(&opkt);
959 if(s->pb && s->pb->error)
963 av_packet_unref(pkt);
967 int av_write_trailer(AVFormatContext *s)
973 ret = interleave_packet(s, &pkt, NULL, 1);
979 ret = write_packet(s, &pkt);
981 s->streams[pkt.stream_index]->nb_frames++;
983 av_free_packet(&pkt);
987 if(s->pb && s->pb->error)
992 if (s->oformat->write_trailer)
994 ret = s->oformat->write_trailer(s);
996 s->oformat->write_trailer(s);
1002 ret = s->pb ? s->pb->error : 0;
1003 for (i = 0; i < s->nb_streams; i++) {
1004 av_freep(&s->streams[i]->priv_data);
1005 av_freep(&s->streams[i]->index_entries);
1007 if (s->oformat->priv_class)
1008 av_opt_free(s->priv_data);
1009 av_freep(&s->priv_data);
1013 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
1014 int64_t *dts, int64_t *wall)
1016 if (!s->oformat || !s->oformat->get_output_timestamp)
1017 return AVERROR(ENOSYS);
1018 s->oformat->get_output_timestamp(s, stream, dts, wall);
1022 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
1023 AVFormatContext *src, int interleave)
1029 local_pkt.stream_index = dst_stream;
1030 if (pkt->pts != AV_NOPTS_VALUE)
1031 local_pkt.pts = av_rescale_q(pkt->pts,
1032 src->streams[pkt->stream_index]->time_base,
1033 dst->streams[dst_stream]->time_base);
1034 if (pkt->dts != AV_NOPTS_VALUE)
1035 local_pkt.dts = av_rescale_q(pkt->dts,
1036 src->streams[pkt->stream_index]->time_base,
1037 dst->streams[dst_stream]->time_base);
1039 local_pkt.duration = av_rescale_q(pkt->duration,
1040 src->streams[pkt->stream_index]->time_base,
1041 dst->streams[dst_stream]->time_base);
1043 if (interleave) ret = av_interleaved_write_frame(dst, &local_pkt);
1044 else ret = av_write_frame(dst, &local_pkt);
1045 pkt->buf = local_pkt.buf;
1046 pkt->destruct = local_pkt.destruct;
1050 static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index,
1051 AVFrame *frame, int interleaved)
1053 AVPacket pkt, *pktp;
1055 av_assert0(s->oformat);
1056 if (!s->oformat->write_uncoded_frame)
1057 return AVERROR(ENOSYS);
1063 av_init_packet(&pkt);
1064 pkt.data = (void *)frame;
1065 pkt.size = UNCODED_FRAME_PACKET_SIZE;
1067 pkt.dts = frame->pts;
1068 pkt.duration = av_frame_get_pkt_duration(frame);
1069 pkt.stream_index = stream_index;
1070 pkt.flags |= AV_PKT_FLAG_UNCODED_FRAME;
1073 return interleaved ? av_interleaved_write_frame(s, pktp) :
1074 av_write_frame(s, pktp);
1077 int av_write_uncoded_frame(AVFormatContext *s, int stream_index,
1080 return av_write_uncoded_frame_internal(s, stream_index, frame, 0);
1083 int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index,
1086 return av_write_uncoded_frame_internal(s, stream_index, frame, 1);
1089 int av_write_uncoded_frame_query(AVFormatContext *s, int stream_index)
1091 av_assert0(s->oformat);
1092 if (!s->oformat->write_uncoded_frame)
1093 return AVERROR(ENOSYS);
1094 return s->oformat->write_uncoded_frame(s, stream_index, NULL,
1095 AV_WRITE_UNCODED_FRAME_QUERY);