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"
52 * muxing functions for use within libavformat
55 /* fraction handling */
58 * f = val + (num / den) + 0.5.
60 * 'num' is normalized so that it is such as 0 <= num < den.
62 * @param f fractional number
63 * @param val integer value
64 * @param num must be >= 0
65 * @param den must be >= 1
67 static void frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den)
80 * Fractional addition to f: f = f + (incr / f->den).
82 * @param f fractional number
83 * @param incr increment, can be positive or negative
85 static void frac_add(AVFrac *f, int64_t incr)
98 } else if (num >= den) {
105 AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precission)
110 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
111 q = (AVRational){1, st->codec->sample_rate};
113 q = st->codec->time_base;
115 for (j=2; j<14; j+= 1+(j>2))
116 while (q.den / q.num < min_precission && q.num % j == 0)
118 while (q.den / q.num < min_precission && q.den < (1<<24))
124 int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat,
125 const char *format, const char *filename)
127 AVFormatContext *s = avformat_alloc_context();
136 oformat = av_guess_format(format, NULL, NULL);
138 av_log(s, AV_LOG_ERROR, "Requested output format '%s' is not a suitable output format\n", format);
139 ret = AVERROR(EINVAL);
143 oformat = av_guess_format(NULL, filename, NULL);
145 ret = AVERROR(EINVAL);
146 av_log(s, AV_LOG_ERROR, "Unable to find a suitable output format for '%s'\n",
153 s->oformat = oformat;
154 if (s->oformat->priv_data_size > 0) {
155 s->priv_data = av_mallocz(s->oformat->priv_data_size);
158 if (s->oformat->priv_class) {
159 *(const AVClass**)s->priv_data= s->oformat->priv_class;
160 av_opt_set_defaults(s->priv_data);
166 av_strlcpy(s->filename, filename, sizeof(s->filename));
170 av_log(s, AV_LOG_ERROR, "Out of memory\n");
171 ret = AVERROR(ENOMEM);
173 avformat_free_context(s);
177 #if FF_API_ALLOC_OUTPUT_CONTEXT
178 AVFormatContext *avformat_alloc_output_context(const char *format,
179 AVOutputFormat *oformat, const char *filename)
181 AVFormatContext *avctx;
182 int ret = avformat_alloc_output_context2(&avctx, oformat, format, filename);
183 return ret < 0 ? NULL : avctx;
187 static int validate_codec_tag(AVFormatContext *s, AVStream *st)
189 const AVCodecTag *avctag;
191 enum AVCodecID id = AV_CODEC_ID_NONE;
192 unsigned int tag = 0;
195 * Check that tag + id is in the table
196 * If neither is in the table -> OK
197 * If tag is in the table with another id -> FAIL
198 * If id is in the table with another tag -> FAIL unless strict < normal
200 for (n = 0; s->oformat->codec_tag[n]; n++) {
201 avctag = s->oformat->codec_tag[n];
202 while (avctag->id != AV_CODEC_ID_NONE) {
203 if (avpriv_toupper4(avctag->tag) == avpriv_toupper4(st->codec->codec_tag)) {
205 if (id == st->codec->codec_id)
208 if (avctag->id == st->codec->codec_id)
213 if (id != AV_CODEC_ID_NONE)
215 if (tag && (st->codec->strict_std_compliance >= FF_COMPLIANCE_NORMAL))
221 static int init_muxer(AVFormatContext *s, AVDictionary **options)
225 AVDictionary *tmp = NULL;
226 AVCodecContext *codec = NULL;
227 AVOutputFormat *of = s->oformat;
230 av_dict_copy(&tmp, *options, 0);
232 if ((ret = av_opt_set_dict(s, &tmp)) < 0)
234 if (s->priv_data && s->oformat->priv_class && *(const AVClass**)s->priv_data==s->oformat->priv_class &&
235 (ret = av_opt_set_dict(s->priv_data, &tmp)) < 0)
238 // some sanity checks
239 if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) {
240 av_log(s, AV_LOG_ERROR, "no streams\n");
241 ret = AVERROR(EINVAL);
245 for (i = 0; i < s->nb_streams; i++) {
249 switch (codec->codec_type) {
250 case AVMEDIA_TYPE_AUDIO:
251 if (codec->sample_rate <= 0) {
252 av_log(s, AV_LOG_ERROR, "sample rate not set\n");
253 ret = AVERROR(EINVAL);
256 if (!codec->block_align)
257 codec->block_align = codec->channels *
258 av_get_bits_per_sample(codec->codec_id) >> 3;
260 case AVMEDIA_TYPE_VIDEO:
261 if (codec->time_base.num <= 0 ||
262 codec->time_base.den <= 0) { //FIXME audio too?
263 av_log(s, AV_LOG_ERROR, "time base not set\n");
264 ret = AVERROR(EINVAL);
268 if ((codec->width <= 0 || codec->height <= 0) &&
269 !(of->flags & AVFMT_NODIMENSIONS)) {
270 av_log(s, AV_LOG_ERROR, "dimensions not set\n");
271 ret = AVERROR(EINVAL);
274 if (av_cmp_q(st->sample_aspect_ratio, codec->sample_aspect_ratio)
275 && FFABS(av_q2d(st->sample_aspect_ratio) - av_q2d(codec->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
277 if (st->sample_aspect_ratio.num != 0 &&
278 st->sample_aspect_ratio.den != 0 &&
279 codec->sample_aspect_ratio.den != 0 &&
280 codec->sample_aspect_ratio.den != 0) {
281 av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
282 "(%d/%d) and encoder layer (%d/%d)\n",
283 st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
284 codec->sample_aspect_ratio.num,
285 codec->sample_aspect_ratio.den);
286 ret = AVERROR(EINVAL);
294 if ( codec->codec_tag
295 && codec->codec_id == AV_CODEC_ID_RAWVIDEO
296 && ( av_codec_get_tag(of->codec_tag, codec->codec_id) == 0
297 || av_codec_get_tag(of->codec_tag, codec->codec_id) == MKTAG('r', 'a', 'w', ' '))
298 && !validate_codec_tag(s, st)) {
299 // the current rawvideo encoding system ends up setting
300 // the wrong codec_tag for avi/mov, we override it here
301 codec->codec_tag = 0;
303 if (codec->codec_tag) {
304 if (!validate_codec_tag(s, st)) {
305 char tagbuf[32], tagbuf2[32];
306 av_get_codec_tag_string(tagbuf, sizeof(tagbuf), codec->codec_tag);
307 av_get_codec_tag_string(tagbuf2, sizeof(tagbuf2), av_codec_get_tag(s->oformat->codec_tag, codec->codec_id));
308 av_log(s, AV_LOG_ERROR,
309 "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
310 tagbuf, codec->codec_tag, codec->codec_id, tagbuf2);
311 ret = AVERROR_INVALIDDATA;
315 codec->codec_tag = av_codec_get_tag(of->codec_tag, codec->codec_id);
318 if (of->flags & AVFMT_GLOBALHEADER &&
319 !(codec->flags & CODEC_FLAG_GLOBAL_HEADER))
320 av_log(s, AV_LOG_WARNING,
321 "Codec for stream %d does not use global headers "
322 "but container format requires global headers\n", i);
325 if (!s->priv_data && of->priv_data_size > 0) {
326 s->priv_data = av_mallocz(of->priv_data_size);
328 ret = AVERROR(ENOMEM);
331 if (of->priv_class) {
332 *(const AVClass **)s->priv_data = of->priv_class;
333 av_opt_set_defaults(s->priv_data);
334 if ((ret = av_opt_set_dict(s->priv_data, &tmp)) < 0)
339 /* set muxer identification string */
340 if (s->nb_streams && !(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) {
341 av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
345 av_dict_free(options);
356 static int init_pts(AVFormatContext *s)
361 /* init PTS generation */
362 for (i = 0; i < s->nb_streams; i++) {
363 int64_t den = AV_NOPTS_VALUE;
366 switch (st->codec->codec_type) {
367 case AVMEDIA_TYPE_AUDIO:
368 den = (int64_t)st->time_base.num * st->codec->sample_rate;
370 case AVMEDIA_TYPE_VIDEO:
371 den = (int64_t)st->time_base.num * st->codec->time_base.den;
376 if (den != AV_NOPTS_VALUE) {
378 return AVERROR_INVALIDDATA;
380 frac_init(&st->pts, 0, 0, den);
387 int avformat_write_header(AVFormatContext *s, AVDictionary **options)
391 if (ret = init_muxer(s, options))
394 if (s->oformat->write_header) {
395 ret = s->oformat->write_header(s);
396 if (ret >= 0 && s->pb && s->pb->error < 0)
402 if ((ret = init_pts(s)) < 0)
405 if (s->avoid_negative_ts < 0) {
406 if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
407 s->avoid_negative_ts = 0;
409 s->avoid_negative_ts = 1;
415 //FIXME merge with compute_pkt_fields
416 static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt)
418 int delay = FFMAX(st->codec->has_b_frames, st->codec->max_b_frames > 0);
419 int num, den, frame_size, i;
421 av_dlog(s, "compute_pkt_fields2: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
422 av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
425 if (pkt->duration == 0) {
426 ff_compute_frame_duration(&num, &den, st, NULL, pkt);
428 pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
432 if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
435 //XXX/FIXME this is a temporary hack until all encoders output pts
436 if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
439 av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
443 // pkt->pts= st->cur_dts;
444 pkt->pts = st->pts.val;
447 //calculate dts from pts
448 if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
449 st->pts_buffer[0] = pkt->pts;
450 for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
451 st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
452 for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
453 FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
455 pkt->dts = st->pts_buffer[0];
458 if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
459 ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
460 st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
461 av_log(s, AV_LOG_ERROR,
462 "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
463 st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
464 return AVERROR(EINVAL);
466 if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
467 av_log(s, AV_LOG_ERROR, "pts (%s) < dts (%s) in stream %d\n",
468 av_ts2str(pkt->pts), av_ts2str(pkt->dts), st->index);
469 return AVERROR(EINVAL);
472 av_dlog(s, "av_write_frame: pts2:%s dts2:%s\n",
473 av_ts2str(pkt->pts), av_ts2str(pkt->dts));
474 st->cur_dts = pkt->dts;
475 st->pts.val = pkt->dts;
478 switch (st->codec->codec_type) {
479 case AVMEDIA_TYPE_AUDIO:
480 frame_size = ff_get_audio_frame_size(st->codec, pkt->size, 1);
482 /* HACK/FIXME, we skip the initial 0 size packets as they are most
483 * likely equal to the encoder delay, but it would be better if we
484 * had the real timestamps from the encoder */
485 if (frame_size >= 0 && (pkt->size || st->pts.num != st->pts.den >> 1 || st->pts.val)) {
486 frac_add(&st->pts, (int64_t)st->time_base.den * frame_size);
489 case AVMEDIA_TYPE_VIDEO:
490 frac_add(&st->pts, (int64_t)st->time_base.den * st->codec->time_base.num);
499 * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
502 * FIXME: this function should NEVER get undefined pts/dts beside when the
503 * AVFMT_NOTIMESTAMPS is set.
504 * Those additional safety checks should be dropped once the correct checks
505 * are set in the callers.
507 static int write_packet(AVFormatContext *s, AVPacket *pkt)
511 if (s->avoid_negative_ts > 0) {
512 AVStream *st = s->streams[pkt->stream_index];
513 int64_t offset = st->mux_ts_offset;
515 if (pkt->dts < 0 && pkt->dts != AV_NOPTS_VALUE && !s->offset) {
516 s->offset = -pkt->dts;
517 s->offset_timebase = st->time_base;
520 if (s->offset && !offset) {
521 offset = st->mux_ts_offset =
522 av_rescale_q_rnd(s->offset,
528 if (pkt->dts != AV_NOPTS_VALUE)
530 if (pkt->pts != AV_NOPTS_VALUE)
533 av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0);
536 did_split = av_packet_split_side_data(pkt);
537 ret = s->oformat->write_packet(s, pkt);
539 if (s->flush_packets && s->pb && ret >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
543 av_packet_merge_side_data(pkt);
548 int av_write_frame(AVFormatContext *s, AVPacket *pkt)
553 if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
554 ret = s->oformat->write_packet(s, NULL);
555 if (s->flush_packets && s->pb && s->pb->error >= 0)
557 if (ret >= 0 && s->pb && s->pb->error < 0)
564 ret = compute_pkt_fields2(s, s->streams[pkt->stream_index], pkt);
566 if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
569 ret = write_packet(s, pkt);
570 if (ret >= 0 && s->pb && s->pb->error < 0)
574 s->streams[pkt->stream_index]->nb_frames++;
578 #define CHUNK_START 0x1000
580 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
581 int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
583 AVPacketList **next_point, *this_pktl;
584 AVStream *st = s->streams[pkt->stream_index];
585 int chunked = s->max_chunk_size || s->max_chunk_duration;
587 this_pktl = av_mallocz(sizeof(AVPacketList));
589 return AVERROR(ENOMEM);
590 this_pktl->pkt = *pkt;
591 #if FF_API_DESTRUCT_PACKET
592 FF_DISABLE_DEPRECATION_WARNINGS
593 pkt->destruct = NULL; // do not free original but only the copy
594 FF_ENABLE_DEPRECATION_WARNINGS
597 av_dup_packet(&this_pktl->pkt); // duplicate the packet if it uses non-allocated memory
598 av_copy_packet_side_data(&this_pktl->pkt, &this_pktl->pkt); // copy side data
600 if (s->streams[pkt->stream_index]->last_in_packet_buffer) {
601 next_point = &(st->last_in_packet_buffer->next);
603 next_point = &s->packet_buffer;
607 uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
608 st->interleaver_chunk_size += pkt->size;
609 st->interleaver_chunk_duration += pkt->duration;
610 if ( (s->max_chunk_size && st->interleaver_chunk_size > s->max_chunk_size)
611 || (max && st->interleaver_chunk_duration > max)) {
612 st->interleaver_chunk_size = 0;
613 this_pktl->pkt.flags |= CHUNK_START;
614 if (max && st->interleaver_chunk_duration > max) {
615 int64_t syncoffset = (st->codec->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
616 int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
618 st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
620 st->interleaver_chunk_duration = 0;
624 if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
627 if (compare(s, &s->packet_buffer_end->pkt, pkt)) {
629 && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
630 || !compare(s, &(*next_point)->pkt, pkt)))
631 next_point = &(*next_point)->next;
635 next_point = &(s->packet_buffer_end->next);
638 av_assert1(!*next_point);
640 s->packet_buffer_end = this_pktl;
643 this_pktl->next = *next_point;
645 s->streams[pkt->stream_index]->last_in_packet_buffer =
646 *next_point = this_pktl;
650 static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
653 AVStream *st = s->streams[pkt->stream_index];
654 AVStream *st2 = s->streams[next->stream_index];
655 int comp = av_compare_ts(next->dts, st2->time_base, pkt->dts,
657 if (s->audio_preload && ((st->codec->codec_type == AVMEDIA_TYPE_AUDIO) != (st2->codec->codec_type == AVMEDIA_TYPE_AUDIO))) {
658 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);
659 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);
661 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
662 -( 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;
665 comp= (ts>ts2) - (ts<ts2);
669 return pkt->stream_index < next->stream_index;
673 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
674 AVPacket *pkt, int flush)
677 int stream_count = 0, noninterleaved_count = 0;
678 int64_t delta_dts_max = 0;
682 ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts);
687 for (i = 0; i < s->nb_streams; i++) {
688 if (s->streams[i]->last_in_packet_buffer) {
690 } else if (s->streams[i]->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
691 ++noninterleaved_count;
695 if (s->nb_streams == stream_count) {
698 for (i=0; i < s->nb_streams; i++) {
699 if (s->streams[i]->last_in_packet_buffer) {
701 av_rescale_q(s->streams[i]->last_in_packet_buffer->pkt.dts,
702 s->streams[i]->time_base,
704 av_rescale_q(s->packet_buffer->pkt.dts,
705 s->streams[s->packet_buffer->pkt.stream_index]->time_base,
707 delta_dts_max= FFMAX(delta_dts_max, delta_dts);
710 if (s->nb_streams == stream_count+noninterleaved_count &&
711 delta_dts_max > 20*AV_TIME_BASE) {
712 av_log(s, AV_LOG_DEBUG, "flushing with %d noninterleaved\n", noninterleaved_count);
716 if (stream_count && flush) {
718 pktl = s->packet_buffer;
720 st = s->streams[out->stream_index];
722 s->packet_buffer = pktl->next;
723 if (!s->packet_buffer)
724 s->packet_buffer_end = NULL;
726 if (st->last_in_packet_buffer == pktl)
727 st->last_in_packet_buffer = NULL;
738 * Interleave an AVPacket correctly so it can be muxed.
739 * @param out the interleaved packet will be output here
740 * @param in the input packet
741 * @param flush 1 if no further packets are available as input and all
742 * remaining packets should be output
743 * @return 1 if a packet was output, 0 if no packet could be output,
744 * < 0 if an error occurred
746 static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
748 if (s->oformat->interleave_packet) {
749 int ret = s->oformat->interleave_packet(s, out, in, flush);
754 return ff_interleave_packet_per_dts(s, out, in, flush);
757 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
762 AVStream *st = s->streams[pkt->stream_index];
764 //FIXME/XXX/HACK drop zero sized packets
765 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->size == 0)
768 av_dlog(s, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
769 pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
770 if ((ret = compute_pkt_fields2(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
773 if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
774 return AVERROR(EINVAL);
776 av_dlog(s, "av_interleaved_write_frame FLUSH\n");
782 int ret = interleave_packet(s, &opkt, pkt, flush);
783 if (ret <= 0) //FIXME cleanup needed for ret<0 ?
786 ret = write_packet(s, &opkt);
788 s->streams[opkt.stream_index]->nb_frames++;
790 av_free_packet(&opkt);
795 if(s->pb && s->pb->error)
800 int av_write_trailer(AVFormatContext *s)
806 ret = interleave_packet(s, &pkt, NULL, 1);
807 if (ret < 0) //FIXME cleanup needed for ret<0 ?
812 ret = write_packet(s, &pkt);
814 s->streams[pkt.stream_index]->nb_frames++;
816 av_free_packet(&pkt);
820 if(s->pb && s->pb->error)
824 if (s->oformat->write_trailer)
825 ret = s->oformat->write_trailer(s);
831 ret = s->pb ? s->pb->error : 0;
832 for (i = 0; i < s->nb_streams; i++) {
833 av_freep(&s->streams[i]->priv_data);
834 av_freep(&s->streams[i]->index_entries);
836 if (s->oformat->priv_class)
837 av_opt_free(s->priv_data);
838 av_freep(&s->priv_data);
842 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
843 int64_t *dts, int64_t *wall)
845 if (!s->oformat || !s->oformat->get_output_timestamp)
846 return AVERROR(ENOSYS);
847 s->oformat->get_output_timestamp(s, stream, dts, wall);
851 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
852 AVFormatContext *src)
857 local_pkt.stream_index = dst_stream;
858 if (pkt->pts != AV_NOPTS_VALUE)
859 local_pkt.pts = av_rescale_q(pkt->pts,
860 src->streams[pkt->stream_index]->time_base,
861 dst->streams[dst_stream]->time_base);
862 if (pkt->dts != AV_NOPTS_VALUE)
863 local_pkt.dts = av_rescale_q(pkt->dts,
864 src->streams[pkt->stream_index]->time_base,
865 dst->streams[dst_stream]->time_base);
867 local_pkt.duration = av_rescale_q(pkt->duration,
868 src->streams[pkt->stream_index]->time_base,
869 dst->streams[dst_stream]->time_base);
870 return av_write_frame(dst, &local_pkt);