You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1020 lines
33KB

  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. #include "avformat.h"
  22. #include "avio_internal.h"
  23. #include "internal.h"
  24. #include "libavcodec/internal.h"
  25. #include "libavcodec/bytestream.h"
  26. #include "libavutil/opt.h"
  27. #include "libavutil/dict.h"
  28. #include "libavutil/pixdesc.h"
  29. #include "libavutil/timestamp.h"
  30. #include "metadata.h"
  31. #include "id3v2.h"
  32. #include "libavutil/avassert.h"
  33. #include "libavutil/avstring.h"
  34. #include "libavutil/internal.h"
  35. #include "libavutil/mathematics.h"
  36. #include "libavutil/parseutils.h"
  37. #include "libavutil/time.h"
  38. #include "riff.h"
  39. #include "audiointerleave.h"
  40. #include "url.h"
  41. #include <stdarg.h>
  42. #if CONFIG_NETWORK
  43. #include "network.h"
  44. #endif
  45. #undef NDEBUG
  46. #include <assert.h>
  47. /**
  48. * @file
  49. * muxing functions for use within libavformat
  50. */
  51. /* fraction handling */
  52. /**
  53. * f = val + (num / den) + 0.5.
  54. *
  55. * 'num' is normalized so that it is such as 0 <= num < den.
  56. *
  57. * @param f fractional number
  58. * @param val integer value
  59. * @param num must be >= 0
  60. * @param den must be >= 1
  61. */
  62. static void frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den)
  63. {
  64. num += (den >> 1);
  65. if (num >= den) {
  66. val += num / den;
  67. num = num % den;
  68. }
  69. f->val = val;
  70. f->num = num;
  71. f->den = den;
  72. }
  73. /**
  74. * Fractional addition to f: f = f + (incr / f->den).
  75. *
  76. * @param f fractional number
  77. * @param incr increment, can be positive or negative
  78. */
  79. static void frac_add(AVFrac *f, int64_t incr)
  80. {
  81. int64_t num, den;
  82. num = f->num + incr;
  83. den = f->den;
  84. if (num < 0) {
  85. f->val += num / den;
  86. num = num % den;
  87. if (num < 0) {
  88. num += den;
  89. f->val--;
  90. }
  91. } else if (num >= den) {
  92. f->val += num / den;
  93. num = num % den;
  94. }
  95. f->num = num;
  96. }
  97. AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precision)
  98. {
  99. AVRational q;
  100. int j;
  101. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  102. q = (AVRational){1, st->codec->sample_rate};
  103. } else {
  104. q = st->codec->time_base;
  105. }
  106. for (j=2; j<14; j+= 1+(j>2))
  107. while (q.den / q.num < min_precision && q.num % j == 0)
  108. q.num /= j;
  109. while (q.den / q.num < min_precision && q.den < (1<<24))
  110. q.den <<= 1;
  111. return q;
  112. }
  113. int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat,
  114. const char *format, const char *filename)
  115. {
  116. AVFormatContext *s = avformat_alloc_context();
  117. int ret = 0;
  118. *avctx = NULL;
  119. if (!s)
  120. goto nomem;
  121. if (!oformat) {
  122. if (format) {
  123. oformat = av_guess_format(format, NULL, NULL);
  124. if (!oformat) {
  125. av_log(s, AV_LOG_ERROR, "Requested output format '%s' is not a suitable output format\n", format);
  126. ret = AVERROR(EINVAL);
  127. goto error;
  128. }
  129. } else {
  130. oformat = av_guess_format(NULL, filename, NULL);
  131. if (!oformat) {
  132. ret = AVERROR(EINVAL);
  133. av_log(s, AV_LOG_ERROR, "Unable to find a suitable output format for '%s'\n",
  134. filename);
  135. goto error;
  136. }
  137. }
  138. }
  139. s->oformat = oformat;
  140. if (s->oformat->priv_data_size > 0) {
  141. s->priv_data = av_mallocz(s->oformat->priv_data_size);
  142. if (!s->priv_data)
  143. goto nomem;
  144. if (s->oformat->priv_class) {
  145. *(const AVClass**)s->priv_data= s->oformat->priv_class;
  146. av_opt_set_defaults(s->priv_data);
  147. }
  148. } else
  149. s->priv_data = NULL;
  150. if (filename)
  151. av_strlcpy(s->filename, filename, sizeof(s->filename));
  152. *avctx = s;
  153. return 0;
  154. nomem:
  155. av_log(s, AV_LOG_ERROR, "Out of memory\n");
  156. ret = AVERROR(ENOMEM);
  157. error:
  158. avformat_free_context(s);
  159. return ret;
  160. }
  161. #if FF_API_ALLOC_OUTPUT_CONTEXT
  162. AVFormatContext *avformat_alloc_output_context(const char *format,
  163. AVOutputFormat *oformat, const char *filename)
  164. {
  165. AVFormatContext *avctx;
  166. int ret = avformat_alloc_output_context2(&avctx, oformat, format, filename);
  167. return ret < 0 ? NULL : avctx;
  168. }
  169. #endif
  170. static int validate_codec_tag(AVFormatContext *s, AVStream *st)
  171. {
  172. const AVCodecTag *avctag;
  173. int n;
  174. enum AVCodecID id = AV_CODEC_ID_NONE;
  175. int64_t tag = -1;
  176. /**
  177. * Check that tag + id is in the table
  178. * If neither is in the table -> OK
  179. * If tag is in the table with another id -> FAIL
  180. * If id is in the table with another tag -> FAIL unless strict < normal
  181. */
  182. for (n = 0; s->oformat->codec_tag[n]; n++) {
  183. avctag = s->oformat->codec_tag[n];
  184. while (avctag->id != AV_CODEC_ID_NONE) {
  185. if (avpriv_toupper4(avctag->tag) == avpriv_toupper4(st->codec->codec_tag)) {
  186. id = avctag->id;
  187. if (id == st->codec->codec_id)
  188. return 1;
  189. }
  190. if (avctag->id == st->codec->codec_id)
  191. tag = avctag->tag;
  192. avctag++;
  193. }
  194. }
  195. if (id != AV_CODEC_ID_NONE)
  196. return 0;
  197. if (tag >= 0 && (st->codec->strict_std_compliance >= FF_COMPLIANCE_NORMAL))
  198. return 0;
  199. return 1;
  200. }
  201. static int init_muxer(AVFormatContext *s, AVDictionary **options)
  202. {
  203. int ret = 0, i;
  204. AVStream *st;
  205. AVDictionary *tmp = NULL;
  206. AVCodecContext *codec = NULL;
  207. AVOutputFormat *of = s->oformat;
  208. AVDictionaryEntry *e;
  209. if (options)
  210. av_dict_copy(&tmp, *options, 0);
  211. if ((ret = av_opt_set_dict(s, &tmp)) < 0)
  212. goto fail;
  213. if (s->priv_data && s->oformat->priv_class && *(const AVClass**)s->priv_data==s->oformat->priv_class &&
  214. (ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
  215. goto fail;
  216. #if FF_API_LAVF_BITEXACT
  217. if (s->nb_streams && s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)
  218. s->flags |= AVFMT_FLAG_BITEXACT;
  219. #endif
  220. // some sanity checks
  221. if (s->nb_streams == 0 && !(of->flags & AVFMT_NOSTREAMS)) {
  222. av_log(s, AV_LOG_ERROR, "No streams to mux were specified\n");
  223. ret = AVERROR(EINVAL);
  224. goto fail;
  225. }
  226. for (i = 0; i < s->nb_streams; i++) {
  227. st = s->streams[i];
  228. codec = st->codec;
  229. switch (codec->codec_type) {
  230. case AVMEDIA_TYPE_AUDIO:
  231. if (codec->sample_rate <= 0) {
  232. av_log(s, AV_LOG_ERROR, "sample rate not set\n");
  233. ret = AVERROR(EINVAL);
  234. goto fail;
  235. }
  236. if (!codec->block_align)
  237. codec->block_align = codec->channels *
  238. av_get_bits_per_sample(codec->codec_id) >> 3;
  239. break;
  240. case AVMEDIA_TYPE_VIDEO:
  241. if (codec->time_base.num <= 0 ||
  242. codec->time_base.den <= 0) { //FIXME audio too?
  243. av_log(s, AV_LOG_ERROR, "time base not set\n");
  244. ret = AVERROR(EINVAL);
  245. goto fail;
  246. }
  247. if ((codec->width <= 0 || codec->height <= 0) &&
  248. !(of->flags & AVFMT_NODIMENSIONS)) {
  249. av_log(s, AV_LOG_ERROR, "dimensions not set\n");
  250. ret = AVERROR(EINVAL);
  251. goto fail;
  252. }
  253. if (av_cmp_q(st->sample_aspect_ratio, codec->sample_aspect_ratio)
  254. && FFABS(av_q2d(st->sample_aspect_ratio) - av_q2d(codec->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
  255. ) {
  256. if (st->sample_aspect_ratio.num != 0 &&
  257. st->sample_aspect_ratio.den != 0 &&
  258. codec->sample_aspect_ratio.den != 0 &&
  259. codec->sample_aspect_ratio.den != 0) {
  260. av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
  261. "(%d/%d) and encoder layer (%d/%d)\n",
  262. st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
  263. codec->sample_aspect_ratio.num,
  264. codec->sample_aspect_ratio.den);
  265. ret = AVERROR(EINVAL);
  266. goto fail;
  267. }
  268. }
  269. break;
  270. }
  271. if (of->codec_tag) {
  272. if ( codec->codec_tag
  273. && codec->codec_id == AV_CODEC_ID_RAWVIDEO
  274. && ( av_codec_get_tag(of->codec_tag, codec->codec_id) == 0
  275. || av_codec_get_tag(of->codec_tag, codec->codec_id) == MKTAG('r', 'a', 'w', ' '))
  276. && !validate_codec_tag(s, st)) {
  277. // the current rawvideo encoding system ends up setting
  278. // the wrong codec_tag for avi/mov, we override it here
  279. codec->codec_tag = 0;
  280. }
  281. if (codec->codec_tag) {
  282. if (!validate_codec_tag(s, st)) {
  283. char tagbuf[32], tagbuf2[32];
  284. av_get_codec_tag_string(tagbuf, sizeof(tagbuf), codec->codec_tag);
  285. av_get_codec_tag_string(tagbuf2, sizeof(tagbuf2), av_codec_get_tag(s->oformat->codec_tag, codec->codec_id));
  286. av_log(s, AV_LOG_ERROR,
  287. "Tag %s/0x%08x incompatible with output codec id '%d' (%s)\n",
  288. tagbuf, codec->codec_tag, codec->codec_id, tagbuf2);
  289. ret = AVERROR_INVALIDDATA;
  290. goto fail;
  291. }
  292. } else
  293. codec->codec_tag = av_codec_get_tag(of->codec_tag, codec->codec_id);
  294. }
  295. if (of->flags & AVFMT_GLOBALHEADER &&
  296. !(codec->flags & CODEC_FLAG_GLOBAL_HEADER))
  297. av_log(s, AV_LOG_WARNING,
  298. "Codec for stream %d does not use global headers "
  299. "but container format requires global headers\n", i);
  300. if (codec->codec_type != AVMEDIA_TYPE_ATTACHMENT)
  301. s->internal->nb_interleaved_streams++;
  302. }
  303. if (!s->priv_data && of->priv_data_size > 0) {
  304. s->priv_data = av_mallocz(of->priv_data_size);
  305. if (!s->priv_data) {
  306. ret = AVERROR(ENOMEM);
  307. goto fail;
  308. }
  309. if (of->priv_class) {
  310. *(const AVClass **)s->priv_data = of->priv_class;
  311. av_opt_set_defaults(s->priv_data);
  312. if ((ret = av_opt_set_dict2(s->priv_data, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
  313. goto fail;
  314. }
  315. }
  316. /* set muxer identification string */
  317. if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
  318. av_dict_set(&s->metadata, "encoder", LIBAVFORMAT_IDENT, 0);
  319. } else {
  320. av_dict_set(&s->metadata, "encoder", NULL, 0);
  321. }
  322. for (e = NULL; e = av_dict_get(s->metadata, "encoder-", e, AV_DICT_IGNORE_SUFFIX); ) {
  323. av_dict_set(&s->metadata, e->key, NULL, 0);
  324. }
  325. if (options) {
  326. av_dict_free(options);
  327. *options = tmp;
  328. }
  329. return 0;
  330. fail:
  331. av_dict_free(&tmp);
  332. return ret;
  333. }
  334. static int init_pts(AVFormatContext *s)
  335. {
  336. int i;
  337. AVStream *st;
  338. /* init PTS generation */
  339. for (i = 0; i < s->nb_streams; i++) {
  340. int64_t den = AV_NOPTS_VALUE;
  341. st = s->streams[i];
  342. switch (st->codec->codec_type) {
  343. case AVMEDIA_TYPE_AUDIO:
  344. den = (int64_t)st->time_base.num * st->codec->sample_rate;
  345. break;
  346. case AVMEDIA_TYPE_VIDEO:
  347. den = (int64_t)st->time_base.num * st->codec->time_base.den;
  348. break;
  349. default:
  350. break;
  351. }
  352. if (den != AV_NOPTS_VALUE) {
  353. if (den <= 0)
  354. return AVERROR_INVALIDDATA;
  355. frac_init(&st->pts, 0, 0, den);
  356. }
  357. }
  358. return 0;
  359. }
  360. int avformat_write_header(AVFormatContext *s, AVDictionary **options)
  361. {
  362. int ret = 0;
  363. if (ret = init_muxer(s, options))
  364. return ret;
  365. if (s->oformat->write_header) {
  366. ret = s->oformat->write_header(s);
  367. if (ret >= 0 && s->pb && s->pb->error < 0)
  368. ret = s->pb->error;
  369. if (ret < 0)
  370. return ret;
  371. }
  372. if ((ret = init_pts(s)) < 0)
  373. return ret;
  374. if (s->avoid_negative_ts < 0) {
  375. if (s->oformat->flags & (AVFMT_TS_NEGATIVE | AVFMT_NOTIMESTAMPS)) {
  376. s->avoid_negative_ts = 0;
  377. } else
  378. s->avoid_negative_ts = 1;
  379. }
  380. return 0;
  381. }
  382. #define AV_PKT_FLAG_UNCODED_FRAME 0x2000
  383. /* Note: using sizeof(AVFrame) from outside lavu is unsafe in general, but
  384. it is only being used internally to this file as a consistency check.
  385. The value is chosen to be very unlikely to appear on its own and to cause
  386. immediate failure if used anywhere as a real size. */
  387. #define UNCODED_FRAME_PACKET_SIZE (INT_MIN / 3 * 2 + (int)sizeof(AVFrame))
  388. //FIXME merge with compute_pkt_fields
  389. static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt)
  390. {
  391. int delay = FFMAX(st->codec->has_b_frames, st->codec->max_b_frames > 0);
  392. int num, den, i;
  393. int frame_size;
  394. av_dlog(s, "compute_pkt_fields2: pts:%s dts:%s cur_dts:%s b:%d size:%d st:%d\n",
  395. av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(st->cur_dts), delay, pkt->size, pkt->stream_index);
  396. if (pkt->duration < 0 && st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) {
  397. av_log(s, AV_LOG_WARNING, "Packet with invalid duration %d in stream %d\n",
  398. pkt->duration, pkt->stream_index);
  399. pkt->duration = 0;
  400. }
  401. /* duration field */
  402. if (pkt->duration == 0) {
  403. ff_compute_frame_duration(&num, &den, st, NULL, pkt);
  404. if (den && num) {
  405. pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den * st->codec->ticks_per_frame, den * (int64_t)st->time_base.num);
  406. }
  407. }
  408. if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0)
  409. pkt->pts = pkt->dts;
  410. //XXX/FIXME this is a temporary hack until all encoders output pts
  411. if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) {
  412. static int warned;
  413. if (!warned) {
  414. av_log(s, AV_LOG_WARNING, "Encoder did not produce proper pts, making some up.\n");
  415. warned = 1;
  416. }
  417. pkt->dts =
  418. // pkt->pts= st->cur_dts;
  419. pkt->pts = st->pts.val;
  420. }
  421. //calculate dts from pts
  422. if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) {
  423. st->pts_buffer[0] = pkt->pts;
  424. for (i = 1; i < delay + 1 && st->pts_buffer[i] == AV_NOPTS_VALUE; i++)
  425. st->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration;
  426. for (i = 0; i<delay && st->pts_buffer[i] > st->pts_buffer[i + 1]; i++)
  427. FFSWAP(int64_t, st->pts_buffer[i], st->pts_buffer[i + 1]);
  428. pkt->dts = st->pts_buffer[0];
  429. }
  430. if (st->cur_dts && st->cur_dts != AV_NOPTS_VALUE &&
  431. ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) &&
  432. st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)) {
  433. av_log(s, AV_LOG_ERROR,
  434. "Application provided invalid, non monotonically increasing dts to muxer in stream %d: %s >= %s\n",
  435. st->index, av_ts2str(st->cur_dts), av_ts2str(pkt->dts));
  436. return AVERROR(EINVAL);
  437. }
  438. if (pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts) {
  439. av_log(s, AV_LOG_ERROR, "pts (%s) < dts (%s) in stream %d\n",
  440. av_ts2str(pkt->pts), av_ts2str(pkt->dts), st->index);
  441. return AVERROR(EINVAL);
  442. }
  443. av_dlog(s, "av_write_frame: pts2:%s dts2:%s\n",
  444. av_ts2str(pkt->pts), av_ts2str(pkt->dts));
  445. st->cur_dts = pkt->dts;
  446. st->pts.val = pkt->dts;
  447. /* update pts */
  448. switch (st->codec->codec_type) {
  449. case AVMEDIA_TYPE_AUDIO:
  450. frame_size = (pkt->flags & AV_PKT_FLAG_UNCODED_FRAME) ?
  451. ((AVFrame *)pkt->data)->nb_samples :
  452. ff_get_audio_frame_size(st->codec, pkt->size, 1);
  453. /* HACK/FIXME, we skip the initial 0 size packets as they are most
  454. * likely equal to the encoder delay, but it would be better if we
  455. * had the real timestamps from the encoder */
  456. if (frame_size >= 0 && (pkt->size || st->pts.num != st->pts.den >> 1 || st->pts.val)) {
  457. frac_add(&st->pts, (int64_t)st->time_base.den * frame_size);
  458. }
  459. break;
  460. case AVMEDIA_TYPE_VIDEO:
  461. frac_add(&st->pts, (int64_t)st->time_base.den * st->codec->time_base.num);
  462. break;
  463. }
  464. return 0;
  465. }
  466. /**
  467. * Make timestamps non negative, move side data from payload to internal struct, call muxer, and restore
  468. * sidedata.
  469. *
  470. * FIXME: this function should NEVER get undefined pts/dts beside when the
  471. * AVFMT_NOTIMESTAMPS is set.
  472. * Those additional safety checks should be dropped once the correct checks
  473. * are set in the callers.
  474. */
  475. static int write_packet(AVFormatContext *s, AVPacket *pkt)
  476. {
  477. int ret, did_split;
  478. if (s->output_ts_offset) {
  479. AVStream *st = s->streams[pkt->stream_index];
  480. int64_t offset = av_rescale_q(s->output_ts_offset, AV_TIME_BASE_Q, st->time_base);
  481. if (pkt->dts != AV_NOPTS_VALUE)
  482. pkt->dts += offset;
  483. if (pkt->pts != AV_NOPTS_VALUE)
  484. pkt->pts += offset;
  485. }
  486. if (s->avoid_negative_ts > 0) {
  487. AVStream *st = s->streams[pkt->stream_index];
  488. int64_t offset = st->mux_ts_offset;
  489. if ((pkt->dts < 0 || s->avoid_negative_ts == 2) && pkt->dts != AV_NOPTS_VALUE && !s->offset) {
  490. s->offset = -pkt->dts;
  491. s->offset_timebase = st->time_base;
  492. }
  493. if (s->offset && !offset) {
  494. offset = st->mux_ts_offset =
  495. av_rescale_q_rnd(s->offset,
  496. s->offset_timebase,
  497. st->time_base,
  498. AV_ROUND_UP);
  499. }
  500. if (pkt->dts != AV_NOPTS_VALUE)
  501. pkt->dts += offset;
  502. if (pkt->pts != AV_NOPTS_VALUE)
  503. pkt->pts += offset;
  504. av_assert2(pkt->dts == AV_NOPTS_VALUE || pkt->dts >= 0);
  505. }
  506. did_split = av_packet_split_side_data(pkt);
  507. if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
  508. AVFrame *frame = (AVFrame *)pkt->data;
  509. av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
  510. ret = s->oformat->write_uncoded_frame(s, pkt->stream_index, &frame, 0);
  511. av_frame_free(&frame);
  512. } else {
  513. ret = s->oformat->write_packet(s, pkt);
  514. }
  515. if (s->flush_packets && s->pb && ret >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
  516. avio_flush(s->pb);
  517. if (did_split)
  518. av_packet_merge_side_data(pkt);
  519. return ret;
  520. }
  521. static int check_packet(AVFormatContext *s, AVPacket *pkt)
  522. {
  523. if (!pkt)
  524. return 0;
  525. if (pkt->stream_index < 0 || pkt->stream_index >= s->nb_streams) {
  526. av_log(s, AV_LOG_ERROR, "Invalid packet stream index: %d\n",
  527. pkt->stream_index);
  528. return AVERROR(EINVAL);
  529. }
  530. if (s->streams[pkt->stream_index]->codec->codec_type == AVMEDIA_TYPE_ATTACHMENT) {
  531. av_log(s, AV_LOG_ERROR, "Received a packet for an attachment stream.\n");
  532. return AVERROR(EINVAL);
  533. }
  534. return 0;
  535. }
  536. int av_write_frame(AVFormatContext *s, AVPacket *pkt)
  537. {
  538. int ret;
  539. ret = check_packet(s, pkt);
  540. if (ret < 0)
  541. return ret;
  542. if (!pkt) {
  543. if (s->oformat->flags & AVFMT_ALLOW_FLUSH) {
  544. ret = s->oformat->write_packet(s, NULL);
  545. if (s->flush_packets && s->pb && s->pb->error >= 0)
  546. avio_flush(s->pb);
  547. if (ret >= 0 && s->pb && s->pb->error < 0)
  548. ret = s->pb->error;
  549. return ret;
  550. }
  551. return 1;
  552. }
  553. ret = compute_pkt_fields2(s, s->streams[pkt->stream_index], pkt);
  554. if (ret < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
  555. return ret;
  556. ret = write_packet(s, pkt);
  557. if (ret >= 0 && s->pb && s->pb->error < 0)
  558. ret = s->pb->error;
  559. if (ret >= 0)
  560. s->streams[pkt->stream_index]->nb_frames++;
  561. return ret;
  562. }
  563. #define CHUNK_START 0x1000
  564. int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
  565. int (*compare)(AVFormatContext *, AVPacket *, AVPacket *))
  566. {
  567. AVPacketList **next_point, *this_pktl;
  568. AVStream *st = s->streams[pkt->stream_index];
  569. int chunked = s->max_chunk_size || s->max_chunk_duration;
  570. int ret;
  571. this_pktl = av_mallocz(sizeof(AVPacketList));
  572. if (!this_pktl)
  573. return AVERROR(ENOMEM);
  574. this_pktl->pkt = *pkt;
  575. #if FF_API_DESTRUCT_PACKET
  576. FF_DISABLE_DEPRECATION_WARNINGS
  577. pkt->destruct = NULL; // do not free original but only the copy
  578. FF_ENABLE_DEPRECATION_WARNINGS
  579. #endif
  580. pkt->buf = NULL;
  581. if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) {
  582. av_assert0(pkt->size == UNCODED_FRAME_PACKET_SIZE);
  583. av_assert0(((AVFrame *)pkt->data)->buf);
  584. } else {
  585. // duplicate the packet if it uses non-allocated memory
  586. if ((ret = av_dup_packet(&this_pktl->pkt)) < 0) {
  587. av_free(this_pktl);
  588. return ret;
  589. }
  590. av_copy_packet_side_data(&this_pktl->pkt, &this_pktl->pkt); // copy side data
  591. }
  592. if (s->streams[pkt->stream_index]->last_in_packet_buffer) {
  593. next_point = &(st->last_in_packet_buffer->next);
  594. } else {
  595. next_point = &s->packet_buffer;
  596. }
  597. if (chunked) {
  598. uint64_t max= av_rescale_q_rnd(s->max_chunk_duration, AV_TIME_BASE_Q, st->time_base, AV_ROUND_UP);
  599. st->interleaver_chunk_size += pkt->size;
  600. st->interleaver_chunk_duration += pkt->duration;
  601. if ( (s->max_chunk_size && st->interleaver_chunk_size > s->max_chunk_size)
  602. || (max && st->interleaver_chunk_duration > max)) {
  603. st->interleaver_chunk_size = 0;
  604. this_pktl->pkt.flags |= CHUNK_START;
  605. if (max && st->interleaver_chunk_duration > max) {
  606. int64_t syncoffset = (st->codec->codec_type == AVMEDIA_TYPE_VIDEO)*max/2;
  607. int64_t syncto = av_rescale(pkt->dts + syncoffset, 1, max)*max - syncoffset;
  608. st->interleaver_chunk_duration += (pkt->dts - syncto)/8 - max;
  609. } else
  610. st->interleaver_chunk_duration = 0;
  611. }
  612. }
  613. if (*next_point) {
  614. if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
  615. goto next_non_null;
  616. if (compare(s, &s->packet_buffer_end->pkt, pkt)) {
  617. while ( *next_point
  618. && ((chunked && !((*next_point)->pkt.flags&CHUNK_START))
  619. || !compare(s, &(*next_point)->pkt, pkt)))
  620. next_point = &(*next_point)->next;
  621. if (*next_point)
  622. goto next_non_null;
  623. } else {
  624. next_point = &(s->packet_buffer_end->next);
  625. }
  626. }
  627. av_assert1(!*next_point);
  628. s->packet_buffer_end = this_pktl;
  629. next_non_null:
  630. this_pktl->next = *next_point;
  631. s->streams[pkt->stream_index]->last_in_packet_buffer =
  632. *next_point = this_pktl;
  633. return 0;
  634. }
  635. static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
  636. AVPacket *pkt)
  637. {
  638. AVStream *st = s->streams[pkt->stream_index];
  639. AVStream *st2 = s->streams[next->stream_index];
  640. int comp = av_compare_ts(next->dts, st2->time_base, pkt->dts,
  641. st->time_base);
  642. if (s->audio_preload && ((st->codec->codec_type == AVMEDIA_TYPE_AUDIO) != (st2->codec->codec_type == AVMEDIA_TYPE_AUDIO))) {
  643. 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);
  644. 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);
  645. if (ts == ts2) {
  646. 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
  647. -( 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;
  648. ts2=0;
  649. }
  650. comp= (ts>ts2) - (ts<ts2);
  651. }
  652. if (comp == 0)
  653. return pkt->stream_index < next->stream_index;
  654. return comp > 0;
  655. }
  656. int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
  657. AVPacket *pkt, int flush)
  658. {
  659. AVPacketList *pktl;
  660. int stream_count = 0, noninterleaved_count = 0;
  661. int i, ret;
  662. if (pkt) {
  663. ret = ff_interleave_add_packet(s, pkt, interleave_compare_dts);
  664. if (ret < 0)
  665. return ret;
  666. }
  667. for (i = 0; i < s->nb_streams; i++) {
  668. if (s->streams[i]->last_in_packet_buffer) {
  669. ++stream_count;
  670. } else if (s->streams[i]->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
  671. ++noninterleaved_count;
  672. }
  673. }
  674. if (s->internal->nb_interleaved_streams == stream_count)
  675. flush = 1;
  676. if (s->max_interleave_delta > 0 && s->packet_buffer && !flush) {
  677. AVPacket *top_pkt = &s->packet_buffer->pkt;
  678. int64_t delta_dts = INT64_MIN;
  679. int64_t top_dts = av_rescale_q(top_pkt->dts,
  680. s->streams[top_pkt->stream_index]->time_base,
  681. AV_TIME_BASE_Q);
  682. for (i = 0; i < s->nb_streams; i++) {
  683. int64_t last_dts;
  684. const AVPacketList *last = s->streams[i]->last_in_packet_buffer;
  685. if (!last)
  686. continue;
  687. last_dts = av_rescale_q(last->pkt.dts,
  688. s->streams[i]->time_base,
  689. AV_TIME_BASE_Q);
  690. delta_dts = FFMAX(delta_dts, last_dts - top_dts);
  691. }
  692. if (delta_dts > s->max_interleave_delta) {
  693. av_log(s, AV_LOG_DEBUG,
  694. "Delay between the first packet and last packet in the "
  695. "muxing queue is %"PRId64" > %"PRId64": forcing output\n",
  696. delta_dts, s->max_interleave_delta);
  697. flush = 1;
  698. }
  699. }
  700. if (stream_count && flush) {
  701. AVStream *st;
  702. pktl = s->packet_buffer;
  703. *out = pktl->pkt;
  704. st = s->streams[out->stream_index];
  705. s->packet_buffer = pktl->next;
  706. if (!s->packet_buffer)
  707. s->packet_buffer_end = NULL;
  708. if (st->last_in_packet_buffer == pktl)
  709. st->last_in_packet_buffer = NULL;
  710. av_freep(&pktl);
  711. return 1;
  712. } else {
  713. av_init_packet(out);
  714. return 0;
  715. }
  716. }
  717. /**
  718. * Interleave an AVPacket correctly so it can be muxed.
  719. * @param out the interleaved packet will be output here
  720. * @param in the input packet
  721. * @param flush 1 if no further packets are available as input and all
  722. * remaining packets should be output
  723. * @return 1 if a packet was output, 0 if no packet could be output,
  724. * < 0 if an error occurred
  725. */
  726. static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
  727. {
  728. if (s->oformat->interleave_packet) {
  729. int ret = s->oformat->interleave_packet(s, out, in, flush);
  730. if (in)
  731. av_free_packet(in);
  732. return ret;
  733. } else
  734. return ff_interleave_packet_per_dts(s, out, in, flush);
  735. }
  736. int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
  737. {
  738. int ret, flush = 0;
  739. ret = check_packet(s, pkt);
  740. if (ret < 0)
  741. goto fail;
  742. if (pkt) {
  743. AVStream *st = s->streams[pkt->stream_index];
  744. av_dlog(s, "av_interleaved_write_frame size:%d dts:%s pts:%s\n",
  745. pkt->size, av_ts2str(pkt->dts), av_ts2str(pkt->pts));
  746. if ((ret = compute_pkt_fields2(s, st, pkt)) < 0 && !(s->oformat->flags & AVFMT_NOTIMESTAMPS))
  747. goto fail;
  748. if (pkt->dts == AV_NOPTS_VALUE && !(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
  749. ret = AVERROR(EINVAL);
  750. goto fail;
  751. }
  752. } else {
  753. av_dlog(s, "av_interleaved_write_frame FLUSH\n");
  754. flush = 1;
  755. }
  756. for (;; ) {
  757. AVPacket opkt;
  758. int ret = interleave_packet(s, &opkt, pkt, flush);
  759. if (pkt) {
  760. memset(pkt, 0, sizeof(*pkt));
  761. av_init_packet(pkt);
  762. pkt = NULL;
  763. }
  764. if (ret <= 0) //FIXME cleanup needed for ret<0 ?
  765. return ret;
  766. ret = write_packet(s, &opkt);
  767. if (ret >= 0)
  768. s->streams[opkt.stream_index]->nb_frames++;
  769. av_free_packet(&opkt);
  770. if (ret < 0)
  771. return ret;
  772. if(s->pb && s->pb->error)
  773. return s->pb->error;
  774. }
  775. fail:
  776. av_packet_unref(pkt);
  777. return ret;
  778. }
  779. int av_write_trailer(AVFormatContext *s)
  780. {
  781. int ret, i;
  782. for (;; ) {
  783. AVPacket pkt;
  784. ret = interleave_packet(s, &pkt, NULL, 1);
  785. if (ret < 0) //FIXME cleanup needed for ret<0 ?
  786. goto fail;
  787. if (!ret)
  788. break;
  789. ret = write_packet(s, &pkt);
  790. if (ret >= 0)
  791. s->streams[pkt.stream_index]->nb_frames++;
  792. av_free_packet(&pkt);
  793. if (ret < 0)
  794. goto fail;
  795. if(s->pb && s->pb->error)
  796. goto fail;
  797. }
  798. if (s->oformat->write_trailer)
  799. ret = s->oformat->write_trailer(s);
  800. fail:
  801. if (s->pb)
  802. avio_flush(s->pb);
  803. if (ret == 0)
  804. ret = s->pb ? s->pb->error : 0;
  805. for (i = 0; i < s->nb_streams; i++) {
  806. av_freep(&s->streams[i]->priv_data);
  807. av_freep(&s->streams[i]->index_entries);
  808. }
  809. if (s->oformat->priv_class)
  810. av_opt_free(s->priv_data);
  811. av_freep(&s->priv_data);
  812. return ret;
  813. }
  814. int av_get_output_timestamp(struct AVFormatContext *s, int stream,
  815. int64_t *dts, int64_t *wall)
  816. {
  817. if (!s->oformat || !s->oformat->get_output_timestamp)
  818. return AVERROR(ENOSYS);
  819. s->oformat->get_output_timestamp(s, stream, dts, wall);
  820. return 0;
  821. }
  822. int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
  823. AVFormatContext *src)
  824. {
  825. AVPacket local_pkt;
  826. local_pkt = *pkt;
  827. local_pkt.stream_index = dst_stream;
  828. if (pkt->pts != AV_NOPTS_VALUE)
  829. local_pkt.pts = av_rescale_q(pkt->pts,
  830. src->streams[pkt->stream_index]->time_base,
  831. dst->streams[dst_stream]->time_base);
  832. if (pkt->dts != AV_NOPTS_VALUE)
  833. local_pkt.dts = av_rescale_q(pkt->dts,
  834. src->streams[pkt->stream_index]->time_base,
  835. dst->streams[dst_stream]->time_base);
  836. if (pkt->duration)
  837. local_pkt.duration = av_rescale_q(pkt->duration,
  838. src->streams[pkt->stream_index]->time_base,
  839. dst->streams[dst_stream]->time_base);
  840. return av_write_frame(dst, &local_pkt);
  841. }
  842. static int av_write_uncoded_frame_internal(AVFormatContext *s, int stream_index,
  843. AVFrame *frame, int interleaved)
  844. {
  845. AVPacket pkt, *pktp;
  846. av_assert0(s->oformat);
  847. if (!s->oformat->write_uncoded_frame)
  848. return AVERROR(ENOSYS);
  849. if (!frame) {
  850. pktp = NULL;
  851. } else {
  852. pktp = &pkt;
  853. av_init_packet(&pkt);
  854. pkt.data = (void *)frame;
  855. pkt.size = UNCODED_FRAME_PACKET_SIZE;
  856. pkt.pts =
  857. pkt.dts = frame->pts;
  858. pkt.duration = av_frame_get_pkt_duration(frame);
  859. pkt.stream_index = stream_index;
  860. pkt.flags |= AV_PKT_FLAG_UNCODED_FRAME;
  861. }
  862. return interleaved ? av_interleaved_write_frame(s, pktp) :
  863. av_write_frame(s, pktp);
  864. }
  865. int av_write_uncoded_frame(AVFormatContext *s, int stream_index,
  866. AVFrame *frame)
  867. {
  868. return av_write_uncoded_frame_internal(s, stream_index, frame, 0);
  869. }
  870. int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index,
  871. AVFrame *frame)
  872. {
  873. return av_write_uncoded_frame_internal(s, stream_index, frame, 1);
  874. }
  875. int av_write_uncoded_frame_query(AVFormatContext *s, int stream_index)
  876. {
  877. av_assert0(s->oformat);
  878. if (!s->oformat->write_uncoded_frame)
  879. return AVERROR(ENOSYS);
  880. return s->oformat->write_uncoded_frame(s, stream_index, NULL,
  881. AV_WRITE_UNCODED_FRAME_QUERY);
  882. }