FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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 #include "avformat.h"
23 #include "avio_internal.h"
24 #include "internal.h"
25 #include "libavcodec/internal.h"
26 #include "libavcodec/bytestream.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/dict.h"
29 #include "libavutil/pixdesc.h"
30 #include "libavutil/timestamp.h"
31 #include "metadata.h"
32 #include "id3v2.h"
33 #include "libavutil/avassert.h"
34 #include "libavutil/avstring.h"
35 #include "libavutil/internal.h"
36 #include "libavutil/mathematics.h"
37 #include "libavutil/parseutils.h"
38 #include "libavutil/time.h"
39 #include "riff.h"
40 #include "audiointerleave.h"
41 #include "url.h"
42 #include <stdarg.h>
43 #if CONFIG_NETWORK
44 #include "network.h"
45 #endif
46 
47 /**
48  * @file
49  * muxing functions for use within libavformat
50  */
51 
52 /* fraction handling */
53 
54 /**
55  * f = val + (num / den) + 0.5.
56  *
57  * 'num' is normalized so that it is such as 0 <= num < den.
58  *
59  * @param f fractional number
60  * @param val integer value
61  * @param num must be >= 0
62  * @param den must be >= 1
63  */
64 static void frac_init(FFFrac *f, int64_t val, int64_t num, int64_t den)
65 {
66  num += (den >> 1);
67  if (num >= den) {
68  val += num / den;
69  num = num % den;
70  }
71  f->val = val;
72  f->num = num;
73  f->den = den;
74 }
75 
76 /**
77  * Fractional addition to f: f = f + (incr / f->den).
78  *
79  * @param f fractional number
80  * @param incr increment, can be positive or negative
81  */
82 static void frac_add(FFFrac *f, int64_t incr)
83 {
84  int64_t num, den;
85 
86  num = f->num + incr;
87  den = f->den;
88  if (num < 0) {
89  f->val += num / den;
90  num = num % den;
91  if (num < 0) {
92  num += den;
93  f->val--;
94  }
95  } else if (num >= den) {
96  f->val += num / den;
97  num = num % den;
98  }
99  f->num = num;
100 }
101 
103 {
104  AVRational q;
105  int j;
106 
107  q = st->time_base;
108 
109  for (j=2; j<14; j+= 1+(j>2))
110  while (q.den / q.num < min_precision && q.num % j == 0)
111  q.num /= j;
112  while (q.den / q.num < min_precision && q.den < (1<<24))
113  q.den <<= 1;
114 
115  return q;
116 }
117 
119 {
120  AVCodecContext *avctx = st->codec;
121  const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(avctx->pix_fmt);
122 
124  return avctx->chroma_sample_location;
125 
126  if (pix_desc) {
127  if (pix_desc->log2_chroma_h == 0) {
128  return AVCHROMA_LOC_TOPLEFT;
129  } else if (pix_desc->log2_chroma_w == 1 && pix_desc->log2_chroma_h == 1) {
130  if (avctx->field_order == AV_FIELD_UNKNOWN || avctx->field_order == AV_FIELD_PROGRESSIVE) {
131  switch (avctx->codec_id) {
132  case AV_CODEC_ID_MJPEG:
134  }
135  }
136  if (avctx->field_order == AV_FIELD_UNKNOWN || avctx->field_order != AV_FIELD_PROGRESSIVE) {
137  switch (avctx->codec_id) {
139  }
140  }
141  }
142  }
143 
145 
146 }
147 
149  const char *format, const char *filename)
150 {
152  int ret = 0;
153 
154  *avctx = NULL;
155  if (!s)
156  goto nomem;
157 
158  if (!oformat) {
159  if (format) {
160  oformat = av_guess_format(format, NULL, NULL);
161  if (!oformat) {
162  av_log(s, AV_LOG_ERROR, "Requested output format '%s' is not a suitable output format\n", format);
163  ret = AVERROR(EINVAL);
164  goto error;
165  }
166  } else {
167  oformat = av_guess_format(NULL, filename, NULL);
168  if (!oformat) {
169  ret = AVERROR(EINVAL);
170  av_log(s, AV_LOG_ERROR, "Unable to find a suitable output format for '%s'\n",
171  filename);
172  goto error;
173  }
174  }
175  }
176 
177  s->oformat = oformat;
178  if (s->oformat->priv_data_size > 0) {
180  if (!s->priv_data)
181  goto nomem;
182  if (s->oformat->priv_class) {
183  *(const AVClass**)s->priv_data= s->oformat->priv_class;
185  }
186  } else
187  s->priv_data = NULL;
188 
189  if (filename)
190  av_strlcpy(s->filename, filename, sizeof(s->filename));
191  *avctx = s;
192  return 0;
193 nomem:
194  av_log(s, AV_LOG_ERROR, "Out of memory\n");
195  ret = AVERROR(ENOMEM);
196 error:
198  return ret;
199 }
200 
202 {
203  const AVCodecTag *avctag;
204  int n;
205  enum AVCodecID id = AV_CODEC_ID_NONE;
206  int64_t tag = -1;
207 
208  /**
209  * Check that tag + id is in the table
210  * If neither is in the table -> OK
211  * If tag is in the table with another id -> FAIL
212  * If id is in the table with another tag -> FAIL unless strict < normal
213  */
214  for (n = 0; s->oformat->codec_tag[n]; n++) {
215  avctag = s->oformat->codec_tag[n];
216  while (avctag->id != AV_CODEC_ID_NONE) {
217  if (avpriv_toupper4(avctag->tag) == avpriv_toupper4(st->codec->codec_tag)) {
218  id = avctag->id;
219  if (id == st->codec->codec_id)
220  return 1;
221  }
222  if (avctag->id == st->codec->codec_id)
223  tag = avctag->tag;
224  avctag++;
225  }
226  }
227  if (id != AV_CODEC_ID_NONE)
228  return 0;
229  if (tag >= 0 && (s->strict_std_compliance >= FF_COMPLIANCE_NORMAL))
230  return 0;
231  return 1;
232 }
233 
234 
236 {
237  int ret = 0, i;
238  AVStream *st;
239  AVDictionary *tmp = NULL;
240  AVCodecContext *codec = NULL;
241  AVOutputFormat *of = s->oformat;
242  const AVCodecDescriptor *desc;
244 
245  if (options)
246  av_dict_copy(&tmp, *options, 0);
247 
248  if ((ret = av_opt_set_dict(s, &tmp)) < 0)
249  goto fail;
250  if (s->priv_data && s->oformat->priv_class && *(const AVClass**)s->priv_data==s->oformat->priv_class &&
251  (ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
252  goto fail;
253 
254  if (s->nb_streams && s->streams[0]->codec->flags & AV_CODEC_FLAG_BITEXACT) {
255  if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
256 #if FF_API_LAVF_BITEXACT
258  "Setting the AVFormatContext to bitexact mode, because "
259  "the AVCodecContext is in that mode. This behavior will "
260  "change in the future. To keep the current behavior, set "
261  "AVFormatContext.flags |= AVFMT_FLAG_BITEXACT.\n");
263 #else
265  "The AVFormatContext is not in set to bitexact mode, only "
266  "the AVCodecContext. If this is not intended, set "
267  "AVFormatContext.flags |= AVFMT_FLAG_BITEXACT.\n");
268 #endif
269  }
270  }
271 
272  // some sanity checks
273  if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) {
274  av_log(s, AV_LOG_ERROR, "No streams to mux were specified\n");
275  ret = AVERROR(EINVAL);
276  goto fail;
277  }
278 
279  for (i = 0; i < s->nb_streams; i++) {
280  st = s->streams[i];
281  codec = st->codec;
282 
283 #if FF_API_LAVF_CODEC_TB
285  if (!st->time_base.num && codec->time_base.num) {
286  av_log(s, AV_LOG_WARNING, "Using AVStream.codec.time_base as a "
287  "timebase hint to the muxer is deprecated. Set "
288  "AVStream.time_base instead.\n");
289  avpriv_set_pts_info(st, 64, codec->time_base.num, codec->time_base.den);
290  }
292 #endif
293 
294  if (!st->time_base.num) {
295  /* fall back on the default timebase values */
296  if (codec->codec_type == AVMEDIA_TYPE_AUDIO && codec->sample_rate)
297  avpriv_set_pts_info(st, 64, 1, codec->sample_rate);
298  else
299  avpriv_set_pts_info(st, 33, 1, 90000);
300  }
301 
302  switch (codec->codec_type) {
303  case AVMEDIA_TYPE_AUDIO:
304  if (codec->sample_rate <= 0) {
305  av_log(s, AV_LOG_ERROR, "sample rate not set\n");
306  ret = AVERROR(EINVAL);
307  goto fail;
308  }
309  if (!codec->block_align)
310  codec->block_align = codec->channels *
311  av_get_bits_per_sample(codec->codec_id) >> 3;
312  break;
313  case AVMEDIA_TYPE_VIDEO:
314  if ((codec->width <= 0 || codec->height <= 0) &&
315  !(of->flags & AVFMT_NODIMENSIONS)) {
316  av_log(s, AV_LOG_ERROR, "dimensions not set\n");
317  ret = AVERROR(EINVAL);
318  goto fail;
319  }
322  ) {
323  if (st->sample_aspect_ratio.num != 0 &&
324  st->sample_aspect_ratio.den != 0 &&
325  codec->sample_aspect_ratio.num != 0 &&
326  codec->sample_aspect_ratio.den != 0) {
327  av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
328  "(%d/%d) and encoder layer (%d/%d)\n",
330  codec->sample_aspect_ratio.num,
331  codec->sample_aspect_ratio.den);
332  ret = AVERROR(EINVAL);
333  goto fail;
334  }
335  }
336  break;
337  }
338 
339  desc = avcodec_descriptor_get(codec->codec_id);
340  if (desc && desc->props & AV_CODEC_PROP_REORDER)
341  st->internal->reorder = 1;
342 
343  if (of->codec_tag) {
344  if ( codec->codec_tag
345  && codec->codec_id == AV_CODEC_ID_RAWVIDEO
346  && ( av_codec_get_tag(of->codec_tag, codec->codec_id) == 0
347  || av_codec_get_tag(of->codec_tag, codec->codec_id) == MKTAG('r', 'a', 'w', ' '))
348  && !validate_codec_tag(s, st)) {
349  // the current rawvideo encoding system ends up setting
350  // the wrong codec_tag for avi/mov, we override it here
351  codec->codec_tag = 0;
352  }
353  if (codec->codec_tag) {
354  if (!validate_codec_tag(s, st)) {
355  char tagbuf[32], tagbuf2[32];
356  av_get_codec_tag_string(tagbuf, sizeof(tagbuf), codec->codec_tag);
357  av_get_codec_tag_string(tagbuf2, sizeof(tagbuf2), av_codec_get_tag(s->oformat->codec_tag, codec->codec_id));
358  av_log(s, AV_LOG_ERROR,
359  "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
360  tagbuf, codec->codec_tag, codec->codec_id, tagbuf2);
361  ret = AVERROR_INVALIDDATA;
362  goto fail;
363  }
364  } else
365  codec->codec_tag = av_codec_get_tag(of->codec_tag, codec->codec_id);
366  }
367 
368  if (codec->codec_type != AVMEDIA_TYPE_ATTACHMENT)
370  }
371 
372  if (!s->priv_data && of->priv_data_size > 0) {
374  if (!s->priv_data) {
375  ret = AVERROR(ENOMEM);
376  goto fail;
377  }
378  if (of->priv_class) {
379  *(const AVClass **)s->priv_data = of->priv_class;
381  if ((ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
382  goto fail;
383  }
384  }
385 
386  /* set muxer identification string */
387  if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
388  av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
389  } else {
390  av_dict_set(&s->metadata, "encoder", NULL, 0);
391  }
392 
393  for (e = NULL; e = av_dict_get(s->metadata, "encoder-", e, AV_DICT_IGNORE_SUFFIX); ) {
394  av_dict_set(&s->metadata, e->key, NULL, 0);
395  }
396 
397  if (options) {
398  av_dict_free(options);
399  *options = tmp;
400  }
401 
402  if (s->oformat->init && (ret = s->oformat->init(s)) < 0) {
403  s->oformat->deinit(s);
404  goto fail;
405  }
406 
407  return 0;
408 
409 fail:
410  av_dict_free(&tmp);
411  return ret;
412 }
413 
415 {
416  int i;
417  AVStream *st;
418 
419  /* init PTS generation */
420  for (i = 0; i < s->nb_streams; i++) {
421  int64_t den = AV_NOPTS_VALUE;
422  st = s->streams[i];
423 
424  switch (st->codec->codec_type) {
425  case AVMEDIA_TYPE_AUDIO:
426  den = (int64_t)st->time_base.num * st->codec->sample_rate;
427  break;
428  case AVMEDIA_TYPE_VIDEO:
429  den = (int64_t)st->time_base.num * st->codec->time_base.den;
430  break;
431  default:
432  break;
433  }
434 
435  if (!st->priv_pts)
436  st->priv_pts = av_mallocz(sizeof(*st->priv_pts));
437  if (!st->priv_pts)
438  return AVERROR(ENOMEM);
439 
440  if (den != AV_NOPTS_VALUE) {
441  if (den <= 0)
442  return AVERROR_INVALIDDATA;
443 
444  frac_init(st->priv_pts, 0, 0, den);
445  }
446  }
447 
448  return 0;
449 }
450 
452 {
453  int ret = 0;
454 
455  if ((ret = init_muxer(s, options)) < 0)
456  return ret;
457 
458  if (s->oformat->write_header && !s->oformat->check_bitstream) {
459  ret = s->oformat->write_header(s);
460  if (ret >= 0 && s->pb && s->pb->error < 0)
461  ret = s->pb->error;
462  if (ret < 0)
463  return ret;
464  if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
465  avio_flush(s->pb);
466  s->internal->header_written = 1;
467  }
468 
469  if ((ret = init_pts(s)) < 0)
470  return ret;
471 
472  if (s->avoid_negative_ts < 0) {
475  s->avoid_negative_ts = 0;
476  } else
478  }
479 
480  return 0;
481 }
482 
483 #define AV_PKT_FLAG_UNCODED_FRAME 0x2000
484 
485 /* Note: using sizeof(AVFrame) from outside lavu is unsafe in general, but
486  it is only being used internally to this file as a consistency check.
487  The value is chosen to be very unlikely to appear on its own and to cause
488  immediate failure if used anywhere as a real size. */
489 #define UNCODED_FRAME_PACKET_SIZE (INT_MIN / 3 * 2 + (int)sizeof(AVFrame))
490 
491 
492 #if FF_API_COMPUTE_PKT_FIELDS2
493 //FIXME merge with compute_pkt_fields
494 static int compute_muxer_pkt_fields(AVFormatContext *s, AVStream *st, AVPacket *pkt)
495 {
496  int delay = FFMAX(st->codec->has_b_frames, st->codec->max_b_frames > 0);
497  int num, den, i;
498  int frame_size;
499 
500  if (!s->internal->missing_ts_warning &&
501  !(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
502  (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE)) {
504  "Timestamps are unset in a packet for stream %d. "
505  "This is deprecated and will stop working in the future. "
506  "Fix your code to set the timestamps properly\n", st->index);
507  s->internal->missing_ts_warning = 1;
508  }
509 
510  if (s->debug & FF_FDEBUG_TS)
511  av_log(s, AV_LOG_TRACE, "compute_muxer_pkt_fields: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
512  av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
513 
514  if (pkt->duration < 0 && st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) {
515  av_log(s, AV_LOG_WARNING, "Packet with invalid duration %"PRId64" in stream %d\n",
516  pkt->duration, pkt->stream_index);
517  pkt->duration = 0;
518  }
519 
520  /* duration field */
521  if (pkt->duration == 0) {
522  ff_compute_frame_duration(s, &num, &den, st, NULL, pkt);
523  if (den && num) {
524  pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
525  }
526  }
527 
528  if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
529  pkt->pts = pkt->dts;
530 
531  //XXX/FIXME this is a temporary hack until all encoders output pts
532  if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
533  static int warned;
534  if (!warned) {
535  av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
536  warned = 1;
537  }
538  pkt->dts =
539 // pkt->pts= st->cur_dts;
540  pkt->pts = st->priv_pts->val;
541  }
542 
543  //calculate dts from pts
544  if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
545  st->pts_buffer[0] = pkt->pts;
546  for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
547  st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
548  for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
549  FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
550 
551  pkt->dts = st->pts_buffer[0];
552  }
553 
554  if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
555  ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
557  st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
558  av_log(s, AV_LOG_ERROR,
559  "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
560  st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
561  return AVERROR(EINVAL);
562  }
563  if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
564  av_log(s, AV_LOG_ERROR,
565  "pts (%s) < dts (%s) in stream %d\n",
566  av_ts2str(pkt->pts), av_ts2str(pkt->dts),
567  st->index);
568  return AVERROR(EINVAL);
569  }
570 
571  if (s->debug & FF_FDEBUG_TS)
572  av_log(s, AV_LOG_TRACE, "av_write_frame: pts2:%s dts2:%s\n",
573  av_ts2str(pkt->pts), av_ts2str(pkt->dts));
574 
575  st->cur_dts = pkt->dts;
576  st->priv_pts->val = pkt->dts;
577 
578  /* update pts */
579  switch (st->codec->codec_type) {
580  case AVMEDIA_TYPE_AUDIO:
581  frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
582  ((AVFrame *)pkt->data)->nb_samples :
584 
585  /* HACK/FIXME, we skip the initial 0 size packets as they are most
586  * likely equal to the encoder delay, but it would be better if we
587  * had the real timestamps from the encoder */
588  if (frame_size >= 0 && (pkt->size || st->priv_pts->num != st->priv_pts->den >> 1 || st->priv_pts->val)) {
589  frac_add(st->priv_pts, (int64_t)st->time_base.den * frame_size);
590  }
591  break;
592  case AVMEDIA_TYPE_VIDEO:
593  frac_add(st->priv_pts, (int64_t)st->time_base.den * st->codec->time_base.num);
594  break;
595  }
596  return 0;
597 }
598 #endif
599 
600 /**
601  * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
602  * sidedata.
603  *
604  * FIXME: this function should NEVER get undefined pts/dts beside when the
605  * AVFMT_NOTIMESTAMPS is set.
606  * Those additional safety checks should be dropped once the correct checks
607  * are set in the callers.
608  */
610 {
611  int ret, did_split;
612 
613  if (s->output_ts_offset) {
614  AVStream *st = s->streams[pkt->stream_index];
616 
617  if (pkt->dts != AV_NOPTS_VALUE)
618  pkt->dts += offset;
619  if (pkt->pts != AV_NOPTS_VALUE)
620  pkt->pts += offset;
621  }
622 
623  if (s->avoid_negative_ts > 0) {
624  AVStream *st = s->streams[pkt->stream_index];
625  int64_t offset = st->mux_ts_offset;
626  int64_t ts = s->internal->avoid_negative_ts_use_pts ? pkt->pts : pkt->dts;
627 
628  if (s->internal->offset == AV_NOPTS_VALUE && ts != AV_NOPTS_VALUE &&
629  (ts < 0 || s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO)) {
630  s->internal->offset = -ts;
632  }
633 
634  if (s->internal->offset != AV_NOPTS_VALUE && !offset) {
635  offset = st->mux_ts_offset =
638  st->time_base,
639  AV_ROUND_UP);
640  }
641 
642  if (pkt->dts != AV_NOPTS_VALUE)
643  pkt->dts += offset;
644  if (pkt->pts != AV_NOPTS_VALUE)
645  pkt->pts += offset;
646 
648  if (pkt->pts != AV_NOPTS_VALUE && pkt->pts < 0) {
649  av_log(s, AV_LOG_WARNING, "failed to avoid negative "
650  "pts %s in stream %d.\n"
651  "Try -avoid_negative_ts 1 as a possible workaround.\n",
652  av_ts2str(pkt->dts),
653  pkt->stream_index
654  );
655  }
656  } else {
657  av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0 || s->max_interleave_delta > 0);
658  if (pkt->dts != AV_NOPTS_VALUE && pkt->dts < 0) {
660  "Packets poorly interleaved, failed to avoid negative "
661  "timestamp %s in stream %d.\n"
662  "Try -max_interleave_delta 0 as a possible workaround.\n",
663  av_ts2str(pkt->dts),
664  pkt->stream_index
665  );
666  }
667  }
668  }
669 
670  did_split = av_packet_split_side_data(pkt);
671 
672  if (!s->internal->header_written && s->oformat->write_header) {
673  ret = s->oformat->write_header(s);
674  if (ret >= 0 && s->pb && s->pb->error < 0)
675  ret = s->pb->error;
676  if (ret < 0)
677  goto fail;
678  if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
679  avio_flush(s->pb);
680  s->internal->header_written = 1;
681  }
682 
683  if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
684  AVFrame *frame = (AVFrame *)pkt->data;
686  ret = s->oformat->write_uncoded_frame(s, pkt->stream_index, &frame, 0);
687  av_frame_free(&frame);
688  } else {
689  ret = s->oformat->write_packet(s, pkt);
690  }
691 
692  if (s->pb && ret >= 0) {
694  avio_flush(s->pb);
695  if (s->pb->error < 0)
696  ret = s->pb->error;
697  }
698 
699 fail:
700  if (did_split)
702 
703  return ret;
704 }
705 
707 {
708  if (!pkt)
709  return 0;
710 
711  if (pkt->stream_index < 0 || pkt->stream_index >= s->nb_streams) {
712  av_log(s, AV_LOG_ERROR, "Invalid packet stream index: %d\n",
713  pkt->stream_index);
714  return AVERROR(EINVAL);
715  }
716 
718  av_log(s, AV_LOG_ERROR, "Received a packet for an attachment stream.\n");
719  return AVERROR(EINVAL);
720  }
721 
722  return 0;
723 }
724 
726 {
727  int ret;
728 
729  ret = check_packet(s, pkt);
730  if (ret < 0)
731  return ret;
732 
733 #if !FF_API_COMPUTE_PKT_FIELDS2
734  /* sanitize the timestamps */
735  if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
736  AVStream *st = s->streams[pkt->stream_index];
737 
738  /* when there is no reordering (so dts is equal to pts), but
739  * only one of them is set, set the other as well */
740  if (!st->internal->reorder) {
741  if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE)
742  pkt->pts = pkt->dts;
743  if (pkt->dts == AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE)
744  pkt->dts = pkt->pts;
745  }
746 
747  /* check that the timestamps are set */
748  if (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE) {
749  av_log(s, AV_LOG_ERROR,
750  "Timestamps are unset in a packet for stream %d\n", st->index);
751  return AVERROR(EINVAL);
752  }
753 
754  /* check that the dts are increasing (or at least non-decreasing,
755  * if the format allows it */
756  if (st->cur_dts != AV_NOPTS_VALUE &&
757  ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) && st->cur_dts >= pkt->dts) ||
758  st->cur_dts > pkt->dts)) {
759  av_log(s, AV_LOG_ERROR,
760  "Application provided invalid, non monotonically increasing "
761  "dts to muxer in stream %d: %" PRId64 " >= %" PRId64 "\n",
762  st->index, st->cur_dts, pkt->dts);
763  return AVERROR(EINVAL);
764  }
765 
766  if (pkt->pts < pkt->dts) {
767  av_log(s, AV_LOG_ERROR, "pts %" PRId64 " < dts %" PRId64 " in stream %d\n",
768  pkt->pts, pkt->dts, st->index);
769  return AVERROR(EINVAL);
770  }
771  }
772 #endif
773 
774  return 0;
775 }
776 
778 {
779  int ret;
780 
781  ret = prepare_input_packet(s, pkt);
782  if (ret < 0)
783  return ret;
784 
785  if (!pkt) {
786  if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
787  ret = s->oformat->write_packet(s, NULL);
788  if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
789  avio_flush(s->pb);
790  if (ret >= 0 && s->pb && s->pb->error < 0)
791  ret = s->pb->error;
792  return ret;
793  }
794  return 1;
795  }
796 
797 #if FF_API_COMPUTE_PKT_FIELDS2
798  ret = compute_muxer_pkt_fields(s, s->streams[pkt->stream_index], pkt);
799 
800  if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
801  return ret;
802 #endif
803 
804  ret = write_packet(s, pkt);
805  if (ret >= 0 && s->pb && s->pb->error < 0)
806  ret = s->pb->error;
807 
808  if (ret >= 0)
809  s->streams[pkt->stream_index]->nb_frames++;
810  return ret;
811 }
812 
813 #define CHUNK_START 0x1000
814 
816  int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
817 {
818  int ret;
819  AVPacketList **next_point, *this_pktl;
820  AVStream *st = s->streams[pkt->stream_index];
821  int chunked = s->max_chunk_size || s->max_chunk_duration;
822 
823  this_pktl = av_mallocz(sizeof(AVPacketList));
824  if (!this_pktl)
825  return AVERROR(ENOMEM);
826  if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
828  av_assert0(((AVFrame *)pkt->data)->buf);
829  this_pktl->pkt = *pkt;
830  pkt->buf = NULL;
831  pkt->side_data = NULL;
832  pkt->side_data_elems = 0;
833  } else {
834  if ((ret = av_packet_ref(&this_pktl->pkt, pkt)) < 0) {
835  av_free(this_pktl);
836  return ret;
837  }
838  }
839 
841  next_point = &(st->last_in_packet_buffer->next);
842  } else {
843  next_point = &s->internal->packet_buffer;
844  }
845 
846  if (chunked) {
848  st->interleaver_chunk_size += pkt->size;
851  || (max && st->interleaver_chunk_duration > max)) {
852  st->interleaver_chunk_size = 0;
853  this_pktl->pkt.flags |= CHUNK_START;
854  if (max && st->interleaver_chunk_duration > max) {
855  int64_t syncoffset = (st->codec->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
856  int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
857 
858  st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
859  } else
861  }
862  }
863  if (*next_point) {
864  if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
865  goto next_non_null;
866 
867  if (compare(s, &s->internal->packet_buffer_end->pkt, pkt)) {
868  while ( *next_point
869  && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
870  || !compare(s, &(*next_point)->pkt, pkt)))
871  next_point = &(*next_point)->next;
872  if (*next_point)
873  goto next_non_null;
874  } else {
875  next_point = &(s->internal->packet_buffer_end->next);
876  }
877  }
878  av_assert1(!*next_point);
879 
880  s->internal->packet_buffer_end = this_pktl;
881 next_non_null:
882 
883  this_pktl->next = *next_point;
884 
886  *next_point = this_pktl;
887 
888  av_packet_unref(pkt);
889 
890  return 0;
891 }
892 
894  AVPacket *pkt)
895 {
896  AVStream *st = s->streams[pkt->stream_index];
897  AVStream *st2 = s->streams[next->stream_index];
898  int comp = av_compare_ts(next->dts, st2->time_base, pkt->dts,
899  st->time_base);
901  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);
902  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);
903  if (ts == ts2) {
904  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
905  -( 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;
906  ts2=0;
907  }
908  comp= (ts>ts2) - (ts<ts2);
909  }
910 
911  if (comp == 0)
912  return pkt->stream_index < next->stream_index;
913  return comp > 0;
914 }
915 
917  AVPacket *pkt, int flush)
918 {
919  AVPacketList *pktl;
920  int stream_count = 0;
921  int noninterleaved_count = 0;
922  int i, ret;
923 
924  if (pkt) {
925  if ((ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts)) < 0)
926  return ret;
927  }
928 
929  for (i = 0; i < s->nb_streams; i++) {
930  if (s->streams[i]->last_in_packet_buffer) {
931  ++stream_count;
932  } else if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_ATTACHMENT &&
933  s->streams[i]->codec->codec_id != AV_CODEC_ID_VP8 &&
934  s->streams[i]->codec->codec_id != AV_CODEC_ID_VP9) {
935  ++noninterleaved_count;
936  }
937  }
938 
939  if (s->internal->nb_interleaved_streams == stream_count)
940  flush = 1;
941 
942  if (s->max_interleave_delta > 0 &&
943  s->internal->packet_buffer &&
944  !flush &&
945  s->internal->nb_interleaved_streams == stream_count+noninterleaved_count
946  ) {
947  AVPacket *top_pkt = &s->internal->packet_buffer->pkt;
948  int64_t delta_dts = INT64_MIN;
949  int64_t top_dts = av_rescale_q(top_pkt->dts,
950  s->streams[top_pkt->stream_index]->time_base,
952 
953  for (i = 0; i < s->nb_streams; i++) {
954  int64_t last_dts;
955  const AVPacketList *last = s->streams[i]->last_in_packet_buffer;
956 
957  if (!last)
958  continue;
959 
960  last_dts = av_rescale_q(last->pkt.dts,
961  s->streams[i]->time_base,
963  delta_dts = FFMAX(delta_dts, last_dts - top_dts);
964  }
965 
966  if (delta_dts > s->max_interleave_delta) {
967  av_log(s, AV_LOG_DEBUG,
968  "Delay between the first packet and last packet in the "
969  "muxing queue is %"PRId64" > %"PRId64": forcing output\n",
970  delta_dts, s->max_interleave_delta);
971  flush = 1;
972  }
973  }
974 
975  if (stream_count && flush) {
976  AVStream *st;
977  pktl = s->internal->packet_buffer;
978  *out = pktl->pkt;
979  st = s->streams[out->stream_index];
980 
981  s->internal->packet_buffer = pktl->next;
982  if (!s->internal->packet_buffer)
984 
985  if (st->last_in_packet_buffer == pktl)
987  av_freep(&pktl);
988 
989  return 1;
990  } else {
991  av_init_packet(out);
992  return 0;
993  }
994 }
995 
996 /**
997  * Interleave an AVPacket correctly so it can be muxed.
998  * @param out the interleaved packet will be output here
999  * @param in the input packet
1000  * @param flush 1 if no further packets are available as input and all
1001  * remaining packets should be output
1002  * @return 1 if a packet was output, 0 if no packet could be output,
1003  * < 0 if an error occurred
1004  */
1006 {
1007  if (s->oformat->interleave_packet) {
1008  int ret = s->oformat->interleave_packet(s, out, in, flush);
1009  if (in)
1010  av_packet_unref(in);
1011  return ret;
1012  } else
1013  return ff_interleave_packet_per_dts(s, out, in, flush);
1014 }
1015 
1017 {
1018  int ret, flush = 0;
1019 
1020  ret = prepare_input_packet(s, pkt);
1021  if (ret < 0)
1022  goto fail;
1023 
1024  if (pkt) {
1025  AVStream *st = s->streams[pkt->stream_index];
1026 
1027  if (s->debug & FF_FDEBUG_TS)
1028  av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
1029  pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
1030 
1031 #if FF_API_COMPUTE_PKT_FIELDS2
1032  if ((ret = compute_muxer_pkt_fields(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
1033  goto fail;
1034 #endif
1035 
1036  if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
1037  ret = AVERROR(EINVAL);
1038  goto fail;
1039  }
1040 
1041  if (s->oformat->check_bitstream) {
1042  if (!st->internal->bitstream_checked) {
1043  if ((ret = s->oformat->check_bitstream(s, pkt)) < 0)
1044  goto fail;
1045  else if (ret == 1)
1046  st->internal->bitstream_checked = 1;
1047  }
1048  }
1049 
1051  } else {
1052  av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame FLUSH\n");
1053  flush = 1;
1054  }
1055 
1056  for (;; ) {
1057  AVPacket opkt;
1058  int ret = interleave_packet(s, &opkt, pkt, flush);
1059  if (pkt) {
1060  memset(pkt, 0, sizeof(*pkt));
1061  av_init_packet(pkt);
1062  pkt = NULL;
1063  }
1064  if (ret <= 0) //FIXME cleanup needed for ret<0 ?
1065  return ret;
1066 
1067  ret = write_packet(s, &opkt);
1068  if (ret >= 0)
1069  s->streams[opkt.stream_index]->nb_frames++;
1070 
1071  av_packet_unref(&opkt);
1072 
1073  if (ret < 0)
1074  return ret;
1075  if(s->pb && s->pb->error)
1076  return s->pb->error;
1077  }
1078 fail:
1079  av_packet_unref(pkt);
1080  return ret;
1081 }
1082 
1084 {
1085  int ret, i;
1086 
1087  for (;; ) {
1088  AVPacket pkt;
1089  ret = interleave_packet(s, &pkt, NULL, 1);
1090  if (ret < 0)
1091  goto fail;
1092  if (!ret)
1093  break;
1094 
1095  ret = write_packet(s, &pkt);
1096  if (ret >= 0)
1097  s->streams[pkt.stream_index]->nb_frames++;
1098 
1099  av_packet_unref(&pkt);
1100 
1101  if (ret < 0)
1102  goto fail;
1103  if(s->pb && s->pb->error)
1104  goto fail;
1105  }
1106 
1107  if (!s->internal->header_written && s->oformat->write_header) {
1108  ret = s->oformat->write_header(s);
1109  if (ret >= 0 && s->pb && s->pb->error < 0)
1110  ret = s->pb->error;
1111  if (ret < 0)
1112  goto fail;
1113  if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
1114  avio_flush(s->pb);
1115  s->internal->header_written = 1;
1116  }
1117 
1118 fail:
1120  if (ret >= 0) {
1121  ret = s->oformat->write_trailer(s);
1122  } else {
1123  s->oformat->write_trailer(s);
1124  }
1125 
1126  if (s->oformat->deinit)
1127  s->oformat->deinit(s);
1128 
1129  if (s->pb)
1130  avio_flush(s->pb);
1131  if (ret == 0)
1132  ret = s->pb ? s->pb->error : 0;
1133  for (i = 0; i < s->nb_streams; i++) {
1134  av_freep(&s->streams[i]->priv_data);
1135  av_freep(&s->streams[i]->index_entries);
1136  }
1137  if (s->oformat->priv_class)
1138  av_opt_free(s->priv_data);
1139  av_freep(&s->priv_data);
1140  return ret;
1141 }
1142 
1143 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
1144  int64_t *dts, int64_t *wall)
1145 {
1146  if (!s->oformat || !s->oformat->get_output_timestamp)
1147  return AVERROR(ENOSYS);
1148  s->oformat->get_output_timestamp(s, stream, dts, wall);
1149  return 0;
1150 }
1151 
1152 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
1154 {
1155  AVPacket local_pkt;
1156  int ret;
1157 
1158  local_pkt = *pkt;
1159  local_pkt.stream_index = dst_stream;
1160  if (pkt->pts != AV_NOPTS_VALUE)
1161  local_pkt.pts = av_rescale_q(pkt->pts,
1162  src->streams[pkt->stream_index]->time_base,
1163  dst->streams[dst_stream]->time_base);
1164  if (pkt->dts != AV_NOPTS_VALUE)
1165  local_pkt.dts = av_rescale_q(pkt->dts,
1166  src->streams[pkt->stream_index]->time_base,
1167  dst->streams[dst_stream]->time_base);
1168  if (pkt->duration)
1169  local_pkt.duration = av_rescale_q(pkt->duration,
1170  src->streams[pkt->stream_index]->time_base,
1171  dst->streams[dst_stream]->time_base);
1172 
1173  if (interleave) ret = av_interleaved_write_frame(dst, &local_pkt);
1174  else ret = av_write_frame(dst, &local_pkt);
1175  pkt->buf = local_pkt.buf;
1176  pkt->side_data = local_pkt.side_data;
1177  pkt->side_data_elems = local_pkt.side_data_elems;
1178  return ret;
1179 }
1180 
1181 static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index,
1182  AVFrame *frame, int interleaved)
1183 {
1184  AVPacket pkt, *pktp;
1185 
1186  av_assert0(s->oformat);
1187  if (!s->oformat->write_uncoded_frame)
1188  return AVERROR(ENOSYS);
1189 
1190  if (!frame) {
1191  pktp = NULL;
1192  } else {
1193  pktp = &pkt;
1194  av_init_packet(&pkt);
1195  pkt.data = (void *)frame;
1197  pkt.pts =
1198  pkt.dts = frame->pts;
1199  pkt.duration = av_frame_get_pkt_duration(frame);
1200  pkt.stream_index = stream_index;
1202  }
1203 
1204  return interleaved ? av_interleaved_write_frame(s, pktp) :
1205  av_write_frame(s, pktp);
1206 }
1207 
1208 int av_write_uncoded_frame(AVFormatContext *s, int stream_index,
1209  AVFrame *frame)
1210 {
1211  return av_write_uncoded_frame_internal(s, stream_index, frame, 0);
1212 }
1213 
1215  AVFrame *frame)
1216 {
1217  return av_write_uncoded_frame_internal(s, stream_index, frame, 1);
1218 }
1219 
1221 {
1222  av_assert0(s->oformat);
1223  if (!s->oformat->write_uncoded_frame)
1224  return AVERROR(ENOSYS);
1225  return s->oformat->write_uncoded_frame(s, stream_index, NULL,
1227 }
#define AV_CODEC_PROP_REORDER
Codec supports frame reordering.
Definition: avcodec.h:615
static float compare(const AVFrame *haystack, const AVFrame *obj, int offx, int offy)
Definition: vf_find_rect.c:105
int64_t interleaver_chunk_size
Definition: avformat.h:1105
#define NULL
Definition: coverity.c:32
const char const char void * val
Definition: avisynth_c.h:634
int audio_preload
Audio preload in microseconds.
Definition: avformat.h:1636
const char * s
Definition: avisynth_c.h:631
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
int64_t av_frame_get_pkt_duration(const AVFrame *frame)
static int check_packet(AVFormatContext *s, AVPacket *pkt)
Definition: mux.c:706
enum AVCodecID id
Definition: internal.h:43
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2157
mpeg2/4 4:2:0, h264 default for 4:2:0
Definition: pixfmt.h:464
This structure describes decoded (raw) audio or video data.
Definition: frame.h:181
int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
Write a packet to an output media file ensuring correct interleaving.
Definition: mux.c:1016
int bitstream_checked
Whether or not check_bitstream should still be run on each packet.
Definition: internal.h:144
static void flush(AVCodecContext *avctx)
int(* init)(struct AVFormatContext *)
Initialize format.
Definition: avformat.h:631
int flush_packets
Flush the I/O context after each packet.
Definition: avformat.h:1703
int av_write_frame(AVFormatContext *s, AVPacket *pkt)
Write a packet to an output media file.
Definition: mux.c:777
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
void(* deinit)(struct AVFormatContext *)
Deinitialize format.
Definition: avformat.h:640
int reorder
Set to 1 if the codec allows reordering, so pts can be different from dts.
Definition: internal.h:132
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4149
int64_t pts_buffer[MAX_REORDER_DELAY+1]
Definition: avformat.h:1078
int max_b_frames
maximum number of B-frames between non-B-frames Note: The output will be delayed by max_b_frames+1 re...
Definition: avcodec.h:1810
struct FFFrac * priv_pts
Definition: avformat.h:1217
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1196
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
Definition: avformat.h:949
int num
numerator
Definition: rational.h:44
int index
stream index in AVFormatContext
Definition: avformat.h:878
int size
Definition: avcodec.h:1468
int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush)
Interleave a packet per dts in an output media file.
Definition: mux.c:916
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition: avformat.h:1080
int(* check_bitstream)(struct AVFormatContext *, const AVPacket *pkt)
Set up any necessary bitstream filtering and extract any extra data needed for the global header...
Definition: avformat.h:646
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1741
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:1935
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1752
static int av_cmp_q(AVRational a, AVRational b)
Compare two rationals.
Definition: rational.h:66
int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
Definition: dict.c:213
int av_get_output_timestamp(struct AVFormatContext *s, int stream, int64_t *dts, int64_t *wall)
Get timing information for the data currently output.
Definition: mux.c:1143
int64_t offset
Offset to remap timestamps to be non-negative.
Definition: internal.h:106
void * priv_data
Definition: avformat.h:897
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
Put a string representing the codec tag codec_tag in buf.
Definition: utils.c:2668
int avoid_negative_ts_use_pts
Definition: internal.h:119
int(* write_packet)(struct AVFormatContext *, AVPacket *pkt)
Write a packet.
Definition: avformat.h:574
static AVPacket pkt
int av_write_uncoded_frame_query(AVFormatContext *s, int stream_index)
Test whether a muxer supports uncoded frame.
Definition: mux.c:1220
#define AVFMT_ALLOW_FLUSH
Format allows flushing.
Definition: avformat.h:494
static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index, AVFrame *frame, int interleaved)
Definition: mux.c:1181
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
Definition: avcodec.h:2324
int strict_std_compliance
Allow non-standard and experimental extension.
Definition: avformat.h:1596
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:92
#define AVFMT_TS_NONSTRICT
Format does not require strictly increasing timestamps, but they must still be monotonic.
Definition: avformat.h:495
int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt, AVFormatContext *src, int interleave)
Write a packet to another muxer than the one the user originally intended.
Definition: mux.c:1152
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1661
Format I/O context.
Definition: avformat.h:1314
int64_t output_ts_offset
Output timestamp offset, in microseconds.
Definition: avformat.h:1805
int64_t cur_dts
Definition: avformat.h:1054
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
internal metadata API header see avformat.h or the public API!
#define CHUNK_START
Definition: mux.c:813
Public dictionary API.
int flags
can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_GLOBALHEADER, AVFMT_NOTIMESTAMPS, AVFMT_VARIABLE_FPS, AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS, AVFMT_ALLOW_FLUSH, AVFMT_TS_NONSTRICT
Definition: avformat.h:542
Round toward +infinity.
Definition: mathematics.h:74
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition: avassert.h:63
AVOptions.
timestamp utils, mostly useful for debugging/logging purposes
Query whether the feature is possible on this stream.
Definition: internal.h:528
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
Definition: log.h:202
AVPacket pkt
Definition: avformat.h:1915
int priv_data_size
size of private data so that it can be allocated in the wrapper
Definition: avformat.h:564
The exact value of the fractional number is: 'val + num / den'.
Definition: internal.h:59
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1485
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:262
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1382
static AVFrame * frame
AVFormatContext * avformat_alloc_context(void)
Allocate an AVFormatContext.
Definition: options.c:132
#define MAX_REORDER_DELAY
Definition: avformat.h:1077
void ff_compute_frame_duration(AVFormatContext *s, int *pnum, int *pden, AVStream *st, AVCodecParserContext *pc, AVPacket *pkt)
Return the frame duration in seconds.
Definition: utils.c:790
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:80
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:39
int flags
Flags modifying the (de)muxer behaviour.
Definition: avformat.h:1425
uint8_t * data
Definition: avcodec.h:1467
int64_t max_interleave_delta
Maximum buffering duration for interleaving.
Definition: avformat.h:1590
int header_written
Whether or not a header has already been written.
Definition: internal.h:124
uint32_t tag
Definition: movenc.c:1348
struct AVPacketList * packet_buffer
This buffer is only needed when packets were already buffered but not decoded, for example to get the...
Definition: internal.h:76
static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
Interleave an AVPacket correctly so it can be muxed.
Definition: mux.c:1005
#define AVFMT_FLAG_BITEXACT
When muxing, try to avoid writing any random/volatile data to the output.
Definition: avformat.h:1442
const OptionDef options[]
Definition: ffserver.c:3962
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:2269
int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat, const char *format, const char *filename)
Allocate an AVFormatContext for an output format.
Definition: mux.c:148
#define av_log(a,...)
struct AVOutputFormat * oformat
The output container format.
Definition: avformat.h:1333
int av_packet_ref(AVPacket *dst, const AVPacket *src)
Setup a new reference to the data described by a given packet.
Definition: avpacket.c:554
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
#define AVFMT_FLAG_FLUSH_PACKETS
Flush the AVIOContext every packet.
Definition: avformat.h:1435
int(* write_uncoded_frame)(struct AVFormatContext *, int stream_index, AVFrame **frame, unsigned flags)
Write an uncoded AVFrame.
Definition: avformat.h:606
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:101
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition: avcodec.h:1846
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1528
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:3006
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:101
static int validate_codec_tag(AVFormatContext *s, AVStream *st)
Definition: mux.c:201
#define AVERROR(e)
Definition: error.h:43
#define AV_PKT_FLAG_UNCODED_FRAME
Definition: mux.c:483
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:154
int(* write_header)(struct AVFormatContext *)
Definition: avformat.h:566
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:199
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: avcodec.h:1450
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1627
simple assert() macros that are a bit more flexible than ISO C assert().
int side_data_elems
Definition: avcodec.h:1479
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
#define FFMAX(a, b)
Definition: common.h:94
int64_t val
Definition: internal.h:60
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition: avstring.c:83
#define fail()
Definition: checkasm.h:80
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1473
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
Definition: codec_desc.c:2900
int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b)
Compare 2 timestamps each in its own timebases.
Definition: mathematics.c:147
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:896
int av_packet_merge_side_data(AVPacket *pkt)
Definition: avpacket.c:360
int props
Codec properties, a combination of AV_CODEC_PROP_* flags.
Definition: avcodec.h:577
static int write_packet(AVFormatContext *s, AVPacket *pkt)
Make timestamps non negative, move side data from payload to internal struct, call muxer...
Definition: mux.c:609
common internal API header
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1370
#define LIBAVFORMAT_IDENT
Definition: version.h:44
int64_t av_rescale_q_rnd(int64_t a, AVRational bq, AVRational cq, enum AVRounding rnd)
Rescale a 64-bit integer by 2 rational numbers with specified rounding.
Definition: mathematics.c:134
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:202
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition: avcodec.h:787
char filename[1024]
input or output filename
Definition: avformat.h:1390
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:53
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
#define AV_TIME_BASE
Internal time base represented as integer.
Definition: avutil.h:246
int avformat_write_header(AVFormatContext *s, AVDictionary **options)
Allocate the stream private data and write the stream header to an output media file.
Definition: mux.c:451
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition: opt.h:556
int width
picture width / height.
Definition: avcodec.h:1711
ITU-R 601, SMPTE 274M 296M S314M(DV 4:1:1), mpeg2 4:2:2.
Definition: pixfmt.h:466
internal header for RIFF based (de)muxers do NOT include this in end user applications ...
int avoid_negative_ts
Avoid negative timestamps during muxing.
Definition: avformat.h:1619
static void frac_init(FFFrac *f, int64_t val, int64_t num, int64_t den)
f = val + (num / den) + 0.5.
Definition: mux.c:64
int n
Definition: avisynth_c.h:547
AVOutputFormat * av_guess_format(const char *short_name, const char *filename, const char *mime_type)
Return the output format in the list of registered output formats which best matches the provided par...
Definition: format.c:94
int ticks_per_frame
For some codecs, the time base is closer to the field rate than the frame rate.
Definition: avcodec.h:1670
static int init_muxer(AVFormatContext *s, AVDictionary **options)
Definition: mux.c:235
Opaque data information usually sparse.
Definition: avutil.h:197
int64_t num
Definition: internal.h:60
void(* get_output_timestamp)(struct AVFormatContext *s, int stream, int64_t *dts, int64_t *wall)
Definition: avformat.h:590
#define src
Definition: vp9dsp.c:530
const AVClass * priv_class
AVClass for the private context.
Definition: avformat.h:551
int av_opt_set_dict2(void *obj, AVDictionary **options, int search_flags)
Set all the options from a given dictionary on an object.
Definition: opt.c:1467
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:106
int av_packet_split_side_data(AVPacket *pkt)
Definition: avpacket.c:395
FILE * out
Definition: movenc-test.c:54
Stream structure.
Definition: avformat.h:877
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:485
#define FF_FDEBUG_TS
Definition: avformat.h:1572
int frame_size
Definition: mxfenc.c:1821
AVStreamInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1223
enum AVMediaType codec_type
Definition: avcodec.h:1540
int debug
Flags to enable debugging.
Definition: avformat.h:1571
enum AVCodecID codec_id
Definition: avcodec.h:1549
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:252
int av_opt_set_dict(void *obj, AVDictionary **options)
Set all the options from a given dictionary on an object.
Definition: opt.c:1492
int sample_rate
samples per second
Definition: avcodec.h:2287
AVIOContext * pb
I/O context.
Definition: avformat.h:1356
const struct AVCodecTag *const * codec_tag
List of supported codec_id-codec_tag pairs, ordered by "better choice first".
Definition: avformat.h:548
int64_t den
Definition: internal.h:60
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
main external API structure.
Definition: avcodec.h:1532
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:545
static const char * format
Definition: movenc-test.c:47
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1564
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
int av_apply_bitstream_filters(AVCodecContext *codec, AVPacket *pkt, AVBitStreamFilterContext *bsfc)
Apply a list of bitstream filters to a packet.
Definition: utils.c:4687
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:69
#define UNCODED_FRAME_PACKET_SIZE
Definition: mux.c:489
int nb_interleaved_streams
Number of streams relevant for interleaving.
Definition: internal.h:69
Describe the class of an AVClass context structure.
Definition: log.h:67
#define FF_COMPLIANCE_NORMAL
Definition: avcodec.h:2744
unsigned int avpriv_toupper4(unsigned int x)
Definition: utils.c:3374
rational number numerator/denominator
Definition: rational.h:43
int(* interleave_packet)(struct AVFormatContext *, AVPacket *out, AVPacket *in, int flush)
Currently only used to set pixel format if not YUV420P.
Definition: avformat.h:579
enum AVChromaLocation ff_choose_chroma_location(AVFormatContext *s, AVStream *st)
Chooses a timebase for muxing the specified stream.
Definition: mux.c:118
AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precision)
Chooses a timebase for muxing the specified stream.
Definition: mux.c:102
#define AVFMT_AVOID_NEG_TS_AUTO
Enabled when required by target format.
Definition: avformat.h:1620
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
Definition: utils.c:3741
AVBitStreamFilterContext * bsfc
bitstream filter to run on stream
Definition: internal.h:139
int error
contains the error code or 0 if no error happened
Definition: avio.h:192
int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
Return audio frame duration.
Definition: utils.c:3024
misc parsing utilities
static void interleave(short *output, short **input, int channels, int samples)
Definition: resample.c:161
This struct describes the properties of a single codec described by an AVCodecID. ...
Definition: avcodec.h:561
unsigned int tag
Definition: internal.h:44
AVRational offset_timebase
Timebase for the timestamp offset.
Definition: internal.h:111
int64_t interleaver_chunk_duration
Definition: avformat.h:1106
#define AVFMT_AVOID_NEG_TS_MAKE_ZERO
Shift timestamps so that they start at 0.
Definition: avformat.h:1622
Main libavformat public API header.
AVPacketSideData * side_data
Additional packet data that can be provided by the container.
Definition: avcodec.h:1478
int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt, int(*compare)(AVFormatContext *, AVPacket *, AVPacket *))
Add packet to AVFormatContext->packet_buffer list, determining its interleaved position using compare...
Definition: mux.c:815
void av_opt_free(void *obj)
Free all allocated objects in obj.
Definition: opt.c:1447
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:80
int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index, AVFrame *frame)
Write a uncoded frame to an output media file.
Definition: mux.c:1214
common internal api header.
struct AVPacketList * next
Definition: avformat.h:1916
if(ret< 0)
Definition: vf_mcdeint.c:282
#define AVFMT_NOSTREAMS
Format does not require any streams.
Definition: avformat.h:490
int max_chunk_size
Max chunk size in bytes Note, not all formats support this and unpredictable things may happen if it ...
Definition: avformat.h:1652
static void frac_add(FFFrac *f, int64_t incr)
Fractional addition to f: f = f + (incr / f->den).
Definition: mux.c:82
static int init_pts(AVFormatContext *s)
Definition: mux.c:414
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:33
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:938
char * key
Definition: dict.h:87
int den
denominator
Definition: rational.h:45
int av_write_uncoded_frame(AVFormatContext *s, int stream_index, AVFrame *frame)
Write a uncoded frame to an output media file.
Definition: mux.c:1208
int64_t mux_ts_offset
Timestamp offset added to timestamps before muxing NOT PART OF PUBLIC API.
Definition: avformat.h:1161
#define AVFMT_AVOID_NEG_TS_MAKE_NON_NEGATIVE
Shift timestamps so they are non negative.
Definition: avformat.h:1621
struct AVPacketList * packet_buffer_end
Definition: internal.h:77
#define av_free(p)
static int interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt)
Definition: mux.c:893
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:81
#define av_ts2str(ts)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: timestamp.h:54
int channels
number of audio channels
Definition: avcodec.h:2288
int max_chunk_duration
Max chunk time in microseconds.
Definition: avformat.h:1644
void * priv_data
Format private data.
Definition: avformat.h:1342
#define AVFMT_NODIMENSIONS
Format does not need width/height.
Definition: avformat.h:489
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1466
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data.
Definition: mux.c:1083
#define av_freep(p)
static void comp(unsigned char *dst, int dst_stride, unsigned char *src, int src_stride, int add)
Definition: eamad.c:83
enum AVFieldOrder field_order
Field order.
Definition: avcodec.h:2284
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key, ignoring the suffix of the found key string.
Definition: dict.h:72
AVChromaLocation
Location of chroma samples.
Definition: pixfmt.h:462
unbuffered private I/O API
mpeg1 4:2:0, jpeg 4:2:0, h263 4:2:0
Definition: pixfmt.h:465
#define FFSWAP(type, a, b)
Definition: common.h:99
int stream_index
Definition: avcodec.h:1469
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:919
#define MKTAG(a, b, c, d)
Definition: common.h:342
unsigned int av_codec_get_tag(const struct AVCodecTag *const *tags, enum AVCodecID id)
Get the codec tag for the given codec id id.
#define AVFMT_TS_NEGATIVE
Format allows muxing negative timestamps.
Definition: avformat.h:500
This structure stores compressed data.
Definition: avcodec.h:1444
int(* write_trailer)(struct AVFormatContext *)
Definition: avformat.h:575
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:252
static int prepare_input_packet(AVFormatContext *s, AVPacket *pkt)
Definition: mux.c:725
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1460
struct AVPacketList * last_in_packet_buffer
last packet in packet_buffer for this stream when muxing.
Definition: avformat.h:1075
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:240