]> git.sesse.net Git - ffmpeg/blob - libavformat/mux.c
Merge commit '9200514ad8717c63f82101dc394f4378854325bf'
[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     AVCodecParameters *par = st->codecpar;
121     const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(par->format);
122
123     if (par->chroma_location != AVCHROMA_LOC_UNSPECIFIED)
124         return par->chroma_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 (par->field_order == AV_FIELD_UNKNOWN || par->field_order == AV_FIELD_PROGRESSIVE) {
131                 switch (par->codec_id) {
132                 case AV_CODEC_ID_MJPEG:
133                 case AV_CODEC_ID_MPEG1VIDEO: return AVCHROMA_LOC_CENTER;
134                 }
135             }
136             if (par->field_order == AV_FIELD_UNKNOWN || par->field_order != AV_FIELD_PROGRESSIVE) {
137                 switch (par->codec_id) {
138                 case AV_CODEC_ID_MPEG2VIDEO: return AVCHROMA_LOC_LEFT;
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->codecpar->codec_tag)) {
218                 id = avctag->id;
219                 if (id == st->codecpar->codec_id)
220                     return 1;
221             }
222             if (avctag->id == st->codecpar->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     AVCodecParameters *par = 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 FF_API_LAVF_AVCTX
255 FF_DISABLE_DEPRECATION_WARNINGS
256     if (s->nb_streams && s->streams[0]->codec->flags & AV_CODEC_FLAG_BITEXACT) {
257         if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
258 #if FF_API_LAVF_BITEXACT
259             av_log(s, AV_LOG_WARNING,
260                    "Setting the AVFormatContext to bitexact mode, because "
261                    "the AVCodecContext is in that mode. This behavior will "
262                    "change in the future. To keep the current behavior, set "
263                    "AVFormatContext.flags |= AVFMT_FLAG_BITEXACT.\n");
264             s->flags |= AVFMT_FLAG_BITEXACT;
265 #else
266             av_log(s, AV_LOG_WARNING,
267                    "The AVFormatContext is not in set to bitexact mode, only "
268                    "the AVCodecContext. If this is not intended, set "
269                    "AVFormatContext.flags |= AVFMT_FLAG_BITEXACT.\n");
270 #endif
271         }
272     }
273 FF_ENABLE_DEPRECATION_WARNINGS
274 #endif
275
276     // some sanity checks
277     if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) {
278         av_log(s, AV_LOG_ERROR, "No streams to mux were specified\n");
279         ret = AVERROR(EINVAL);
280         goto fail;
281     }
282
283     for (i = 0; i < s->nb_streams; i++) {
284         st  = s->streams[i];
285         par = st->codecpar;
286
287 #if FF_API_LAVF_CODEC_TB
288 FF_DISABLE_DEPRECATION_WARNINGS
289         if (!st->time_base.num && st->codec->time_base.num) {
290             av_log(s, AV_LOG_WARNING, "Using AVStream.codec.time_base as a "
291                    "timebase hint to the muxer is deprecated. Set "
292                    "AVStream.time_base instead.\n");
293             avpriv_set_pts_info(st, 64, st->codec->time_base.num, st->codec->time_base.den);
294         }
295 FF_ENABLE_DEPRECATION_WARNINGS
296 #endif
297
298 #if FF_API_LAVF_AVCTX
299 FF_DISABLE_DEPRECATION_WARNINGS
300         if (st->codecpar->codec_type == AVMEDIA_TYPE_UNKNOWN &&
301             st->codec->codec_type    != AVMEDIA_TYPE_UNKNOWN) {
302             av_log(s, AV_LOG_WARNING, "Using AVStream.codec to pass codec "
303                    "parameters to muxers is deprecated, use AVStream.codecpar "
304                    "instead.\n");
305             ret = avcodec_parameters_from_context(st->codecpar, st->codec);
306             if (ret < 0)
307                 goto fail;
308         }
309 FF_ENABLE_DEPRECATION_WARNINGS
310 #endif
311
312         if (!st->time_base.num) {
313             /* fall back on the default timebase values */
314             if (par->codec_type == AVMEDIA_TYPE_AUDIO && par->sample_rate)
315                 avpriv_set_pts_info(st, 64, 1, par->sample_rate);
316             else
317                 avpriv_set_pts_info(st, 33, 1, 90000);
318         }
319
320         switch (par->codec_type) {
321         case AVMEDIA_TYPE_AUDIO:
322             if (par->sample_rate <= 0) {
323                 av_log(s, AV_LOG_ERROR, "sample rate not set\n");
324                 ret = AVERROR(EINVAL);
325                 goto fail;
326             }
327             if (!par->block_align)
328                 par->block_align = par->channels *
329                                    av_get_bits_per_sample(par->codec_id) >> 3;
330             break;
331         case AVMEDIA_TYPE_VIDEO:
332             if ((par->width <= 0 || par->height <= 0) &&
333                 !(of->flags & AVFMT_NODIMENSIONS)) {
334                 av_log(s, AV_LOG_ERROR, "dimensions not set\n");
335                 ret = AVERROR(EINVAL);
336                 goto fail;
337             }
338             if (av_cmp_q(st->sample_aspect_ratio, par->sample_aspect_ratio)
339                 && fabs(av_q2d(st->sample_aspect_ratio) - av_q2d(par->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
340             ) {
341                 if (st->sample_aspect_ratio.num != 0 &&
342                     st->sample_aspect_ratio.den != 0 &&
343                     par->sample_aspect_ratio.num != 0 &&
344                     par->sample_aspect_ratio.den != 0) {
345                     av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
346                            "(%d/%d) and encoder layer (%d/%d)\n",
347                            st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
348                            par->sample_aspect_ratio.num,
349                            par->sample_aspect_ratio.den);
350                     ret = AVERROR(EINVAL);
351                     goto fail;
352                 }
353             }
354             break;
355         }
356
357         desc = avcodec_descriptor_get(par->codec_id);
358         if (desc && desc->props & AV_CODEC_PROP_REORDER)
359             st->internal->reorder = 1;
360
361         if (of->codec_tag) {
362             if (   par->codec_tag
363                 && par->codec_id == AV_CODEC_ID_RAWVIDEO
364                 && (   av_codec_get_tag(of->codec_tag, par->codec_id) == 0
365                     || av_codec_get_tag(of->codec_tag, par->codec_id) == MKTAG('r', 'a', 'w', ' '))
366                 && !validate_codec_tag(s, st)) {
367                 // the current rawvideo encoding system ends up setting
368                 // the wrong codec_tag for avi/mov, we override it here
369                 par->codec_tag = 0;
370             }
371             if (par->codec_tag) {
372                 if (!validate_codec_tag(s, st)) {
373                     char tagbuf[32], tagbuf2[32];
374                     av_get_codec_tag_string(tagbuf, sizeof(tagbuf), par->codec_tag);
375                     av_get_codec_tag_string(tagbuf2, sizeof(tagbuf2), av_codec_get_tag(s->oformat->codec_tag, par->codec_id));
376                     av_log(s, AV_LOG_ERROR,
377                            "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
378                            tagbuf, par->codec_tag, par->codec_id, tagbuf2);
379                     ret = AVERROR_INVALIDDATA;
380                     goto fail;
381                 }
382             } else
383                 par->codec_tag = av_codec_get_tag(of->codec_tag, par->codec_id);
384         }
385
386         if (par->codec_type != AVMEDIA_TYPE_ATTACHMENT)
387             s->internal->nb_interleaved_streams++;
388     }
389
390     if (!s->priv_data && of->priv_data_size > 0) {
391         s->priv_data = av_mallocz(of->priv_data_size);
392         if (!s->priv_data) {
393             ret = AVERROR(ENOMEM);
394             goto fail;
395         }
396         if (of->priv_class) {
397             *(const AVClass **)s->priv_data = of->priv_class;
398             av_opt_set_defaults(s->priv_data);
399             if ((ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
400                 goto fail;
401         }
402     }
403
404     /* set muxer identification string */
405     if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
406         av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
407     } else {
408         av_dict_set(&s->metadata, "encoder", NULL, 0);
409     }
410
411     for (e = NULL; e = av_dict_get(s->metadata, "encoder-", e, AV_DICT_IGNORE_SUFFIX); ) {
412         av_dict_set(&s->metadata, e->key, NULL, 0);
413     }
414
415     if (options) {
416          av_dict_free(options);
417          *options = tmp;
418     }
419
420     if (s->oformat->init && (ret = s->oformat->init(s)) < 0) {
421         s->oformat->deinit(s);
422         goto fail;
423     }
424
425     return 0;
426
427 fail:
428     av_dict_free(&tmp);
429     return ret;
430 }
431
432 static int init_pts(AVFormatContext *s)
433 {
434     int i;
435     AVStream *st;
436
437     /* init PTS generation */
438     for (i = 0; i < s->nb_streams; i++) {
439         int64_t den = AV_NOPTS_VALUE;
440         st = s->streams[i];
441
442         switch (st->codecpar->codec_type) {
443         case AVMEDIA_TYPE_AUDIO:
444             den = (int64_t)st->time_base.num * st->codecpar->sample_rate;
445             break;
446         case AVMEDIA_TYPE_VIDEO:
447             den = (int64_t)st->time_base.num * st->time_base.den;
448             break;
449         default:
450             break;
451         }
452
453         if (!st->priv_pts)
454             st->priv_pts = av_mallocz(sizeof(*st->priv_pts));
455         if (!st->priv_pts)
456             return AVERROR(ENOMEM);
457
458         if (den != AV_NOPTS_VALUE) {
459             if (den <= 0)
460                 return AVERROR_INVALIDDATA;
461
462             frac_init(st->priv_pts, 0, 0, den);
463         }
464     }
465
466     return 0;
467 }
468
469 int avformat_write_header(AVFormatContext *s, AVDictionary **options)
470 {
471     int ret = 0;
472
473     if ((ret = init_muxer(s, options)) < 0)
474         return ret;
475
476     if (s->oformat->write_header && !s->oformat->check_bitstream) {
477         ret = s->oformat->write_header(s);
478         if (ret >= 0 && s->pb && s->pb->error < 0)
479             ret = s->pb->error;
480         if (ret < 0)
481             return ret;
482         if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
483             avio_flush(s->pb);
484         s->internal->header_written = 1;
485     }
486
487     if ((ret = init_pts(s)) < 0)
488         return ret;
489
490     if (s->avoid_negative_ts < 0) {
491         av_assert2(s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO);
492         if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
493             s->avoid_negative_ts = 0;
494         } else
495             s->avoid_negative_ts = AVFMT_AVOID_NEG_TS_MAKE_NON_NEGATIVE;
496     }
497
498     return 0;
499 }
500
501 #define AV_PKT_FLAG_UNCODED_FRAME 0x2000
502
503 /* Note: using sizeof(AVFrame) from outside lavu is unsafe in general, but
504    it is only being used internally to this file as a consistency check.
505    The value is chosen to be very unlikely to appear on its own and to cause
506    immediate failure if used anywhere as a real size. */
507 #define UNCODED_FRAME_PACKET_SIZE (INT_MIN / 3 * 2 + (int)sizeof(AVFrame))
508
509
510 #if FF_API_COMPUTE_PKT_FIELDS2
511 FF_DISABLE_DEPRECATION_WARNINGS
512 //FIXME merge with compute_pkt_fields
513 static int compute_muxer_pkt_fields(AVFormatContext *s, AVStream *st, AVPacket *pkt)
514 {
515     int delay = FFMAX(st->codecpar->video_delay, st->internal->avctx->max_b_frames > 0);
516     int num, den, i;
517     int frame_size;
518
519     if (!s->internal->missing_ts_warning &&
520         !(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
521         (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE)) {
522         av_log(s, AV_LOG_WARNING,
523                "Timestamps are unset in a packet for stream %d. "
524                "This is deprecated and will stop working in the future. "
525                "Fix your code to set the timestamps properly\n", st->index);
526         s->internal->missing_ts_warning = 1;
527     }
528
529     if (s->debug & FF_FDEBUG_TS)
530         av_log(s, AV_LOG_TRACE, "compute_muxer_pkt_fields: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
531             av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
532
533     if (pkt->duration < 0 && st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) {
534         av_log(s, AV_LOG_WARNING, "Packet with invalid duration %"PRId64" in stream %d\n",
535                pkt->duration, pkt->stream_index);
536         pkt->duration = 0;
537     }
538
539     /* duration field */
540     if (pkt->duration == 0) {
541         ff_compute_frame_duration(s, &num, &den, st, NULL, pkt);
542         if (den && num) {
543             pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
544         }
545     }
546
547     if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
548         pkt->pts = pkt->dts;
549
550     //XXX/FIXME this is a temporary hack until all encoders output pts
551     if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
552         static int warned;
553         if (!warned) {
554             av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
555             warned = 1;
556         }
557         pkt->dts =
558 //        pkt->pts= st->cur_dts;
559             pkt->pts = st->priv_pts->val;
560     }
561
562     //calculate dts from pts
563     if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
564         st->pts_buffer[0] = pkt->pts;
565         for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
566             st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
567         for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
568             FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
569
570         pkt->dts = st->pts_buffer[0];
571     }
572
573     if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
574         ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
575           st->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE &&
576           st->codecpar->codec_type != AVMEDIA_TYPE_DATA &&
577           st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
578         av_log(s, AV_LOG_ERROR,
579                "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
580                st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
581         return AVERROR(EINVAL);
582     }
583     if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
584         av_log(s, AV_LOG_ERROR,
585                "pts (%s) < dts (%s) in stream %d\n",
586                av_ts2str(pkt->pts), av_ts2str(pkt->dts),
587                st->index);
588         return AVERROR(EINVAL);
589     }
590
591     if (s->debug & FF_FDEBUG_TS)
592         av_log(s, AV_LOG_TRACE, "av_write_frame: pts2:%s dts2:%s\n",
593             av_ts2str(pkt->pts), av_ts2str(pkt->dts));
594
595     st->cur_dts = pkt->dts;
596     st->priv_pts->val = pkt->dts;
597
598     /* update pts */
599     switch (st->codec->codec_type) {
600     case AVMEDIA_TYPE_AUDIO:
601         frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
602                      ((AVFrame *)pkt->data)->nb_samples :
603                      av_get_audio_frame_duration(st->codec, pkt->size);
604
605         /* HACK/FIXME, we skip the initial 0 size packets as they are most
606          * likely equal to the encoder delay, but it would be better if we
607          * had the real timestamps from the encoder */
608         if (frame_size >= 0 && (pkt->size || st->priv_pts->num != st->priv_pts->den >> 1 || st->priv_pts->val)) {
609             frac_add(st->priv_pts, (int64_t)st->time_base.den * frame_size);
610         }
611         break;
612     case AVMEDIA_TYPE_VIDEO:
613         frac_add(st->priv_pts, (int64_t)st->time_base.den * st->time_base.num);
614         break;
615     }
616     return 0;
617 }
618 FF_ENABLE_DEPRECATION_WARNINGS
619 #endif
620
621 /**
622  * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
623  * sidedata.
624  *
625  * FIXME: this function should NEVER get undefined pts/dts beside when the
626  * AVFMT_NOTIMESTAMPS is set.
627  * Those additional safety checks should be dropped once the correct checks
628  * are set in the callers.
629  */
630 static int write_packet(AVFormatContext *s, AVPacket *pkt)
631 {
632     int ret, did_split;
633
634     if (s->output_ts_offset) {
635         AVStream *st = s->streams[pkt->stream_index];
636         int64_t offset = av_rescale_q(s->output_ts_offset, AV_TIME_BASE_Q, st->time_base);
637
638         if (pkt->dts != AV_NOPTS_VALUE)
639             pkt->dts += offset;
640         if (pkt->pts != AV_NOPTS_VALUE)
641             pkt->pts += offset;
642     }
643
644     if (s->avoid_negative_ts > 0) {
645         AVStream *st = s->streams[pkt->stream_index];
646         int64_t offset = st->mux_ts_offset;
647         int64_t ts = s->internal->avoid_negative_ts_use_pts ? pkt->pts : pkt->dts;
648
649         if (s->internal->offset == AV_NOPTS_VALUE && ts != AV_NOPTS_VALUE &&
650             (ts < 0 || s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO)) {
651             s->internal->offset = -ts;
652             s->internal->offset_timebase = st->time_base;
653         }
654
655         if (s->internal->offset != AV_NOPTS_VALUE && !offset) {
656             offset = st->mux_ts_offset =
657                 av_rescale_q_rnd(s->internal->offset,
658                                  s->internal->offset_timebase,
659                                  st->time_base,
660                                  AV_ROUND_UP);
661         }
662
663         if (pkt->dts != AV_NOPTS_VALUE)
664             pkt->dts += offset;
665         if (pkt->pts != AV_NOPTS_VALUE)
666             pkt->pts += offset;
667
668         if (s->internal->avoid_negative_ts_use_pts) {
669             if (pkt->pts != AV_NOPTS_VALUE && pkt->pts < 0) {
670                 av_log(s, AV_LOG_WARNING, "failed to avoid negative "
671                     "pts %s in stream %d.\n"
672                     "Try -avoid_negative_ts 1 as a possible workaround.\n",
673                     av_ts2str(pkt->dts),
674                     pkt->stream_index
675                 );
676             }
677         } else {
678             av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0 || s->max_interleave_delta > 0);
679             if (pkt->dts != AV_NOPTS_VALUE && pkt->dts < 0) {
680                 av_log(s, AV_LOG_WARNING,
681                     "Packets poorly interleaved, failed to avoid negative "
682                     "timestamp %s in stream %d.\n"
683                     "Try -max_interleave_delta 0 as a possible workaround.\n",
684                     av_ts2str(pkt->dts),
685                     pkt->stream_index
686                 );
687             }
688         }
689     }
690
691     did_split = av_packet_split_side_data(pkt);
692
693     if (!s->internal->header_written && s->oformat->write_header) {
694         ret = s->oformat->write_header(s);
695         if (ret >= 0 && s->pb && s->pb->error < 0)
696             ret = s->pb->error;
697         if (ret < 0)
698             goto fail;
699         if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
700             avio_flush(s->pb);
701         s->internal->header_written = 1;
702     }
703
704     if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
705         AVFrame *frame = (AVFrame *)pkt->data;
706         av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
707         ret = s->oformat->write_uncoded_frame(s, pkt->stream_index, &frame, 0);
708         av_frame_free(&frame);
709     } else {
710         ret = s->oformat->write_packet(s, pkt);
711     }
712
713     if (s->pb && ret >= 0) {
714         if (s->flush_packets && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
715             avio_flush(s->pb);
716         if (s->pb->error < 0)
717             ret = s->pb->error;
718     }
719
720 fail:
721     if (did_split)
722         av_packet_merge_side_data(pkt);
723
724     return ret;
725 }
726
727 static int check_packet(AVFormatContext *s, AVPacket *pkt)
728 {
729     if (!pkt)
730         return 0;
731
732     if (pkt->stream_index < 0 || pkt->stream_index >= s->nb_streams) {
733         av_log(s, AV_LOG_ERROR, "Invalid packet stream index: %d\n",
734                pkt->stream_index);
735         return AVERROR(EINVAL);
736     }
737
738     if (s->streams[pkt->stream_index]->codecpar->codec_type == AVMEDIA_TYPE_ATTACHMENT) {
739         av_log(s, AV_LOG_ERROR, "Received a packet for an attachment stream.\n");
740         return AVERROR(EINVAL);
741     }
742
743     return 0;
744 }
745
746 static int prepare_input_packet(AVFormatContext *s, AVPacket *pkt)
747 {
748     int ret;
749
750     ret = check_packet(s, pkt);
751     if (ret < 0)
752         return ret;
753
754 #if !FF_API_COMPUTE_PKT_FIELDS2
755     /* sanitize the timestamps */
756     if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
757         AVStream *st = s->streams[pkt->stream_index];
758
759         /* when there is no reordering (so dts is equal to pts), but
760          * only one of them is set, set the other as well */
761         if (!st->internal->reorder) {
762             if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE)
763                 pkt->pts = pkt->dts;
764             if (pkt->dts == AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE)
765                 pkt->dts = pkt->pts;
766         }
767
768         /* check that the timestamps are set */
769         if (pkt->pts == AV_NOPTS_VALUE || pkt->dts == AV_NOPTS_VALUE) {
770             av_log(s, AV_LOG_ERROR,
771                    "Timestamps are unset in a packet for stream %d\n", st->index);
772             return AVERROR(EINVAL);
773         }
774
775         /* check that the dts are increasing (or at least non-decreasing,
776          * if the format allows it */
777         if (st->cur_dts != AV_NOPTS_VALUE &&
778             ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) && st->cur_dts >= pkt->dts) ||
779              st->cur_dts > pkt->dts)) {
780             av_log(s, AV_LOG_ERROR,
781                    "Application provided invalid, non monotonically increasing "
782                    "dts to muxer in stream %d: %" PRId64 " >= %" PRId64 "\n",
783                    st->index, st->cur_dts, pkt->dts);
784             return AVERROR(EINVAL);
785         }
786
787         if (pkt->pts < pkt->dts) {
788             av_log(s, AV_LOG_ERROR, "pts %" PRId64 " < dts %" PRId64 " in stream %d\n",
789                    pkt->pts, pkt->dts, st->index);
790             return AVERROR(EINVAL);
791         }
792     }
793 #endif
794
795     return 0;
796 }
797
798 int av_write_frame(AVFormatContext *s, AVPacket *pkt)
799 {
800     int ret;
801
802     ret = prepare_input_packet(s, pkt);
803     if (ret < 0)
804         return ret;
805
806     if (!pkt) {
807         if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
808             ret = s->oformat->write_packet(s, NULL);
809             if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
810                 avio_flush(s->pb);
811             if (ret >= 0 && s->pb && s->pb->error < 0)
812                 ret = s->pb->error;
813             return ret;
814         }
815         return 1;
816     }
817
818 #if FF_API_COMPUTE_PKT_FIELDS2
819     ret = compute_muxer_pkt_fields(s, s->streams[pkt->stream_index], pkt);
820
821     if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
822         return ret;
823 #endif
824
825     ret = write_packet(s, pkt);
826     if (ret >= 0 && s->pb && s->pb->error < 0)
827         ret = s->pb->error;
828
829     if (ret >= 0)
830         s->streams[pkt->stream_index]->nb_frames++;
831     return ret;
832 }
833
834 #define CHUNK_START 0x1000
835
836 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
837                              int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
838 {
839     int ret;
840     AVPacketList **next_point, *this_pktl;
841     AVStream *st   = s->streams[pkt->stream_index];
842     int chunked    = s->max_chunk_size || s->max_chunk_duration;
843
844     this_pktl      = av_mallocz(sizeof(AVPacketList));
845     if (!this_pktl)
846         return AVERROR(ENOMEM);
847     if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
848         av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
849         av_assert0(((AVFrame *)pkt->data)->buf);
850         this_pktl->pkt = *pkt;
851         pkt->buf = NULL;
852         pkt->side_data = NULL;
853         pkt->side_data_elems = 0;
854     } else {
855         if ((ret = av_packet_ref(&this_pktl->pkt, pkt)) < 0) {
856             av_free(this_pktl);
857             return ret;
858         }
859     }
860
861     if (s->streams[pkt->stream_index]->last_in_packet_buffer) {
862         next_point = &(st->last_in_packet_buffer->next);
863     } else {
864         next_point = &s->internal->packet_buffer;
865     }
866
867     if (chunked) {
868         uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
869         st->interleaver_chunk_size     += pkt->size;
870         st->interleaver_chunk_duration += pkt->duration;
871         if (   (s->max_chunk_size && st->interleaver_chunk_size > s->max_chunk_size)
872             || (max && st->interleaver_chunk_duration           > max)) {
873             st->interleaver_chunk_size      = 0;
874             this_pktl->pkt.flags |= CHUNK_START;
875             if (max && st->interleaver_chunk_duration > max) {
876                 int64_t syncoffset = (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
877                 int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
878
879                 st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
880             } else
881                 st->interleaver_chunk_duration = 0;
882         }
883     }
884     if (*next_point) {
885         if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
886             goto next_non_null;
887
888         if (compare(s, &s->internal->packet_buffer_end->pkt, pkt)) {
889             while (   *next_point
890                    && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
891                        || !compare(s, &(*next_point)->pkt, pkt)))
892                 next_point = &(*next_point)->next;
893             if (*next_point)
894                 goto next_non_null;
895         } else {
896             next_point = &(s->internal->packet_buffer_end->next);
897         }
898     }
899     av_assert1(!*next_point);
900
901     s->internal->packet_buffer_end = this_pktl;
902 next_non_null:
903
904     this_pktl->next = *next_point;
905
906     s->streams[pkt->stream_index]->last_in_packet_buffer =
907         *next_point                                      = this_pktl;
908
909     av_packet_unref(pkt);
910
911     return 0;
912 }
913
914 static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
915                                   AVPacket *pkt)
916 {
917     AVStream *st  = s->streams[pkt->stream_index];
918     AVStream *st2 = s->streams[next->stream_index];
919     int comp      = av_compare_ts(next->dts, st2->time_base, pkt->dts,
920                                   st->time_base);
921     if (s->audio_preload && ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) != (st2->codecpar->codec_type == AVMEDIA_TYPE_AUDIO))) {
922         int64_t ts = av_rescale_q(pkt ->dts, st ->time_base, AV_TIME_BASE_Q) - s->audio_preload*(st ->codecpar->codec_type == AVMEDIA_TYPE_AUDIO);
923         int64_t ts2= av_rescale_q(next->dts, st2->time_base, AV_TIME_BASE_Q) - s->audio_preload*(st2->codecpar->codec_type == AVMEDIA_TYPE_AUDIO);
924         if (ts == ts2) {
925             ts= ( pkt ->dts* st->time_base.num*AV_TIME_BASE - s->audio_preload*(int64_t)(st ->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)* st->time_base.den)*st2->time_base.den
926                -( next->dts*st2->time_base.num*AV_TIME_BASE - s->audio_preload*(int64_t)(st2->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)*st2->time_base.den)* st->time_base.den;
927             ts2=0;
928         }
929         comp= (ts>ts2) - (ts<ts2);
930     }
931
932     if (comp == 0)
933         return pkt->stream_index < next->stream_index;
934     return comp > 0;
935 }
936
937 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
938                                  AVPacket *pkt, int flush)
939 {
940     AVPacketList *pktl;
941     int stream_count = 0;
942     int noninterleaved_count = 0;
943     int i, ret;
944
945     if (pkt) {
946         if ((ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts)) < 0)
947             return ret;
948     }
949
950     for (i = 0; i < s->nb_streams; i++) {
951         if (s->streams[i]->last_in_packet_buffer) {
952             ++stream_count;
953         } else if (s->streams[i]->codecpar->codec_type != AVMEDIA_TYPE_ATTACHMENT &&
954                    s->streams[i]->codecpar->codec_id != AV_CODEC_ID_VP8 &&
955                    s->streams[i]->codecpar->codec_id != AV_CODEC_ID_VP9) {
956             ++noninterleaved_count;
957         }
958     }
959
960     if (s->internal->nb_interleaved_streams == stream_count)
961         flush = 1;
962
963     if (s->max_interleave_delta > 0 &&
964         s->internal->packet_buffer &&
965         !flush &&
966         s->internal->nb_interleaved_streams == stream_count+noninterleaved_count
967     ) {
968         AVPacket *top_pkt = &s->internal->packet_buffer->pkt;
969         int64_t delta_dts = INT64_MIN;
970         int64_t top_dts = av_rescale_q(top_pkt->dts,
971                                        s->streams[top_pkt->stream_index]->time_base,
972                                        AV_TIME_BASE_Q);
973
974         for (i = 0; i < s->nb_streams; i++) {
975             int64_t last_dts;
976             const AVPacketList *last = s->streams[i]->last_in_packet_buffer;
977
978             if (!last)
979                 continue;
980
981             last_dts = av_rescale_q(last->pkt.dts,
982                                     s->streams[i]->time_base,
983                                     AV_TIME_BASE_Q);
984             delta_dts = FFMAX(delta_dts, last_dts - top_dts);
985         }
986
987         if (delta_dts > s->max_interleave_delta) {
988             av_log(s, AV_LOG_DEBUG,
989                    "Delay between the first packet and last packet in the "
990                    "muxing queue is %"PRId64" > %"PRId64": forcing output\n",
991                    delta_dts, s->max_interleave_delta);
992             flush = 1;
993         }
994     }
995
996     if (stream_count && flush) {
997         AVStream *st;
998         pktl = s->internal->packet_buffer;
999         *out = pktl->pkt;
1000         st   = s->streams[out->stream_index];
1001
1002         s->internal->packet_buffer = pktl->next;
1003         if (!s->internal->packet_buffer)
1004             s->internal->packet_buffer_end = NULL;
1005
1006         if (st->last_in_packet_buffer == pktl)
1007             st->last_in_packet_buffer = NULL;
1008         av_freep(&pktl);
1009
1010         return 1;
1011     } else {
1012         av_init_packet(out);
1013         return 0;
1014     }
1015 }
1016
1017 /**
1018  * Interleave an AVPacket correctly so it can be muxed.
1019  * @param out the interleaved packet will be output here
1020  * @param in the input packet
1021  * @param flush 1 if no further packets are available as input and all
1022  *              remaining packets should be output
1023  * @return 1 if a packet was output, 0 if no packet could be output,
1024  *         < 0 if an error occurred
1025  */
1026 static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
1027 {
1028     if (s->oformat->interleave_packet) {
1029         int ret = s->oformat->interleave_packet(s, out, in, flush);
1030         if (in)
1031             av_packet_unref(in);
1032         return ret;
1033     } else
1034         return ff_interleave_packet_per_dts(s, out, in, flush);
1035 }
1036
1037 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
1038 {
1039     int ret, flush = 0;
1040
1041     ret = prepare_input_packet(s, pkt);
1042     if (ret < 0)
1043         goto fail;
1044
1045     if (pkt) {
1046         AVStream *st = s->streams[pkt->stream_index];
1047
1048         if (s->oformat->check_bitstream) {
1049             if (!st->internal->bitstream_checked) {
1050                 if ((ret = s->oformat->check_bitstream(s, pkt)) < 0)
1051                     goto fail;
1052                 else if (ret == 1)
1053                     st->internal->bitstream_checked = 1;
1054             }
1055         }
1056
1057         av_apply_bitstream_filters(st->internal->avctx, pkt, st->internal->bsfc);
1058         if (pkt->size == 0 && pkt->side_data_elems == 0)
1059             return 0;
1060         if (!st->codecpar->extradata && st->internal->avctx->extradata) {
1061             int eret = ff_alloc_extradata(st->codecpar, st->internal->avctx->extradata_size);
1062             if (eret < 0)
1063                 return AVERROR(ENOMEM);
1064             st->codecpar->extradata_size = st->internal->avctx->extradata_size;
1065             memcpy(st->codecpar->extradata, st->internal->avctx->extradata, st->internal->avctx->extradata_size);
1066         }
1067
1068         if (s->debug & FF_FDEBUG_TS)
1069             av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
1070                 pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
1071
1072 #if FF_API_COMPUTE_PKT_FIELDS2
1073         if ((ret = compute_muxer_pkt_fields(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
1074             goto fail;
1075 #endif
1076
1077         if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
1078             ret = AVERROR(EINVAL);
1079             goto fail;
1080         }
1081     } else {
1082         av_log(s, AV_LOG_TRACE, "av_interleaved_write_frame FLUSH\n");
1083         flush = 1;
1084     }
1085
1086     for (;; ) {
1087         AVPacket opkt;
1088         int ret = interleave_packet(s, &opkt, pkt, flush);
1089         if (pkt) {
1090             memset(pkt, 0, sizeof(*pkt));
1091             av_init_packet(pkt);
1092             pkt = NULL;
1093         }
1094         if (ret <= 0) //FIXME cleanup needed for ret<0 ?
1095             return ret;
1096
1097         ret = write_packet(s, &opkt);
1098         if (ret >= 0)
1099             s->streams[opkt.stream_index]->nb_frames++;
1100
1101         av_packet_unref(&opkt);
1102
1103         if (ret < 0)
1104             return ret;
1105         if(s->pb && s->pb->error)
1106             return s->pb->error;
1107     }
1108 fail:
1109     av_packet_unref(pkt);
1110     return ret;
1111 }
1112
1113 int av_write_trailer(AVFormatContext *s)
1114 {
1115     int ret, i;
1116
1117     for (;; ) {
1118         AVPacket pkt;
1119         ret = interleave_packet(s, &pkt, NULL, 1);
1120         if (ret < 0)
1121             goto fail;
1122         if (!ret)
1123             break;
1124
1125         ret = write_packet(s, &pkt);
1126         if (ret >= 0)
1127             s->streams[pkt.stream_index]->nb_frames++;
1128
1129         av_packet_unref(&pkt);
1130
1131         if (ret < 0)
1132             goto fail;
1133         if(s->pb && s->pb->error)
1134             goto fail;
1135     }
1136
1137     if (!s->internal->header_written && s->oformat->write_header) {
1138         ret = s->oformat->write_header(s);
1139         if (ret >= 0 && s->pb && s->pb->error < 0)
1140             ret = s->pb->error;
1141         if (ret < 0)
1142             goto fail;
1143         if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
1144             avio_flush(s->pb);
1145         s->internal->header_written = 1;
1146     }
1147
1148 fail:
1149     if ((s->internal->header_written || !s->oformat->write_header) && s->oformat->write_trailer)
1150         if (ret >= 0) {
1151         ret = s->oformat->write_trailer(s);
1152         } else {
1153             s->oformat->write_trailer(s);
1154         }
1155
1156     if (s->oformat->deinit)
1157         s->oformat->deinit(s);
1158
1159     if (s->pb)
1160        avio_flush(s->pb);
1161     if (ret == 0)
1162        ret = s->pb ? s->pb->error : 0;
1163     for (i = 0; i < s->nb_streams; i++) {
1164         av_freep(&s->streams[i]->priv_data);
1165         av_freep(&s->streams[i]->index_entries);
1166     }
1167     if (s->oformat->priv_class)
1168         av_opt_free(s->priv_data);
1169     av_freep(&s->priv_data);
1170     return ret;
1171 }
1172
1173 int av_get_output_timestamp(struct AVFormatContext *s, int stream,
1174                             int64_t *dts, int64_t *wall)
1175 {
1176     if (!s->oformat || !s->oformat->get_output_timestamp)
1177         return AVERROR(ENOSYS);
1178     s->oformat->get_output_timestamp(s, stream, dts, wall);
1179     return 0;
1180 }
1181
1182 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
1183                      AVFormatContext *src, int interleave)
1184 {
1185     AVPacket local_pkt;
1186     int ret;
1187
1188     local_pkt = *pkt;
1189     local_pkt.stream_index = dst_stream;
1190     if (pkt->pts != AV_NOPTS_VALUE)
1191         local_pkt.pts = av_rescale_q(pkt->pts,
1192                                      src->streams[pkt->stream_index]->time_base,
1193                                      dst->streams[dst_stream]->time_base);
1194     if (pkt->dts != AV_NOPTS_VALUE)
1195         local_pkt.dts = av_rescale_q(pkt->dts,
1196                                      src->streams[pkt->stream_index]->time_base,
1197                                      dst->streams[dst_stream]->time_base);
1198     if (pkt->duration)
1199         local_pkt.duration = av_rescale_q(pkt->duration,
1200                                           src->streams[pkt->stream_index]->time_base,
1201                                           dst->streams[dst_stream]->time_base);
1202
1203     if (interleave) ret = av_interleaved_write_frame(dst, &local_pkt);
1204     else            ret = av_write_frame(dst, &local_pkt);
1205     pkt->buf = local_pkt.buf;
1206     pkt->side_data       = local_pkt.side_data;
1207     pkt->side_data_elems = local_pkt.side_data_elems;
1208     return ret;
1209 }
1210
1211 static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index,
1212                                            AVFrame *frame, int interleaved)
1213 {
1214     AVPacket pkt, *pktp;
1215
1216     av_assert0(s->oformat);
1217     if (!s->oformat->write_uncoded_frame)
1218         return AVERROR(ENOSYS);
1219
1220     if (!frame) {
1221         pktp = NULL;
1222     } else {
1223         pktp = &pkt;
1224         av_init_packet(&pkt);
1225         pkt.data = (void *)frame;
1226         pkt.size         = UNCODED_FRAME_PACKET_SIZE;
1227         pkt.pts          =
1228         pkt.dts          = frame->pts;
1229         pkt.duration     = av_frame_get_pkt_duration(frame);
1230         pkt.stream_index = stream_index;
1231         pkt.flags |= AV_PKT_FLAG_UNCODED_FRAME;
1232     }
1233
1234     return interleaved ? av_interleaved_write_frame(s, pktp) :
1235                          av_write_frame(s, pktp);
1236 }
1237
1238 int av_write_uncoded_frame(AVFormatContext *s, int stream_index,
1239                            AVFrame *frame)
1240 {
1241     return av_write_uncoded_frame_internal(s, stream_index, frame, 0);
1242 }
1243
1244 int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index,
1245                                        AVFrame *frame)
1246 {
1247     return av_write_uncoded_frame_internal(s, stream_index, frame, 1);
1248 }
1249
1250 int av_write_uncoded_frame_query(AVFormatContext *s, int stream_index)
1251 {
1252     av_assert0(s->oformat);
1253     if (!s->oformat->write_uncoded_frame)
1254         return AVERROR(ENOSYS);
1255     return s->oformat->write_uncoded_frame(s, stream_index, NULL,
1256                                            AV_WRITE_UNCODED_FRAME_QUERY);
1257 }