]> git.sesse.net Git - ffmpeg/blob - libavformat/mux.c
Revert "doc/filters: remove false claim in sofalizer description"
[ffmpeg] / libavformat / mux.c
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
102 AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precision)
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
118 enum AVChromaLocation ff_choose_chroma_location(AVFormatContext *s, AVStream *st)
119 {
120     AVCodecContext *avctx = st->codec;
121     const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(avctx->pix_fmt);
122
123     if (avctx->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED)
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:
133                 case AV_CODEC_ID_MPEG1VIDEO: return AVCHROMA_LOC_CENTER;
134                 }
135             }
136             if (avctx->field_order == AV_FIELD_UNKNOWN || avctx->field_order != AV_FIELD_PROGRESSIVE) {
137                 switch (avctx->codec_id) {
138                 case AV_CODEC_ID_MPEG2VIDEO: return AVCHROMA_LOC_LEFT;
139                 }
140             }
141         }
142     }
143
144     return AVCHROMA_LOC_UNSPECIFIED;
145
146 }
147
148 int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat,
149                                    const char *format, const char *filename)
150 {
151     AVFormatContext *s = avformat_alloc_context();
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) {
179         s->priv_data = av_mallocz(s->oformat->priv_data_size);
180         if (!s->priv_data)
181             goto nomem;
182         if (s->oformat->priv_class) {
183             *(const AVClass**)s->priv_data= s->oformat->priv_class;
184             av_opt_set_defaults(s->priv_data);
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:
197     avformat_free_context(s);
198     return ret;
199 }
200
201 static int validate_codec_tag(AVFormatContext *s, AVStream *st)
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
235 static int init_muxer(AVFormatContext *s, AVDictionary **options)
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;
243     AVDictionaryEntry *e;
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
257             av_log(s, AV_LOG_WARNING,
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");
262             s->flags |= AVFMT_FLAG_BITEXACT;
263 #else
264             av_log(s, AV_LOG_WARNING,
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
284 FF_DISABLE_DEPRECATION_WARNINGS
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         }
291 FF_ENABLE_DEPRECATION_WARNINGS
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             }
320             if (av_cmp_q(st->sample_aspect_ratio, codec->sample_aspect_ratio)
321                 && fabs(av_q2d(st->sample_aspect_ratio) - av_q2d(codec->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
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",
329                            st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
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)
369             s->internal->nb_interleaved_streams++;
370     }
371
372     if (!s->priv_data && of->priv_data_size > 0) {
373         s->priv_data = av_mallocz(of->priv_data_size);
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;
380             av_opt_set_defaults(s->priv_data);
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
414 static int init_pts(AVFormatContext *s)
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
451 int avformat_write_header(AVFormatContext *s, AVDictionary **options)
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) {
473         av_assert2(s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO);
474         if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
475             s->avoid_negative_ts = 0;
476         } else
477             s->avoid_negative_ts = AVFMT_AVOID_NEG_TS_MAKE_NON_NEGATIVE;
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)) {
503         av_log(s, AV_LOG_WARNING,
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) &&
556           st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE &&
557           st->codec->codec_type != AVMEDIA_TYPE_DATA &&
558           st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
559         av_log(s, AV_LOG_ERROR,
560                "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
561                st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
562         return AVERROR(EINVAL);
563     }
564     if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
565         av_log(s, AV_LOG_ERROR,
566                "pts (%s) < dts (%s) in stream %d\n",
567                av_ts2str(pkt->pts), av_ts2str(pkt->dts),
568                st->index);
569         return AVERROR(EINVAL);
570     }
571
572     if (s->debug & FF_FDEBUG_TS)
573         av_log(s, AV_LOG_TRACE, "av_write_frame: pts2:%s dts2:%s\n",
574             av_ts2str(pkt->pts), av_ts2str(pkt->dts));
575
576     st->cur_dts = pkt->dts;
577     st->priv_pts->val = pkt->dts;
578
579     /* update pts */
580     switch (st->codec->codec_type) {
581     case AVMEDIA_TYPE_AUDIO:
582         frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
583                      ((AVFrame *)pkt->data)->nb_samples :
584                      av_get_audio_frame_duration(st->codec, pkt->size);
585
586         /* HACK/FIXME, we skip the initial 0 size packets as they are most
587          * likely equal to the encoder delay, but it would be better if we
588          * had the real timestamps from the encoder */
589         if (frame_size >= 0 && (pkt->size || st->priv_pts->num != st->priv_pts->den >> 1 || st->priv_pts->val)) {
590             frac_add(st->priv_pts, (int64_t)st->time_base.den * frame_size);
591         }
592         break;
593     case AVMEDIA_TYPE_VIDEO:
594         frac_add(st->priv_pts, (int64_t)st->time_base.den * st->codec->time_base.num);
595         break;
596     }
597     return 0;
598 }
599 #endif
600
601 /**
602  * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
603  * sidedata.
604  *
605  * FIXME: this function should NEVER get undefined pts/dts beside when the
606  * AVFMT_NOTIMESTAMPS is set.
607  * Those additional safety checks should be dropped once the correct checks
608  * are set in the callers.
609  */
610 static int write_packet(AVFormatContext *s, AVPacket *pkt)
611 {
612     int ret, did_split;
613
614     if (s->output_ts_offset) {
615         AVStream *st = s->streams[pkt->stream_index];
616         int64_t offset = av_rescale_q(s->output_ts_offset, AV_TIME_BASE_Q, st->time_base);
617
618         if (pkt->dts != AV_NOPTS_VALUE)
619             pkt->dts += offset;
620         if (pkt->pts != AV_NOPTS_VALUE)
621             pkt->pts += offset;
622     }
623
624     if (s->avoid_negative_ts > 0) {
625         AVStream *st = s->streams[pkt->stream_index];
626         int64_t offset = st->mux_ts_offset;
627         int64_t ts = s->internal->avoid_negative_ts_use_pts ? pkt->pts : pkt->dts;
628
629         if (s->internal->offset == AV_NOPTS_VALUE && ts != AV_NOPTS_VALUE &&
630             (ts < 0 || s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO)) {
631             s->internal->offset = -ts;
632             s->internal->offset_timebase = st->time_base;
633         }
634
635         if (s->internal->offset != AV_NOPTS_VALUE && !offset) {
636             offset = st->mux_ts_offset =
637                 av_rescale_q_rnd(s->internal->offset,
638                                  s->internal->offset_timebase,
639                                  st->time_base,
640                                  AV_ROUND_UP);
641         }
642
643         if (pkt->dts != AV_NOPTS_VALUE)
644             pkt->dts += offset;
645         if (pkt->pts != AV_NOPTS_VALUE)
646             pkt->pts += offset;
647
648         if (s->internal->avoid_negative_ts_use_pts) {
649             if (pkt->pts != AV_NOPTS_VALUE && pkt->pts < 0) {
650                 av_log(s, AV_LOG_WARNING, "failed to avoid negative "
651                     "pts %s in stream %d.\n"
652                     "Try -avoid_negative_ts 1 as a possible workaround.\n",
653                     av_ts2str(pkt->dts),
654                     pkt->stream_index
655                 );
656             }
657         } else {
658             av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0 || s->max_interleave_delta > 0);
659             if (pkt->dts != AV_NOPTS_VALUE && pkt->dts < 0) {
660                 av_log(s, AV_LOG_WARNING,
661                     "Packets poorly interleaved, failed to avoid negative "
662                     "timestamp %s in stream %d.\n"
663                     "Try -max_interleave_delta 0 as a possible workaround.\n",
664                     av_ts2str(pkt->dts),
665                     pkt->stream_index
666                 );
667             }
668         }
669     }
670
671     did_split = av_packet_split_side_data(pkt);
672
673     if (!s->internal->header_written && s->oformat->write_header) {
674         ret = s->oformat->write_header(s);
675         if (ret >= 0 && s->pb && s->pb->error < 0)
676             ret = s->pb->error;
677         if (ret < 0)
678             goto fail;
679         if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
680             avio_flush(s->pb);
681         s->internal->header_written = 1;
682     }
683
684     if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
685         AVFrame *frame = (AVFrame *)pkt->data;
686         av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
687         ret = s->oformat->write_uncoded_frame(s, pkt->stream_index, &frame, 0);
688         av_frame_free(&frame);
689     } else {
690         ret = s->oformat->write_packet(s, pkt);
691     }
692
693     if (s->pb && ret >= 0) {
694         if (s->flush_packets && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
695             avio_flush(s->pb);
696         if (s->pb->error < 0)
697             ret = s->pb->error;
698     }
699
700 fail:
701     if (did_split)
702         av_packet_merge_side_data(pkt);
703
704     return ret;
705 }
706
707 static int check_packet(AVFormatContext *s, AVPacket *pkt)
708 {
709     if (!pkt)
710         return 0;
711
712     if (pkt->stream_index < 0 || pkt->stream_index >= s->nb_streams) {
713         av_log(s, AV_LOG_ERROR, "Invalid packet stream index: %d\n",
714                pkt->stream_index);
715         return AVERROR(EINVAL);
716     }
717
718     if (s->streams[pkt->stream_index]->codec->codec_type == AVMEDIA_TYPE_ATTACHMENT) {
719         av_log(s, AV_LOG_ERROR, "Received a packet for an attachment stream.\n");
720         return AVERROR(EINVAL);
721     }
722
723     return 0;
724 }
725
726 static int prepare_input_packet(AVFormatContext *s, AVPacket *pkt)
727 {
728     int ret;
729
730     ret = check_packet(s, pkt);
731     if (ret < 0)
732         return ret;
733
734 #if !FF_API_COMPUTE_PKT_FIELDS2
735     /* sanitize the timestamps */
736     if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
737         AVStream *st = s->streams[pkt->stream_index];
738
739         /* when there is no reordering (so dts is equal to pts), but
740          * only one of them is set, set the other as well */
741         if (!st->internal->reorder) {
742             if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE)
743                 pkt->pts = pkt->dts;
744             if (pkt->dts == AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE)
745                 pkt->dts = pkt->pts;
746         }
747
748         /* check that the timestamps are set */
749         if (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE) {
750             av_log(s, AV_LOG_ERROR,
751                    "Timestamps are unset in a packet for stream %d\n", st->index);
752             return AVERROR(EINVAL);
753         }
754
755         /* check that the dts are increasing (or at least non-decreasing,
756          * if the format allows it */
757         if (st->cur_dts != AV_NOPTS_VALUE &&
758             ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) && st->cur_dts >= pkt->dts) ||
759              st->cur_dts > pkt->dts)) {
760             av_log(s, AV_LOG_ERROR,
761                    "Application provided invalid, non monotonically increasing "
762                    "dts to muxer in stream %d: %" PRId64 " >= %" PRId64 "\n",
763                    st->index, st->cur_dts, pkt->dts);
764             return AVERROR(EINVAL);
765         }
766
767         if (pkt->pts < pkt->dts) {
768             av_log(s, AV_LOG_ERROR, "pts %" PRId64 " < dts %" PRId64 " in stream %d\n",
769                    pkt->pts, pkt->dts, st->index);
770             return AVERROR(EINVAL);
771         }
772     }
773 #endif
774
775     return 0;
776 }
777
778 int av_write_frame(AVFormatContext *s, AVPacket *pkt)
779 {
780     int ret;
781
782     ret = prepare_input_packet(s, pkt);
783     if (ret < 0)
784         return ret;
785
786     if (!pkt) {
787         if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
788             ret = s->oformat->write_packet(s, NULL);
789             if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
790                 avio_flush(s->pb);
791             if (ret >= 0 && s->pb && s->pb->error < 0)
792                 ret = s->pb->error;
793             return ret;
794         }
795         return 1;
796     }
797
798 #if FF_API_COMPUTE_PKT_FIELDS2
799     ret = compute_muxer_pkt_fields(s, s->streams[pkt->stream_index], pkt);
800
801     if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
802         return ret;
803 #endif
804
805     ret = write_packet(s, pkt);
806     if (ret >= 0 && s->pb && s->pb->error < 0)
807         ret = s->pb->error;
808
809     if (ret >= 0)
810         s->streams[pkt->stream_index]->nb_frames++;
811     return ret;
812 }
813
814 #define CHUNK_START 0x1000
815
816 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
817                              int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
818 {
819     int ret;
820     AVPacketList **next_point, *this_pktl;
821     AVStream *st   = s->streams[pkt->stream_index];
822     int chunked    = s->max_chunk_size || s->max_chunk_duration;
823
824     this_pktl      = av_mallocz(sizeof(AVPacketList));
825     if (!this_pktl)
826         return AVERROR(ENOMEM);
827     if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
828         av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
829         av_assert0(((AVFrame *)pkt->data)->buf);
830         this_pktl->pkt = *pkt;
831         pkt->buf = NULL;
832         pkt->side_data = NULL;
833         pkt->side_data_elems = 0;
834     } else {
835         if ((ret = av_packet_ref(&this_pktl->pkt, pkt)) < 0) {
836             av_free(this_pktl);
837             return ret;
838         }
839     }
840
841     if (s->streams[pkt->stream_index]->last_in_packet_buffer) {
842         next_point = &(st->last_in_packet_buffer->next);
843     } else {
844         next_point = &s->internal->packet_buffer;
845     }
846
847     if (chunked) {
848         uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
849         st->interleaver_chunk_size     += pkt->size;
850         st->interleaver_chunk_duration += pkt->duration;
851         if (   (s->max_chunk_size && st->interleaver_chunk_size > s->max_chunk_size)
852             || (max && st->interleaver_chunk_duration           > max)) {
853             st->interleaver_chunk_size      = 0;
854             this_pktl->pkt.flags |= CHUNK_START;
855             if (max && st->interleaver_chunk_duration > max) {
856                 int64_t syncoffset = (st->codec->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
857                 int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
858
859                 st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
860             } else
861                 st->interleaver_chunk_duration = 0;
862         }
863     }
864     if (*next_point) {
865         if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
866             goto next_non_null;
867
868         if (compare(s, &s->internal->packet_buffer_end->pkt, pkt)) {
869             while (   *next_point
870                    && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
871                        || !compare(s, &(*next_point)->pkt, pkt)))
872                 next_point = &(*next_point)->next;
873             if (*next_point)
874                 goto next_non_null;
875         } else {
876             next_point = &(s->internal->packet_buffer_end->next);
877         }
878     }
879     av_assert1(!*next_point);
880
881     s->internal->packet_buffer_end = this_pktl;
882 next_non_null:
883
884     this_pktl->next = *next_point;
885
886     s->streams[pkt->stream_index]->last_in_packet_buffer =
887         *next_point                                      = this_pktl;
888
889     av_packet_unref(pkt);
890
891     return 0;
892 }
893
894 static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
895                                   AVPacket *pkt)
896 {
897     AVStream *st  = s->streams[pkt->stream_index];
898     AVStream *st2 = s->streams[next->stream_index];
899     int comp      = av_compare_ts(next->dts, st2->time_base, pkt->dts,
900                                   st->time_base);
901     if (s->audio_preload && ((st->codec->codec_type == AVMEDIA_TYPE_AUDIO) != (st2->codec->codec_type == AVMEDIA_TYPE_AUDIO))) {
902         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);
903         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);
904         if (ts == ts2) {
905             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
906                -( 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;
907             ts2=0;
908         }
909         comp= (ts>ts2) - (ts<ts2);
910     }
911
912     if (comp == 0)
913         return pkt->stream_index < next->stream_index;
914     return comp > 0;
915 }
916
917 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
918                                  AVPacket *pkt, int flush)
919 {
920     AVPacketList *pktl;
921     int stream_count = 0;
922     int noninterleaved_count = 0;
923     int i, ret;
924
925     if (pkt) {
926         if ((ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts)) < 0)
927             return ret;
928     }
929
930     for (i = 0; i < s->nb_streams; i++) {
931         if (s->streams[i]->last_in_packet_buffer) {
932             ++stream_count;
933         } else if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_ATTACHMENT &&
934                    s->streams[i]->codec->codec_id != AV_CODEC_ID_VP8 &&
935                    s->streams[i]->codec->codec_id != AV_CODEC_ID_VP9) {
936             ++noninterleaved_count;
937         }
938     }
939
940     if (s->internal->nb_interleaved_streams == stream_count)
941         flush = 1;
942
943     if (s->max_interleave_delta > 0 &&
944         s->internal->packet_buffer &&
945         !flush &&
946         s->internal->nb_interleaved_streams == stream_count+noninterleaved_count
947     ) {
948         AVPacket *top_pkt = &s->internal->packet_buffer->pkt;
949         int64_t delta_dts = INT64_MIN;
950         int64_t top_dts = av_rescale_q(top_pkt->dts,
951                                        s->streams[top_pkt->stream_index]->time_base,
952                                        AV_TIME_BASE_Q);
953
954         for (i = 0; i < s->nb_streams; i++) {
955             int64_t last_dts;
956             const AVPacketList *last = s->streams[i]->last_in_packet_buffer;
957
958             if (!last)
959                 continue;
960
961             last_dts = av_rescale_q(last->pkt.dts,
962                                     s->streams[i]->time_base,
963                                     AV_TIME_BASE_Q);
964             delta_dts = FFMAX(delta_dts, last_dts - top_dts);
965         }
966
967         if (delta_dts > s->max_interleave_delta) {
968             av_log(s, AV_LOG_DEBUG,
969                    "Delay between the first packet and last packet in the "
970                    "muxing queue is %"PRId64" > %"PRId64": forcing output\n",
971                    delta_dts, s->max_interleave_delta);
972             flush = 1;
973         }
974     }
975
976     if (stream_count && flush) {
977         AVStream *st;
978         pktl = s->internal->packet_buffer;
979         *out = pktl->pkt;
980         st   = s->streams[out->stream_index];
981
982         s->internal->packet_buffer = pktl->next;
983         if (!s->internal->packet_buffer)
984             s->internal->packet_buffer_end = NULL;
985
986         if (st->last_in_packet_buffer == pktl)
987             st->last_in_packet_buffer = NULL;
988         av_freep(&pktl);
989
990         return 1;
991     } else {
992         av_init_packet(out);
993         return 0;
994     }
995 }
996
997 /**
998  * Interleave an AVPacket correctly so it can be muxed.
999  * @param out the interleaved packet will be output here
1000  * @param in the input packet
1001  * @param flush 1 if no further packets are available as input and all
1002  *              remaining packets should be output
1003  * @return 1 if a packet was output, 0 if no packet could be output,
1004  *         < 0 if an error occurred
1005  */
1006 static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
1007 {
1008     if (s->oformat->interleave_packet) {
1009         int ret = s->oformat->interleave_packet(s, out, in, flush);
1010         if (in)
1011             av_packet_unref(in);
1012         return ret;
1013     } else
1014         return ff_interleave_packet_per_dts(s, out, in, flush);
1015 }
1016
1017 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
1018 {
1019     int ret, flush = 0;
1020
1021     ret = prepare_input_packet(s, pkt);
1022     if (ret < 0)
1023         goto fail;
1024
1025     if (pkt) {
1026         AVStream *st = s->streams[pkt->stream_index];
1027
1028         if (s->oformat->check_bitstream) {
1029             if (!st->internal->bitstream_checked) {
1030                 if ((ret = s->oformat->check_bitstream(s, pkt)) < 0)
1031                     goto fail;
1032                 else if (ret == 1)
1033                     st->internal->bitstream_checked = 1;
1034             }
1035         }
1036
1037         av_apply_bitstream_filters(st->codec, pkt, st->internal->bsfc);
1038         if (pkt->size == 0 && pkt->side_data_elems == 0)
1039             return 0;
1040
1041         if (s->debug & FF_FDEBUG_TS)
1042             av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
1043                 pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
1044
1045 #if FF_API_COMPUTE_PKT_FIELDS2
1046         if ((ret = compute_muxer_pkt_fields(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
1047             goto fail;
1048 #endif
1049
1050         if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
1051             ret = AVERROR(EINVAL);
1052             goto fail;
1053         }
1054     } else {
1055         av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame FLUSH\n");
1056         flush = 1;
1057     }
1058
1059     for (;; ) {
1060         AVPacket opkt;
1061         int ret = interleave_packet(s, &opkt, pkt, flush);
1062         if (pkt) {
1063             memset(pkt, 0, sizeof(*pkt));
1064             av_init_packet(pkt);
1065             pkt = NULL;
1066         }
1067         if (ret <= 0) //FIXME cleanup needed for ret<0 ?
1068             return ret;
1069
1070         ret = write_packet(s, &opkt);
1071         if (ret >= 0)
1072             s->streams[opkt.stream_index]->nb_frames++;
1073
1074         av_packet_unref(&opkt);
1075
1076         if (ret < 0)
1077             return ret;
1078         if(s->pb && s->pb->error)
1079             return s->pb->error;
1080     }
1081 fail:
1082     av_packet_unref(pkt);
1083     return ret;
1084 }
1085
1086 int av_write_trailer(AVFormatContext *s)
1087 {
1088     int ret, i;
1089
1090     for (;; ) {
1091         AVPacket pkt;
1092         ret = interleave_packet(s, &pkt, NULL, 1);
1093         if (ret < 0)
1094             goto fail;
1095         if (!ret)
1096             break;
1097
1098         ret = write_packet(s, &pkt);
1099         if (ret >= 0)
1100             s->streams[pkt.stream_index]->nb_frames++;
1101
1102         av_packet_unref(&pkt);
1103
1104         if (ret < 0)
1105             goto fail;
1106         if(s->pb && s->pb->error)
1107             goto fail;
1108     }
1109
1110     if (!s->internal->header_written && s->oformat->write_header) {
1111         ret = s->oformat->write_header(s);
1112         if (ret >= 0 && s->pb && s->pb->error < 0)
1113             ret = s->pb->error;
1114         if (ret < 0)
1115             goto fail;
1116         if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
1117             avio_flush(s->pb);
1118         s->internal->header_written = 1;
1119     }
1120
1121 fail:
1122     if ((s->internal->header_written || !s->oformat->write_header) && s->oformat->write_trailer)
1123         if (ret >= 0) {
1124         ret = s->oformat->write_trailer(s);
1125         } else {
1126             s->oformat->write_trailer(s);
1127         }
1128
1129     if (s->oformat->deinit)
1130         s->oformat->deinit(s);
1131
1132     if (s->pb)
1133        avio_flush(s->pb);
1134     if (ret == 0)
1135        ret = s->pb ? s->pb->error : 0;
1136     for (i = 0; i < s->nb_streams; i++) {
1137         av_freep(&s->streams[i]->priv_data);
1138         av_freep(&s->streams[i]->index_entries);
1139     }
1140     if (s->oformat->priv_class)
1141         av_opt_free(s->priv_data);
1142     av_freep(&s->priv_data);
1143     return ret;
1144 }
1145
1146 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
1147                             int64_t *dts, int64_t *wall)
1148 {
1149     if (!s->oformat || !s->oformat->get_output_timestamp)
1150         return AVERROR(ENOSYS);
1151     s->oformat->get_output_timestamp(s, stream, dts, wall);
1152     return 0;
1153 }
1154
1155 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
1156                      AVFormatContext *src, int interleave)
1157 {
1158     AVPacket local_pkt;
1159     int ret;
1160
1161     local_pkt = *pkt;
1162     local_pkt.stream_index = dst_stream;
1163     if (pkt->pts != AV_NOPTS_VALUE)
1164         local_pkt.pts = av_rescale_q(pkt->pts,
1165                                      src->streams[pkt->stream_index]->time_base,
1166                                      dst->streams[dst_stream]->time_base);
1167     if (pkt->dts != AV_NOPTS_VALUE)
1168         local_pkt.dts = av_rescale_q(pkt->dts,
1169                                      src->streams[pkt->stream_index]->time_base,
1170                                      dst->streams[dst_stream]->time_base);
1171     if (pkt->duration)
1172         local_pkt.duration = av_rescale_q(pkt->duration,
1173                                           src->streams[pkt->stream_index]->time_base,
1174                                           dst->streams[dst_stream]->time_base);
1175
1176     if (interleave) ret = av_interleaved_write_frame(dst, &local_pkt);
1177     else            ret = av_write_frame(dst, &local_pkt);
1178     pkt->buf = local_pkt.buf;
1179     pkt->side_data       = local_pkt.side_data;
1180     pkt->side_data_elems = local_pkt.side_data_elems;
1181     return ret;
1182 }
1183
1184 static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index,
1185                                            AVFrame *frame, int interleaved)
1186 {
1187     AVPacket pkt, *pktp;
1188
1189     av_assert0(s->oformat);
1190     if (!s->oformat->write_uncoded_frame)
1191         return AVERROR(ENOSYS);
1192
1193     if (!frame) {
1194         pktp = NULL;
1195     } else {
1196         pktp = &pkt;
1197         av_init_packet(&pkt);
1198         pkt.data = (void *)frame;
1199         pkt.size         = UNCODED_FRAME_PACKET_SIZE;
1200         pkt.pts          =
1201         pkt.dts          = frame->pts;
1202         pkt.duration     = av_frame_get_pkt_duration(frame);
1203         pkt.stream_index = stream_index;
1204         pkt.flags |= AV_PKT_FLAG_UNCODED_FRAME;
1205     }
1206
1207     return interleaved ? av_interleaved_write_frame(s, pktp) :
1208                          av_write_frame(s, pktp);
1209 }
1210
1211 int av_write_uncoded_frame(AVFormatContext *s, int stream_index,
1212                            AVFrame *frame)
1213 {
1214     return av_write_uncoded_frame_internal(s, stream_index, frame, 0);
1215 }
1216
1217 int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index,
1218                                        AVFrame *frame)
1219 {
1220     return av_write_uncoded_frame_internal(s, stream_index, frame, 1);
1221 }
1222
1223 int av_write_uncoded_frame_query(AVFormatContext *s, int stream_index)
1224 {
1225     av_assert0(s->oformat);
1226     if (!s->oformat->write_uncoded_frame)
1227         return AVERROR(ENOSYS);
1228     return s->oformat->write_uncoded_frame(s, stream_index, NULL,
1229                                            AV_WRITE_UNCODED_FRAME_QUERY);
1230 }