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(FFFrac *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(FFFrac *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 AVCodecParameters *par = st->codecpar;
121 const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(par->format);
123 if (par->chroma_location != AVCHROMA_LOC_UNSPECIFIED)
124 return par->chroma_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 (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;
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;
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->codecpar->codec_tag)) {
219 if (id == st->codecpar->codec_id)
222 if (avctag->id == st->codecpar->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 AVCodecParameters *par = NULL;
241 AVOutputFormat *of = s->oformat;
242 const AVCodecDescriptor *desc;
243 AVDictionaryEntry *e;
246 av_dict_copy(&tmp, *options, 0);
248 if ((ret = av_opt_set_dict(s, &tmp)) < 0)
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)
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;
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");
273 FF_ENABLE_DEPRECATION_WARNINGS
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);
283 for (i = 0; i < s->nb_streams; i++) {
287 #if FF_API_LAVF_CODEC_TB
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);
295 FF_ENABLE_DEPRECATION_WARNINGS
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 "
305 ret = avcodec_parameters_from_context(st->codecpar, st->codec);
309 FF_ENABLE_DEPRECATION_WARNINGS
312 /* update internal context from codecpar, old bsf api needs this
313 * FIXME: remove when autobsf uses new bsf API */
314 ret = avcodec_parameters_to_context(st->internal->avctx, st->codecpar);
318 if (!st->time_base.num) {
319 /* fall back on the default timebase values */
320 if (par->codec_type == AVMEDIA_TYPE_AUDIO && par->sample_rate)
321 avpriv_set_pts_info(st, 64, 1, par->sample_rate);
323 avpriv_set_pts_info(st, 33, 1, 90000);
326 switch (par->codec_type) {
327 case AVMEDIA_TYPE_AUDIO:
328 if (par->sample_rate <= 0) {
329 av_log(s, AV_LOG_ERROR, "sample rate not set\n");
330 ret = AVERROR(EINVAL);
333 if (!par->block_align)
334 par->block_align = par->channels *
335 av_get_bits_per_sample(par->codec_id) >> 3;
337 case AVMEDIA_TYPE_VIDEO:
338 if ((par->width <= 0 || par->height <= 0) &&
339 !(of->flags & AVFMT_NODIMENSIONS)) {
340 av_log(s, AV_LOG_ERROR, "dimensions not set\n");
341 ret = AVERROR(EINVAL);
344 if (av_cmp_q(st->sample_aspect_ratio, par->sample_aspect_ratio)
345 && fabs(av_q2d(st->sample_aspect_ratio) - av_q2d(par->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
347 if (st->sample_aspect_ratio.num != 0 &&
348 st->sample_aspect_ratio.den != 0 &&
349 par->sample_aspect_ratio.num != 0 &&
350 par->sample_aspect_ratio.den != 0) {
351 av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
352 "(%d/%d) and encoder layer (%d/%d)\n",
353 st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
354 par->sample_aspect_ratio.num,
355 par->sample_aspect_ratio.den);
356 ret = AVERROR(EINVAL);
363 desc = avcodec_descriptor_get(par->codec_id);
364 if (desc && desc->props & AV_CODEC_PROP_REORDER)
365 st->internal->reorder = 1;
369 && par->codec_id == AV_CODEC_ID_RAWVIDEO
370 && ( av_codec_get_tag(of->codec_tag, par->codec_id) == 0
371 || av_codec_get_tag(of->codec_tag, par->codec_id) == MKTAG('r', 'a', 'w', ' '))
372 && !validate_codec_tag(s, st)) {
373 // the current rawvideo encoding system ends up setting
374 // the wrong codec_tag for avi/mov, we override it here
377 if (par->codec_tag) {
378 if (!validate_codec_tag(s, st)) {
379 char tagbuf[32], tagbuf2[32];
380 av_get_codec_tag_string(tagbuf, sizeof(tagbuf), par->codec_tag);
381 av_get_codec_tag_string(tagbuf2, sizeof(tagbuf2), av_codec_get_tag(s->oformat->codec_tag, par->codec_id));
382 av_log(s, AV_LOG_ERROR,
383 "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
384 tagbuf, par->codec_tag, par->codec_id, tagbuf2);
385 ret = AVERROR_INVALIDDATA;
389 par->codec_tag = av_codec_get_tag(of->codec_tag, par->codec_id);
392 if (par->codec_type != AVMEDIA_TYPE_ATTACHMENT)
393 s->internal->nb_interleaved_streams++;
396 if (!s->priv_data && of->priv_data_size > 0) {
397 s->priv_data = av_mallocz(of->priv_data_size);
399 ret = AVERROR(ENOMEM);
402 if (of->priv_class) {
403 *(const AVClass **)s->priv_data = of->priv_class;
404 av_opt_set_defaults(s->priv_data);
405 if ((ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
410 /* set muxer identification string */
411 if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
412 av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
414 av_dict_set(&s->metadata, "encoder", NULL, 0);
417 for (e = NULL; e = av_dict_get(s->metadata, "encoder-", e, AV_DICT_IGNORE_SUFFIX); ) {
418 av_dict_set(&s->metadata, e->key, NULL, 0);
422 av_dict_free(options);
426 if (s->oformat->init && (ret = s->oformat->init(s)) < 0) {
427 s->oformat->deinit(s);
438 static int init_pts(AVFormatContext *s)
443 /* init PTS generation */
444 for (i = 0; i < s->nb_streams; i++) {
445 int64_t den = AV_NOPTS_VALUE;
448 switch (st->codecpar->codec_type) {
449 case AVMEDIA_TYPE_AUDIO:
450 den = (int64_t)st->time_base.num * st->codecpar->sample_rate;
452 case AVMEDIA_TYPE_VIDEO:
453 den = (int64_t)st->time_base.num * st->time_base.den;
460 st->priv_pts = av_mallocz(sizeof(*st->priv_pts));
462 return AVERROR(ENOMEM);
464 if (den != AV_NOPTS_VALUE) {
466 return AVERROR_INVALIDDATA;
468 frac_init(st->priv_pts, 0, 0, den);
475 int avformat_write_header(AVFormatContext *s, AVDictionary **options)
479 if ((ret = init_muxer(s, options)) < 0)
482 if (s->oformat->write_header && !s->oformat->check_bitstream) {
483 ret = s->oformat->write_header(s);
484 if (ret >= 0 && s->pb && s->pb->error < 0)
488 if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
490 s->internal->header_written = 1;
493 if ((ret = init_pts(s)) < 0)
496 if (s->avoid_negative_ts < 0) {
497 av_assert2(s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO);
498 if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
499 s->avoid_negative_ts = 0;
501 s->avoid_negative_ts = AVFMT_AVOID_NEG_TS_MAKE_NON_NEGATIVE;
507 #define AV_PKT_FLAG_UNCODED_FRAME 0x2000
509 /* Note: using sizeof(AVFrame) from outside lavu is unsafe in general, but
510 it is only being used internally to this file as a consistency check.
511 The value is chosen to be very unlikely to appear on its own and to cause
512 immediate failure if used anywhere as a real size. */
513 #define UNCODED_FRAME_PACKET_SIZE (INT_MIN / 3 * 2 + (int)sizeof(AVFrame))
516 #if FF_API_COMPUTE_PKT_FIELDS2
517 FF_DISABLE_DEPRECATION_WARNINGS
518 //FIXME merge with compute_pkt_fields
519 static int compute_muxer_pkt_fields(AVFormatContext *s, AVStream *st, AVPacket *pkt)
521 int delay = FFMAX(st->codecpar->video_delay, st->internal->avctx->max_b_frames > 0);
525 if (!s->internal->missing_ts_warning &&
526 !(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
527 (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE)) {
528 av_log(s, AV_LOG_WARNING,
529 "Timestamps are unset in a packet for stream %d. "
530 "This is deprecated and will stop working in the future. "
531 "Fix your code to set the timestamps properly\n", st->index);
532 s->internal->missing_ts_warning = 1;
535 if (s->debug & FF_FDEBUG_TS)
536 av_log(s, AV_LOG_TRACE, "compute_muxer_pkt_fields: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
537 av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
539 if (pkt->duration < 0 && st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) {
540 av_log(s, AV_LOG_WARNING, "Packet with invalid duration %"PRId64" in stream %d\n",
541 pkt->duration, pkt->stream_index);
546 if (pkt->duration == 0) {
547 ff_compute_frame_duration(s, &num, &den, st, NULL, pkt);
549 pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
553 if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
556 //XXX/FIXME this is a temporary hack until all encoders output pts
557 if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
560 av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
564 // pkt->pts= st->cur_dts;
565 pkt->pts = st->priv_pts->val;
568 //calculate dts from pts
569 if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
570 st->pts_buffer[0] = pkt->pts;
571 for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
572 st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
573 for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
574 FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
576 pkt->dts = st->pts_buffer[0];
579 if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
580 ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
581 st->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE &&
582 st->codecpar->codec_type != AVMEDIA_TYPE_DATA &&
583 st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
584 av_log(s, AV_LOG_ERROR,
585 "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
586 st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
587 return AVERROR(EINVAL);
589 if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
590 av_log(s, AV_LOG_ERROR,
591 "pts (%s) < dts (%s) in stream %d\n",
592 av_ts2str(pkt->pts), av_ts2str(pkt->dts),
594 return AVERROR(EINVAL);
597 if (s->debug & FF_FDEBUG_TS)
598 av_log(s, AV_LOG_TRACE, "av_write_frame: pts2:%s dts2:%s\n",
599 av_ts2str(pkt->pts), av_ts2str(pkt->dts));
601 st->cur_dts = pkt->dts;
602 st->priv_pts->val = pkt->dts;
605 switch (st->codec->codec_type) {
606 case AVMEDIA_TYPE_AUDIO:
607 frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
608 ((AVFrame *)pkt->data)->nb_samples :
609 av_get_audio_frame_duration(st->codec, pkt->size);
611 /* HACK/FIXME, we skip the initial 0 size packets as they are most
612 * likely equal to the encoder delay, but it would be better if we
613 * had the real timestamps from the encoder */
614 if (frame_size >= 0 && (pkt->size || st->priv_pts->num != st->priv_pts->den >> 1 || st->priv_pts->val)) {
615 frac_add(st->priv_pts, (int64_t)st->time_base.den * frame_size);
618 case AVMEDIA_TYPE_VIDEO:
619 frac_add(st->priv_pts, (int64_t)st->time_base.den * st->time_base.num);
624 FF_ENABLE_DEPRECATION_WARNINGS
628 * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
631 * FIXME: this function should NEVER get undefined pts/dts beside when the
632 * AVFMT_NOTIMESTAMPS is set.
633 * Those additional safety checks should be dropped once the correct checks
634 * are set in the callers.
636 static int write_packet(AVFormatContext *s, AVPacket *pkt)
640 if (s->output_ts_offset) {
641 AVStream *st = s->streams[pkt->stream_index];
642 int64_t offset = av_rescale_q(s->output_ts_offset, AV_TIME_BASE_Q, st->time_base);
644 if (pkt->dts != AV_NOPTS_VALUE)
646 if (pkt->pts != AV_NOPTS_VALUE)
650 if (s->avoid_negative_ts > 0) {
651 AVStream *st = s->streams[pkt->stream_index];
652 int64_t offset = st->mux_ts_offset;
653 int64_t ts = s->internal->avoid_negative_ts_use_pts ? pkt->pts : pkt->dts;
655 if (s->internal->offset == AV_NOPTS_VALUE && ts != AV_NOPTS_VALUE &&
656 (ts < 0 || s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO)) {
657 s->internal->offset = -ts;
658 s->internal->offset_timebase = st->time_base;
661 if (s->internal->offset != AV_NOPTS_VALUE && !offset) {
662 offset = st->mux_ts_offset =
663 av_rescale_q_rnd(s->internal->offset,
664 s->internal->offset_timebase,
669 if (pkt->dts != AV_NOPTS_VALUE)
671 if (pkt->pts != AV_NOPTS_VALUE)
674 if (s->internal->avoid_negative_ts_use_pts) {
675 if (pkt->pts != AV_NOPTS_VALUE && pkt->pts < 0) {
676 av_log(s, AV_LOG_WARNING, "failed to avoid negative "
677 "pts %s in stream %d.\n"
678 "Try -avoid_negative_ts 1 as a possible workaround.\n",
684 av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0 || s->max_interleave_delta > 0);
685 if (pkt->dts != AV_NOPTS_VALUE && pkt->dts < 0) {
686 av_log(s, AV_LOG_WARNING,
687 "Packets poorly interleaved, failed to avoid negative "
688 "timestamp %s in stream %d.\n"
689 "Try -max_interleave_delta 0 as a possible workaround.\n",
697 did_split = av_packet_split_side_data(pkt);
699 if (!s->internal->header_written && s->oformat->write_header) {
700 ret = s->oformat->write_header(s);
701 if (ret >= 0 && s->pb && s->pb->error < 0)
705 if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
707 s->internal->header_written = 1;
710 if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
711 AVFrame *frame = (AVFrame *)pkt->data;
712 av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
713 ret = s->oformat->write_uncoded_frame(s, pkt->stream_index, &frame, 0);
714 av_frame_free(&frame);
716 ret = s->oformat->write_packet(s, pkt);
719 if (s->pb && ret >= 0) {
720 if (s->flush_packets && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
722 if (s->pb->error < 0)
728 av_packet_merge_side_data(pkt);
733 static int check_packet(AVFormatContext *s, AVPacket *pkt)
738 if (pkt->stream_index < 0 || pkt->stream_index >= s->nb_streams) {
739 av_log(s, AV_LOG_ERROR, "Invalid packet stream index: %d\n",
741 return AVERROR(EINVAL);
744 if (s->streams[pkt->stream_index]->codecpar->codec_type == AVMEDIA_TYPE_ATTACHMENT) {
745 av_log(s, AV_LOG_ERROR, "Received a packet for an attachment stream.\n");
746 return AVERROR(EINVAL);
752 static int prepare_input_packet(AVFormatContext *s, AVPacket *pkt)
756 ret = check_packet(s, pkt);
760 #if !FF_API_COMPUTE_PKT_FIELDS2
761 /* sanitize the timestamps */
762 if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
763 AVStream *st = s->streams[pkt->stream_index];
765 /* when there is no reordering (so dts is equal to pts), but
766 * only one of them is set, set the other as well */
767 if (!st->internal->reorder) {
768 if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE)
770 if (pkt->dts == AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE)
774 /* check that the timestamps are set */
775 if (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE) {
776 av_log(s, AV_LOG_ERROR,
777 "Timestamps are unset in a packet for stream %d\n", st->index);
778 return AVERROR(EINVAL);
781 /* check that the dts are increasing (or at least non-decreasing,
782 * if the format allows it */
783 if (st->cur_dts != AV_NOPTS_VALUE &&
784 ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) && st->cur_dts >= pkt->dts) ||
785 st->cur_dts > pkt->dts)) {
786 av_log(s, AV_LOG_ERROR,
787 "Application provided invalid, non monotonically increasing "
788 "dts to muxer in stream %d: %" PRId64 " >= %" PRId64 "\n",
789 st->index, st->cur_dts, pkt->dts);
790 return AVERROR(EINVAL);
793 if (pkt->pts < pkt->dts) {
794 av_log(s, AV_LOG_ERROR, "pts %" PRId64 " < dts %" PRId64 " in stream %d\n",
795 pkt->pts, pkt->dts, st->index);
796 return AVERROR(EINVAL);
804 int av_write_frame(AVFormatContext *s, AVPacket *pkt)
808 ret = prepare_input_packet(s, pkt);
813 if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
814 ret = s->oformat->write_packet(s, NULL);
815 if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
817 if (ret >= 0 && s->pb && s->pb->error < 0)
824 #if FF_API_COMPUTE_PKT_FIELDS2
825 ret = compute_muxer_pkt_fields(s, s->streams[pkt->stream_index], pkt);
827 if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
831 ret = write_packet(s, pkt);
832 if (ret >= 0 && s->pb && s->pb->error < 0)
836 s->streams[pkt->stream_index]->nb_frames++;
840 #define CHUNK_START 0x1000
842 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
843 int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
846 AVPacketList **next_point, *this_pktl;
847 AVStream *st = s->streams[pkt->stream_index];
848 int chunked = s->max_chunk_size || s->max_chunk_duration;
850 this_pktl = av_mallocz(sizeof(AVPacketList));
852 return AVERROR(ENOMEM);
853 if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
854 av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
855 av_assert0(((AVFrame *)pkt->data)->buf);
856 this_pktl->pkt = *pkt;
858 pkt->side_data = NULL;
859 pkt->side_data_elems = 0;
861 if ((ret = av_packet_ref(&this_pktl->pkt, pkt)) < 0) {
867 if (s->streams[pkt->stream_index]->last_in_packet_buffer) {
868 next_point = &(st->last_in_packet_buffer->next);
870 next_point = &s->internal->packet_buffer;
874 uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
875 st->interleaver_chunk_size += pkt->size;
876 st->interleaver_chunk_duration += pkt->duration;
877 if ( (s->max_chunk_size && st->interleaver_chunk_size > s->max_chunk_size)
878 || (max && st->interleaver_chunk_duration > max)) {
879 st->interleaver_chunk_size = 0;
880 this_pktl->pkt.flags |= CHUNK_START;
881 if (max && st->interleaver_chunk_duration > max) {
882 int64_t syncoffset = (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
883 int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
885 st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
887 st->interleaver_chunk_duration = 0;
891 if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
894 if (compare(s, &s->internal->packet_buffer_end->pkt, pkt)) {
896 && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
897 || !compare(s, &(*next_point)->pkt, pkt)))
898 next_point = &(*next_point)->next;
902 next_point = &(s->internal->packet_buffer_end->next);
905 av_assert1(!*next_point);
907 s->internal->packet_buffer_end = this_pktl;
910 this_pktl->next = *next_point;
912 s->streams[pkt->stream_index]->last_in_packet_buffer =
913 *next_point = this_pktl;
915 av_packet_unref(pkt);
920 static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
923 AVStream *st = s->streams[pkt->stream_index];
924 AVStream *st2 = s->streams[next->stream_index];
925 int comp = av_compare_ts(next->dts, st2->time_base, pkt->dts,
927 if (s->audio_preload && ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) != (st2->codecpar->codec_type == AVMEDIA_TYPE_AUDIO))) {
928 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);
929 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);
931 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
932 -( 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;
935 comp= (ts>ts2) - (ts<ts2);
939 return pkt->stream_index < next->stream_index;
943 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
944 AVPacket *pkt, int flush)
947 int stream_count = 0;
948 int noninterleaved_count = 0;
952 if ((ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts)) < 0)
956 for (i = 0; i < s->nb_streams; i++) {
957 if (s->streams[i]->last_in_packet_buffer) {
959 } else if (s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_ATTACHMENT &&
960 s->streams[i]->codecpar->codec_id != AV_CODEC_ID_VP8 &&
961 s->streams[i]->codecpar->codec_id != AV_CODEC_ID_VP9) {
962 ++noninterleaved_count;
966 if (s->internal->nb_interleaved_streams == stream_count)
969 if (s->max_interleave_delta > 0 &&
970 s->internal->packet_buffer &&
972 s->internal->nb_interleaved_streams == stream_count+noninterleaved_count
974 AVPacket *top_pkt = &s->internal->packet_buffer->pkt;
975 int64_t delta_dts = INT64_MIN;
976 int64_t top_dts = av_rescale_q(top_pkt->dts,
977 s->streams[top_pkt->stream_index]->time_base,
980 for (i = 0; i < s->nb_streams; i++) {
982 const AVPacketList *last = s->streams[i]->last_in_packet_buffer;
987 last_dts = av_rescale_q(last->pkt.dts,
988 s->streams[i]->time_base,
990 delta_dts = FFMAX(delta_dts, last_dts - top_dts);
993 if (delta_dts > s->max_interleave_delta) {
994 av_log(s, AV_LOG_DEBUG,
995 "Delay between the first packet and last packet in the "
996 "muxing queue is %"PRId64" > %"PRId64": forcing output\n",
997 delta_dts, s->max_interleave_delta);
1002 if (stream_count && flush) {
1004 pktl = s->internal->packet_buffer;
1006 st = s->streams[out->stream_index];
1008 s->internal->packet_buffer = pktl->next;
1009 if (!s->internal->packet_buffer)
1010 s->internal->packet_buffer_end = NULL;
1012 if (st->last_in_packet_buffer == pktl)
1013 st->last_in_packet_buffer = NULL;
1018 av_init_packet(out);
1024 * Interleave an AVPacket correctly so it can be muxed.
1025 * @param out the interleaved packet will be output here
1026 * @param in the input packet
1027 * @param flush 1 if no further packets are available as input and all
1028 * remaining packets should be output
1029 * @return 1 if a packet was output, 0 if no packet could be output,
1030 * < 0 if an error occurred
1032 static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
1034 if (s->oformat->interleave_packet) {
1035 int ret = s->oformat->interleave_packet(s, out, in, flush);
1037 av_packet_unref(in);
1040 return ff_interleave_packet_per_dts(s, out, in, flush);
1043 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
1047 ret = prepare_input_packet(s, pkt);
1052 AVStream *st = s->streams[pkt->stream_index];
1054 if (s->oformat->check_bitstream) {
1055 if (!st->internal->bitstream_checked) {
1056 if ((ret = s->oformat->check_bitstream(s, pkt)) < 0)
1059 st->internal->bitstream_checked = 1;
1063 av_apply_bitstream_filters(st->internal->avctx, pkt, st->internal->bsfc);
1064 if (pkt->size == 0 && pkt->side_data_elems == 0)
1066 if (!st->codecpar->extradata && st->internal->avctx->extradata) {
1067 int eret = ff_alloc_extradata(st->codecpar, st->internal->avctx->extradata_size);
1069 return AVERROR(ENOMEM);
1070 st->codecpar->extradata_size = st->internal->avctx->extradata_size;
1071 memcpy(st->codecpar->extradata, st->internal->avctx->extradata, st->internal->avctx->extradata_size);
1074 if (s->debug & FF_FDEBUG_TS)
1075 av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
1076 pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
1078 #if FF_API_COMPUTE_PKT_FIELDS2
1079 if ((ret = compute_muxer_pkt_fields(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
1083 if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
1084 ret = AVERROR(EINVAL);
1088 av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame FLUSH\n");
1094 int ret = interleave_packet(s, &opkt, pkt, flush);
1096 memset(pkt, 0, sizeof(*pkt));
1097 av_init_packet(pkt);
1100 if (ret <= 0) //FIXME cleanup needed for ret<0 ?
1103 ret = write_packet(s, &opkt);
1105 s->streams[opkt.stream_index]->nb_frames++;
1107 av_packet_unref(&opkt);
1111 if(s->pb && s->pb->error)
1112 return s->pb->error;
1115 av_packet_unref(pkt);
1119 int av_write_trailer(AVFormatContext *s)
1125 ret = interleave_packet(s, &pkt, NULL, 1);
1131 ret = write_packet(s, &pkt);
1133 s->streams[pkt.stream_index]->nb_frames++;
1135 av_packet_unref(&pkt);
1139 if(s->pb && s->pb->error)
1143 if (!s->internal->header_written && s->oformat->write_header) {
1144 ret = s->oformat->write_header(s);
1145 if (ret >= 0 && s->pb && s->pb->error < 0)
1149 if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
1151 s->internal->header_written = 1;
1155 if ((s->internal->header_written || !s->oformat->write_header) && s->oformat->write_trailer)
1157 ret = s->oformat->write_trailer(s);
1159 s->oformat->write_trailer(s);
1162 if (s->oformat->deinit)
1163 s->oformat->deinit(s);
1168 ret = s->pb ? s->pb->error : 0;
1169 for (i = 0; i < s->nb_streams; i++) {
1170 av_freep(&s->streams[i]->priv_data);
1171 av_freep(&s->streams[i]->index_entries);
1173 if (s->oformat->priv_class)
1174 av_opt_free(s->priv_data);
1175 av_freep(&s->priv_data);
1179 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
1180 int64_t *dts, int64_t *wall)
1182 if (!s->oformat || !s->oformat->get_output_timestamp)
1183 return AVERROR(ENOSYS);
1184 s->oformat->get_output_timestamp(s, stream, dts, wall);
1188 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
1189 AVFormatContext *src, int interleave)
1195 local_pkt.stream_index = dst_stream;
1196 if (pkt->pts != AV_NOPTS_VALUE)
1197 local_pkt.pts = av_rescale_q(pkt->pts,
1198 src->streams[pkt->stream_index]->time_base,
1199 dst->streams[dst_stream]->time_base);
1200 if (pkt->dts != AV_NOPTS_VALUE)
1201 local_pkt.dts = av_rescale_q(pkt->dts,
1202 src->streams[pkt->stream_index]->time_base,
1203 dst->streams[dst_stream]->time_base);
1205 local_pkt.duration = av_rescale_q(pkt->duration,
1206 src->streams[pkt->stream_index]->time_base,
1207 dst->streams[dst_stream]->time_base);
1209 if (interleave) ret = av_interleaved_write_frame(dst, &local_pkt);
1210 else ret = av_write_frame(dst, &local_pkt);
1211 pkt->buf = local_pkt.buf;
1212 pkt->side_data = local_pkt.side_data;
1213 pkt->side_data_elems = local_pkt.side_data_elems;
1217 static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index,
1218 AVFrame *frame, int interleaved)
1220 AVPacket pkt, *pktp;
1222 av_assert0(s->oformat);
1223 if (!s->oformat->write_uncoded_frame)
1224 return AVERROR(ENOSYS);
1230 av_init_packet(&pkt);
1231 pkt.data = (void *)frame;
1232 pkt.size = UNCODED_FRAME_PACKET_SIZE;
1234 pkt.dts = frame->pts;
1235 pkt.duration = av_frame_get_pkt_duration(frame);
1236 pkt.stream_index = stream_index;
1237 pkt.flags |= AV_PKT_FLAG_UNCODED_FRAME;
1240 return interleaved ? av_interleaved_write_frame(s, pktp) :
1241 av_write_frame(s, pktp);
1244 int av_write_uncoded_frame(AVFormatContext *s, int stream_index,
1247 return av_write_uncoded_frame_internal(s, stream_index, frame, 0);
1250 int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index,
1253 return av_write_uncoded_frame_internal(s, stream_index, frame, 1);
1256 int av_write_uncoded_frame_query(AVFormatContext *s, int stream_index)
1258 av_assert0(s->oformat);
1259 if (!s->oformat->write_uncoded_frame)
1260 return AVERROR(ENOSYS);
1261 return s->oformat->write_uncoded_frame(s, stream_index, NULL,
1262 AV_WRITE_UNCODED_FRAME_QUERY);