FFmpeg  1.2.12
mux.c
Go to the documentation of this file.
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 /* #define DEBUG */
23 
24 #include "avformat.h"
25 #include "avio_internal.h"
26 #include "internal.h"
27 #include "libavcodec/internal.h"
28 #include "libavcodec/bytestream.h"
29 #include "libavutil/opt.h"
30 #include "libavutil/dict.h"
31 #include "libavutil/pixdesc.h"
32 #include "libavutil/timestamp.h"
33 #include "metadata.h"
34 #include "id3v2.h"
35 #include "libavutil/avassert.h"
36 #include "libavutil/avstring.h"
37 #include "libavutil/mathematics.h"
38 #include "libavutil/parseutils.h"
39 #include "libavutil/time.h"
40 #include "riff.h"
41 #include "audiointerleave.h"
42 #include "url.h"
43 #include <stdarg.h>
44 #if CONFIG_NETWORK
45 #include "network.h"
46 #endif
47 
48 #undef NDEBUG
49 #include <assert.h>
50 
56 /* fraction handling */
57 
68 static void frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den)
69 {
70  num += (den >> 1);
71  if (num >= den) {
72  val += num / den;
73  num = num % den;
74  }
75  f->val = val;
76  f->num = num;
77  f->den = den;
78 }
79 
86 static void frac_add(AVFrac *f, int64_t incr)
87 {
88  int64_t num, den;
89 
90  num = f->num + incr;
91  den = f->den;
92  if (num < 0) {
93  f->val += num / den;
94  num = num % den;
95  if (num < 0) {
96  num += den;
97  f->val--;
98  }
99  } else if (num >= den) {
100  f->val += num / den;
101  num = num % den;
102  }
103  f->num = num;
104 }
105 
107 {
108  AVRational q;
109  int j;
110 
111  if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
112  q = (AVRational){1, st->codec->sample_rate};
113  } else {
114  q = st->codec->time_base;
115  }
116  for (j=2; j<14; j+= 1+(j>2))
117  while (q.den / q.num < min_precission && q.num % j == 0)
118  q.num /= j;
119  while (q.den / q.num < min_precission && q.den < (1<<24))
120  q.den <<= 1;
121 
122  return q;
123 }
124 
126  const char *format, const char *filename)
127 {
129  int ret = 0;
130 
131  *avctx = NULL;
132  if (!s)
133  goto nomem;
134 
135  if (!oformat) {
136  if (format) {
137  oformat = av_guess_format(format, NULL, NULL);
138  if (!oformat) {
139  av_log(s, AV_LOG_ERROR, "Requested output format '%s' is not a suitable output format\n", format);
140  ret = AVERROR(EINVAL);
141  goto error;
142  }
143  } else {
144  oformat = av_guess_format(NULL, filename, NULL);
145  if (!oformat) {
146  ret = AVERROR(EINVAL);
147  av_log(s, AV_LOG_ERROR, "Unable to find a suitable output format for '%s'\n",
148  filename);
149  goto error;
150  }
151  }
152  }
153 
154  s->oformat = oformat;
155  if (s->oformat->priv_data_size > 0) {
157  if (!s->priv_data)
158  goto nomem;
159  if (s->oformat->priv_class) {
160  *(const AVClass**)s->priv_data= s->oformat->priv_class;
162  }
163  } else
164  s->priv_data = NULL;
165 
166  if (filename)
167  av_strlcpy(s->filename, filename, sizeof(s->filename));
168  *avctx = s;
169  return 0;
170 nomem:
171  av_log(s, AV_LOG_ERROR, "Out of memory\n");
172  ret = AVERROR(ENOMEM);
173 error:
175  return ret;
176 }
177 
178 #if FF_API_ALLOC_OUTPUT_CONTEXT
179 AVFormatContext *avformat_alloc_output_context(const char *format,
180  AVOutputFormat *oformat, const char *filename)
181 {
182  AVFormatContext *avctx;
183  int ret = avformat_alloc_output_context2(&avctx, oformat, format, filename);
184  return ret < 0 ? NULL : avctx;
185 }
186 #endif
187 
189 {
190  const AVCodecTag *avctag;
191  int n;
192  enum AVCodecID id = AV_CODEC_ID_NONE;
193  unsigned int tag = 0;
194 
201  for (n = 0; s->oformat->codec_tag[n]; n++) {
202  avctag = s->oformat->codec_tag[n];
203  while (avctag->id != AV_CODEC_ID_NONE) {
204  if (avpriv_toupper4(avctag->tag) == avpriv_toupper4(st->codec->codec_tag)) {
205  id = avctag->id;
206  if (id == st->codec->codec_id)
207  return 1;
208  }
209  if (avctag->id == st->codec->codec_id)
210  tag = avctag->tag;
211  avctag++;
212  }
213  }
214  if (id != AV_CODEC_ID_NONE)
215  return 0;
216  if (tag && (st->codec->strict_std_compliance >= FF_COMPLIANCE_NORMAL))
217  return 0;
218  return 1;
219 }
220 
221 
223 {
224  int ret = 0, i;
225  AVStream *st;
226  AVDictionary *tmp = NULL;
227  AVCodecContext *codec = NULL;
228  AVOutputFormat *of = s->oformat;
229 
230  if (options)
231  av_dict_copy(&tmp, *options, 0);
232 
233  if ((ret = av_opt_set_dict(s, &tmp)) < 0)
234  goto fail;
235  if (s->priv_data && s->oformat->priv_class && *(const AVClass**)s->priv_data==s->oformat->priv_class &&
236  (ret = av_opt_set_dict(s->priv_data, &tmp)) < 0)
237  goto fail;
238 
239  // some sanity checks
240  if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) {
241  av_log(s, AV_LOG_ERROR, "no streams\n");
242  ret = AVERROR(EINVAL);
243  goto fail;
244  }
245 
246  for (i = 0; i < s->nb_streams; i++) {
247  st = s->streams[i];
248  codec = st->codec;
249 
250  switch (codec->codec_type) {
251  case AVMEDIA_TYPE_AUDIO:
252  if (codec->sample_rate <= 0) {
253  av_log(s, AV_LOG_ERROR, "sample rate not set\n");
254  ret = AVERROR(EINVAL);
255  goto fail;
256  }
257  if (!codec->block_align)
258  codec->block_align = codec->channels *
259  av_get_bits_per_sample(codec->codec_id) >> 3;
260  break;
261  case AVMEDIA_TYPE_VIDEO:
262  if (codec->time_base.num <= 0 ||
263  codec->time_base.den <= 0) { //FIXME audio too?
264  av_log(s, AV_LOG_ERROR, "time base not set\n");
265  ret = AVERROR(EINVAL);
266  goto fail;
267  }
268 
269  if ((codec->width <= 0 || codec->height <= 0) &&
270  !(of->flags & AVFMT_NODIMENSIONS)) {
271  av_log(s, AV_LOG_ERROR, "dimensions not set\n");
272  ret = AVERROR(EINVAL);
273  goto fail;
274  }
277  ) {
278  av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
279  "(%d/%d) and encoder layer (%d/%d)\n",
281  codec->sample_aspect_ratio.num,
282  codec->sample_aspect_ratio.den);
283  ret = AVERROR(EINVAL);
284  goto fail;
285  }
286  break;
287  }
288 
289  if (of->codec_tag) {
290  if ( codec->codec_tag
291  && codec->codec_id == AV_CODEC_ID_RAWVIDEO
292  && ( av_codec_get_tag(of->codec_tag, codec->codec_id) == 0
293  || av_codec_get_tag(of->codec_tag, codec->codec_id) == MKTAG('r', 'a', 'w', ' '))
294  && !validate_codec_tag(s, st)) {
295  // the current rawvideo encoding system ends up setting
296  // the wrong codec_tag for avi/mov, we override it here
297  codec->codec_tag = 0;
298  }
299  if (codec->codec_tag) {
300  if (!validate_codec_tag(s, st)) {
301  char tagbuf[32], cortag[32];
302  av_get_codec_tag_string(tagbuf, sizeof(tagbuf), codec->codec_tag);
303  av_get_codec_tag_string(cortag, sizeof(cortag), av_codec_get_tag(s->oformat->codec_tag, codec->codec_id));
304  av_log(s, AV_LOG_ERROR,
305  "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
306  tagbuf, codec->codec_tag, codec->codec_id, cortag);
307  ret = AVERROR_INVALIDDATA;
308  goto fail;
309  }
310  } else
311  codec->codec_tag = av_codec_get_tag(of->codec_tag, codec->codec_id);
312  }
313 
314  if (of->flags & AVFMT_GLOBALHEADER &&
315  !(codec->flags & CODEC_FLAG_GLOBAL_HEADER))
317  "Codec for stream %d does not use global headers "
318  "but container format requires global headers\n", i);
319  }
320 
321  if (!s->priv_data && of->priv_data_size > 0) {
323  if (!s->priv_data) {
324  ret = AVERROR(ENOMEM);
325  goto fail;
326  }
327  if (of->priv_class) {
328  *(const AVClass **)s->priv_data = of->priv_class;
330  if ((ret = av_opt_set_dict(s->priv_data, &tmp)) < 0)
331  goto fail;
332  }
333  }
334 
335  /* set muxer identification string */
336  if (s->nb_streams && !(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) {
337  av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
338  }
339 
340  if (options) {
341  av_dict_free(options);
342  *options = tmp;
343  }
344 
345  return 0;
346 
347 fail:
348  av_dict_free(&tmp);
349  return ret;
350 }
351 
352 static int init_pts(AVFormatContext *s)
353 {
354  int i;
355  AVStream *st;
356 
357  /* init PTS generation */
358  for (i = 0; i < s->nb_streams; i++) {
359  int64_t den = AV_NOPTS_VALUE;
360  st = s->streams[i];
361 
362  switch (st->codec->codec_type) {
363  case AVMEDIA_TYPE_AUDIO:
364  den = (int64_t)st->time_base.num * st->codec->sample_rate;
365  break;
366  case AVMEDIA_TYPE_VIDEO:
367  den = (int64_t)st->time_base.num * st->codec->time_base.den;
368  break;
369  default:
370  break;
371  }
372  if (den != AV_NOPTS_VALUE) {
373  if (den <= 0)
374  return AVERROR_INVALIDDATA;
375 
376  frac_init(&st->pts, 0, 0, den);
377  }
378  }
379 
380  return 0;
381 }
382 
384 {
385  int ret = 0;
386 
387  if (ret = init_muxer(s, options))
388  return ret;
389 
390  if (s->oformat->write_header) {
391  ret = s->oformat->write_header(s);
392  if (ret >= 0 && s->pb && s->pb->error < 0)
393  ret = s->pb->error;
394  if (ret < 0)
395  return ret;
396  }
397 
398  if ((ret = init_pts(s)) < 0)
399  return ret;
400 
401  return 0;
402 }
403 
404 //FIXME merge with compute_pkt_fields
406 {
407  int delay = FFMAX(st->codec->has_b_frames, st->codec->max_b_frames > 0);
408  int num, den, frame_size, i;
409 
410  av_dlog(s, "compute_pkt_fields2: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
411  av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
412 
413  if (pkt->duration < 0 && st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) {
414  av_log(s, AV_LOG_WARNING, "Packet with invalid duration %d in stream %d\n",
415  pkt->duration, pkt->stream_index);
416  pkt->duration = 0;
417  }
418 
419  /* duration field */
420  if (pkt->duration == 0) {
421  ff_compute_frame_duration(&num, &den, st, NULL, pkt);
422  if (den && num) {
423  pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
424  }
425  }
426 
427  if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
428  pkt->pts = pkt->dts;
429 
430  //XXX/FIXME this is a temporary hack until all encoders output pts
431  if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
432  static int warned;
433  if (!warned) {
434  av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
435  warned = 1;
436  }
437  pkt->dts =
438 // pkt->pts= st->cur_dts;
439  pkt->pts = st->pts.val;
440  }
441 
442  //calculate dts from pts
443  if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
444  st->pts_buffer[0] = pkt->pts;
445  for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
446  st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
447  for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
448  FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
449 
450  pkt->dts = st->pts_buffer[0];
451  }
452 
453  if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
454  ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
455  st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
456  av_log(s, AV_LOG_ERROR,
457  "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
458  st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
459  return AVERROR(EINVAL);
460  }
461  if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
462  av_log(s, AV_LOG_ERROR, "pts (%s) < dts (%s) in stream %d\n",
463  av_ts2str(pkt->pts), av_ts2str(pkt->dts), st->index);
464  return AVERROR(EINVAL);
465  }
466 
467  av_dlog(s, "av_write_frame: pts2:%s dts2:%s\n",
468  av_ts2str(pkt->pts), av_ts2str(pkt->dts));
469  st->cur_dts = pkt->dts;
470  st->pts.val = pkt->dts;
471 
472  /* update pts */
473  switch (st->codec->codec_type) {
474  case AVMEDIA_TYPE_AUDIO:
475  frame_size = ff_get_audio_frame_size(st->codec, pkt->size, 1);
476 
477  /* HACK/FIXME, we skip the initial 0 size packets as they are most
478  * likely equal to the encoder delay, but it would be better if we
479  * had the real timestamps from the encoder */
480  if (frame_size >= 0 && (pkt->size || st->pts.num != st->pts.den >> 1 || st->pts.val)) {
481  frac_add(&st->pts, (int64_t)st->time_base.den * frame_size);
482  }
483  break;
484  case AVMEDIA_TYPE_VIDEO:
485  frac_add(&st->pts, (int64_t)st->time_base.den * st->codec->time_base.num);
486  break;
487  default:
488  break;
489  }
490  return 0;
491 }
492 
498 {
499  int ret, did_split;
500 
501  did_split = av_packet_split_side_data(pkt);
502  ret = s->oformat->write_packet(s, pkt);
503  if (did_split)
505  return ret;
506 }
507 
509 {
510  int ret;
511 
512  if (!pkt) {
513  if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
514  ret = s->oformat->write_packet(s, NULL);
515  if (ret >= 0 && s->pb && s->pb->error < 0)
516  ret = s->pb->error;
517  return ret;
518  }
519  return 1;
520  }
521 
522  ret = compute_pkt_fields2(s, s->streams[pkt->stream_index], pkt);
523 
524  if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
525  return ret;
526 
527  ret = split_write_packet(s, pkt);
528  if (ret >= 0 && s->pb && s->pb->error < 0)
529  ret = s->pb->error;
530 
531  if (ret >= 0)
532  s->streams[pkt->stream_index]->nb_frames++;
533  return ret;
534 }
535 
536 #define CHUNK_START 0x1000
537 
539  int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
540 {
541  AVPacketList **next_point, *this_pktl;
542  AVStream *st = s->streams[pkt->stream_index];
543  int chunked = s->max_chunk_size || s->max_chunk_duration;
544 
545  this_pktl = av_mallocz(sizeof(AVPacketList));
546  if (!this_pktl)
547  return AVERROR(ENOMEM);
548  this_pktl->pkt = *pkt;
549  pkt->destruct = NULL; // do not free original but only the copy
550  av_dup_packet(&this_pktl->pkt); // duplicate the packet if it uses non-allocated memory
551 
553  next_point = &(st->last_in_packet_buffer->next);
554  } else {
555  next_point = &s->packet_buffer;
556  }
557 
558  if (chunked) {
560  st->interleaver_chunk_size += pkt->size;
563  || (max && st->interleaver_chunk_duration > max)) {
564  st->interleaver_chunk_size = 0;
565  this_pktl->pkt.flags |= CHUNK_START;
566  if (max && st->interleaver_chunk_duration > max) {
567  int64_t syncoffset = (st->codec->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
568  int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
569 
570  st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
571  } else
573  }
574  }
575  if (*next_point) {
576  if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
577  goto next_non_null;
578 
579  if (compare(s, &s->packet_buffer_end->pkt, pkt)) {
580  while ( *next_point
581  && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
582  || !compare(s, &(*next_point)->pkt, pkt)))
583  next_point = &(*next_point)->next;
584  if (*next_point)
585  goto next_non_null;
586  } else {
587  next_point = &(s->packet_buffer_end->next);
588  }
589  }
590  av_assert1(!*next_point);
591 
592  s->packet_buffer_end = this_pktl;
593 next_non_null:
594 
595  this_pktl->next = *next_point;
596 
598  *next_point = this_pktl;
599  return 0;
600 }
601 
603 {
604  AVStream *st = s->streams[pkt->stream_index];
605  AVStream *st2 = s->streams[next->stream_index];
606  int comp = av_compare_ts(next->dts, st2->time_base, pkt->dts,
607  st->time_base);
609  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);
610  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);
611  if (ts == ts2) {
612  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
613  -( 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;
614  ts2=0;
615  }
616  comp= (ts>ts2) - (ts<ts2);
617  }
618 
619  if (comp == 0)
620  return pkt->stream_index < next->stream_index;
621  return comp > 0;
622 }
623 
625  AVPacket *pkt, int flush)
626 {
627  AVPacketList *pktl;
628  int stream_count = 0, noninterleaved_count = 0;
629  int64_t delta_dts_max = 0;
630  int i, ret;
631 
632  if (pkt) {
634  if (ret < 0)
635  return ret;
636  }
637 
638  for (i = 0; i < s->nb_streams; i++) {
639  if (s->streams[i]->last_in_packet_buffer) {
640  ++stream_count;
641  } else if (s->streams[i]->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
642  ++noninterleaved_count;
643  }
644  }
645 
646  if (s->nb_streams == stream_count) {
647  flush = 1;
648  } else if (!flush) {
649  for (i=0; i < s->nb_streams; i++) {
650  if (s->streams[i]->last_in_packet_buffer) {
651  int64_t delta_dts =
653  s->streams[i]->time_base,
654  AV_TIME_BASE_Q) -
658  delta_dts_max= FFMAX(delta_dts_max, delta_dts);
659  }
660  }
661  if (s->nb_streams == stream_count+noninterleaved_count &&
662  delta_dts_max > 20*AV_TIME_BASE) {
663  av_log(s, AV_LOG_DEBUG, "flushing with %d noninterleaved\n", noninterleaved_count);
664  flush = 1;
665  }
666  }
667  if (stream_count && flush) {
668  AVStream *st;
669  pktl = s->packet_buffer;
670  *out = pktl->pkt;
671  st = s->streams[out->stream_index];
672 
673  s->packet_buffer = pktl->next;
674  if (!s->packet_buffer)
675  s->packet_buffer_end = NULL;
676 
677  if (st->last_in_packet_buffer == pktl)
679  av_freep(&pktl);
680 
681  if (s->avoid_negative_ts > 0) {
682  if (out->dts != AV_NOPTS_VALUE) {
683  if (!st->mux_ts_offset && out->dts < 0) {
684  for (i = 0; i < s->nb_streams; i++) {
685  s->streams[i]->mux_ts_offset =
686  av_rescale_q_rnd(-out->dts,
687  st->time_base,
688  s->streams[i]->time_base,
689  AV_ROUND_UP);
690  }
691  }
692  out->dts += st->mux_ts_offset;
693  }
694  if (out->pts != AV_NOPTS_VALUE)
695  out->pts += st->mux_ts_offset;
696  }
697 
698  return 1;
699  } else {
700  av_init_packet(out);
701  return 0;
702  }
703 }
704 
705 #if FF_API_INTERLEAVE_PACKET
706 int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
707  AVPacket *pkt, int flush)
708 {
709  return ff_interleave_packet_per_dts(s, out, pkt, flush);
710 }
711 
712 #endif
713 
724 {
725  if (s->oformat->interleave_packet) {
726  int ret = s->oformat->interleave_packet(s, out, in, flush);
727  if (in)
728  av_free_packet(in);
729  return ret;
730  } else
731  return ff_interleave_packet_per_dts(s, out, in, flush);
732 }
733 
735 {
736  int ret, flush = 0;
737 
738  if (pkt) {
739  AVStream *st = s->streams[pkt->stream_index];
740 
741  //FIXME/XXX/HACK drop zero sized packets
742  if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && pkt->size == 0)
743  return 0;
744 
745  av_dlog(s, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
746  pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
747  if ((ret = compute_pkt_fields2(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
748  return ret;
749 
750  if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
751  return AVERROR(EINVAL);
752  } else {
753  av_dlog(s, "av_interleaved_write_frame FLUSH\n");
754  flush = 1;
755  }
756 
757  for (;; ) {
758  AVPacket opkt;
759  int ret = interleave_packet(s, &opkt, pkt, flush);
760  if (ret <= 0) //FIXME cleanup needed for ret<0 ?
761  return ret;
762 
763  ret = split_write_packet(s, &opkt);
764  if (ret >= 0)
765  s->streams[opkt.stream_index]->nb_frames++;
766 
767  av_free_packet(&opkt);
768  pkt = NULL;
769 
770  if (ret < 0)
771  return ret;
772  if(s->pb && s->pb->error)
773  return s->pb->error;
774  }
775 }
776 
778 {
779  int ret, i;
780 
781  for (;; ) {
782  AVPacket pkt;
783  ret = interleave_packet(s, &pkt, NULL, 1);
784  if (ret < 0) //FIXME cleanup needed for ret<0 ?
785  goto fail;
786  if (!ret)
787  break;
788 
789  ret = split_write_packet(s, &pkt);
790  if (ret >= 0)
791  s->streams[pkt.stream_index]->nb_frames++;
792 
793  av_free_packet(&pkt);
794 
795  if (ret < 0)
796  goto fail;
797  if(s->pb && s->pb->error)
798  goto fail;
799  }
800 
801  if (s->oformat->write_trailer)
802  ret = s->oformat->write_trailer(s);
803 
804 fail:
805  if (s->pb)
806  avio_flush(s->pb);
807  if (ret == 0)
808  ret = s->pb ? s->pb->error : 0;
809  for (i = 0; i < s->nb_streams; i++) {
810  av_freep(&s->streams[i]->priv_data);
811  av_freep(&s->streams[i]->index_entries);
812  }
813  if (s->oformat->priv_class)
815  av_freep(&s->priv_data);
816  return ret;
817 }
818 
819 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
820  int64_t *dts, int64_t *wall)
821 {
822  if (!s->oformat || !s->oformat->get_output_timestamp)
823  return AVERROR(ENOSYS);
824  s->oformat->get_output_timestamp(s, stream, dts, wall);
825  return 0;
826 }