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.

780 lines
26KB

  1. /*
  2. * AVI encoder.
  3. * Copyright (c) 2000 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #include "avformat.h"
  20. #include "avi.h"
  21. /*
  22. * TODO:
  23. * - fill all fields if non streamed (nb_frames for example)
  24. */
  25. #ifdef CONFIG_MUXERS
  26. typedef struct AVIIentry {
  27. unsigned int flags, pos, len;
  28. } AVIIentry;
  29. #define AVI_INDEX_CLUSTER_SIZE 16384
  30. typedef struct AVIIndex {
  31. offset_t indx_start;
  32. int entry;
  33. int ents_allocated;
  34. AVIIentry** cluster;
  35. } AVIIndex;
  36. typedef struct {
  37. offset_t riff_start, movi_list, odml_list;
  38. offset_t frames_hdr_all, frames_hdr_strm[MAX_STREAMS];
  39. int audio_strm_length[MAX_STREAMS];
  40. int riff_id;
  41. int packet_count[MAX_STREAMS];
  42. AVIIndex indexes[MAX_STREAMS];
  43. } AVIContext;
  44. static inline AVIIentry* avi_get_ientry(AVIIndex* idx, int ent_id)
  45. {
  46. int cl = ent_id / AVI_INDEX_CLUSTER_SIZE;
  47. int id = ent_id % AVI_INDEX_CLUSTER_SIZE;
  48. return &idx->cluster[cl][id];
  49. }
  50. offset_t start_tag(ByteIOContext *pb, const char *tag)
  51. {
  52. put_tag(pb, tag);
  53. put_le32(pb, 0);
  54. return url_ftell(pb);
  55. }
  56. void end_tag(ByteIOContext *pb, offset_t start)
  57. {
  58. offset_t pos;
  59. pos = url_ftell(pb);
  60. url_fseek(pb, start - 4, SEEK_SET);
  61. put_le32(pb, (uint32_t)(pos - start));
  62. url_fseek(pb, pos, SEEK_SET);
  63. }
  64. #endif //CONFIG_MUXERS
  65. /* Note: when encoding, the first matching tag is used, so order is
  66. important if multiple tags possible for a given codec. */
  67. const CodecTag codec_bmp_tags[] = {
  68. { CODEC_ID_H264, MKTAG('H', '2', '6', '4') },
  69. { CODEC_ID_H264, MKTAG('h', '2', '6', '4') },
  70. { CODEC_ID_H264, MKTAG('X', '2', '6', '4') },
  71. { CODEC_ID_H264, MKTAG('x', '2', '6', '4') },
  72. { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') },
  73. { CODEC_ID_H264, MKTAG('V', 'S', 'S', 'H') },
  74. { CODEC_ID_H263, MKTAG('H', '2', '6', '3') },
  75. { CODEC_ID_H263P, MKTAG('H', '2', '6', '3') },
  76. { CODEC_ID_H263I, MKTAG('I', '2', '6', '3') }, /* intel h263 */
  77. { CODEC_ID_H261, MKTAG('H', '2', '6', '1') },
  78. /* added based on MPlayer */
  79. { CODEC_ID_H263P, MKTAG('U', '2', '6', '3') },
  80. { CODEC_ID_H263P, MKTAG('v', 'i', 'v', '1') },
  81. { CODEC_ID_MPEG4, MKTAG('F', 'M', 'P', '4')},
  82. { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X'), .invalid_asf = 1 },
  83. { CODEC_ID_MPEG4, MKTAG('D', 'X', '5', '0'), .invalid_asf = 1 },
  84. { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D'), .invalid_asf = 1 },
  85. { CODEC_ID_MPEG4, MKTAG('M', 'P', '4', 'S') },
  86. { CODEC_ID_MPEG4, MKTAG('M', '4', 'S', '2') },
  87. { CODEC_ID_MPEG4, MKTAG(0x04, 0, 0, 0) }, /* some broken avi use this */
  88. /* added based on MPlayer */
  89. { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', '1') },
  90. { CODEC_ID_MPEG4, MKTAG('B', 'L', 'Z', '0') },
  91. { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') },
  92. { CODEC_ID_MPEG4, MKTAG('U', 'M', 'P', '4') },
  93. { CODEC_ID_MPEG4, MKTAG('W', 'V', '1', 'F') },
  94. { CODEC_ID_MPEG4, MKTAG('S', 'E', 'D', 'G') },
  95. { CODEC_ID_MPEG4, MKTAG('R', 'M', 'P', '4') },
  96. { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '3'), .invalid_asf = 1 }, /* default signature when using MSMPEG4 */
  97. { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', '4', '3') },
  98. /* added based on MPlayer */
  99. { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', 'G', '3') },
  100. { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '5') },
  101. { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '6') },
  102. { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '4') },
  103. { CODEC_ID_MSMPEG4V3, MKTAG('A', 'P', '4', '1') },
  104. { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '1') },
  105. { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '0') },
  106. { CODEC_ID_MSMPEG4V2, MKTAG('M', 'P', '4', '2') },
  107. /* added based on MPlayer */
  108. { CODEC_ID_MSMPEG4V2, MKTAG('D', 'I', 'V', '2') },
  109. { CODEC_ID_MSMPEG4V1, MKTAG('M', 'P', 'G', '4') },
  110. { CODEC_ID_WMV1, MKTAG('W', 'M', 'V', '1') },
  111. /* added based on MPlayer */
  112. { CODEC_ID_WMV2, MKTAG('W', 'M', 'V', '2') },
  113. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'd') },
  114. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', 'd') },
  115. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'l') },
  116. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '2', '5') },
  117. { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '1') },
  118. { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '2') },
  119. { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'p', 'g', '2') },
  120. { CODEC_ID_MPEG1VIDEO, MKTAG('P', 'I', 'M', '1') },
  121. { CODEC_ID_MPEG1VIDEO, MKTAG('V', 'C', 'R', '2') },
  122. { CODEC_ID_MPEG1VIDEO, 0x10000001 },
  123. { CODEC_ID_MPEG2VIDEO, 0x10000002 },
  124. { CODEC_ID_MPEG2VIDEO, MKTAG('D', 'V', 'R', ' ') },
  125. { CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') },
  126. { CODEC_ID_MJPEG, MKTAG('L', 'J', 'P', 'G') },
  127. { CODEC_ID_LJPEG, MKTAG('L', 'J', 'P', 'G') },
  128. { CODEC_ID_MJPEG, MKTAG('J', 'P', 'G', 'L') }, /* Pegasus lossless JPEG */
  129. { CODEC_ID_HUFFYUV, MKTAG('H', 'F', 'Y', 'U') },
  130. { CODEC_ID_FFVHUFF, MKTAG('F', 'F', 'V', 'H') },
  131. { CODEC_ID_CYUV, MKTAG('C', 'Y', 'U', 'V') },
  132. { CODEC_ID_RAWVIDEO, MKTAG('I', '4', '2', '0') },
  133. { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'Y', '2') },
  134. { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', '2') },
  135. { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') },
  136. { CODEC_ID_RAWVIDEO, MKTAG('I', 'Y', 'U', 'V') },
  137. { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') },
  138. { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') },
  139. { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
  140. { CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') },
  141. { CODEC_ID_ASV1, MKTAG('A', 'S', 'V', '1') },
  142. { CODEC_ID_ASV2, MKTAG('A', 'S', 'V', '2') },
  143. { CODEC_ID_VCR1, MKTAG('V', 'C', 'R', '1') },
  144. { CODEC_ID_FFV1, MKTAG('F', 'F', 'V', '1') },
  145. { CODEC_ID_XAN_WC4, MKTAG('X', 'x', 'a', 'n') },
  146. { CODEC_ID_MSRLE, MKTAG('m', 'r', 'l', 'e') },
  147. { CODEC_ID_MSRLE, MKTAG(0x1, 0x0, 0x0, 0x0) },
  148. { CODEC_ID_MSVIDEO1, MKTAG('M', 'S', 'V', 'C') },
  149. { CODEC_ID_MSVIDEO1, MKTAG('m', 's', 'v', 'c') },
  150. { CODEC_ID_MSVIDEO1, MKTAG('C', 'R', 'A', 'M') },
  151. { CODEC_ID_MSVIDEO1, MKTAG('c', 'r', 'a', 'm') },
  152. { CODEC_ID_MSVIDEO1, MKTAG('W', 'H', 'A', 'M') },
  153. { CODEC_ID_MSVIDEO1, MKTAG('w', 'h', 'a', 'm') },
  154. { CODEC_ID_CINEPAK, MKTAG('c', 'v', 'i', 'd') },
  155. { CODEC_ID_TRUEMOTION1, MKTAG('D', 'U', 'C', 'K') },
  156. { CODEC_ID_MSZH, MKTAG('M', 'S', 'Z', 'H') },
  157. { CODEC_ID_ZLIB, MKTAG('Z', 'L', 'I', 'B') },
  158. { CODEC_ID_SNOW, MKTAG('S', 'N', 'O', 'W') },
  159. { CODEC_ID_4XM, MKTAG('4', 'X', 'M', 'V') },
  160. { CODEC_ID_FLV1, MKTAG('F', 'L', 'V', '1') },
  161. { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', '1') },
  162. { CODEC_ID_TSCC, MKTAG('t', 's', 'c', 'c') },
  163. { CODEC_ID_ULTI, MKTAG('U', 'L', 'T', 'I') },
  164. { CODEC_ID_VIXL, MKTAG('V', 'I', 'X', 'L') },
  165. { CODEC_ID_QPEG, MKTAG('Q', 'P', 'E', 'G') },
  166. { CODEC_ID_QPEG, MKTAG('Q', '1', '.', '0') },
  167. { CODEC_ID_QPEG, MKTAG('Q', '1', '.', '1') },
  168. { CODEC_ID_WMV3, MKTAG('W', 'M', 'V', '3') },
  169. { CODEC_ID_LOCO, MKTAG('L', 'O', 'C', 'O') },
  170. { CODEC_ID_WNV1, MKTAG('W', 'N', 'V', '1') },
  171. { CODEC_ID_AASC, MKTAG('A', 'A', 'S', 'C') },
  172. { CODEC_ID_INDEO2, MKTAG('R', 'T', '2', '1') },
  173. { CODEC_ID_FRAPS, MKTAG('F', 'P', 'S', '1') },
  174. { CODEC_ID_THEORA, MKTAG('t', 'h', 'e', 'o') },
  175. { CODEC_ID_TRUEMOTION2, MKTAG('T', 'M', '2', '0') },
  176. { CODEC_ID_CSCD, MKTAG('C', 'S', 'C', 'D') },
  177. { CODEC_ID_ZMBV, MKTAG('Z', 'M', 'B', 'V') },
  178. { CODEC_ID_RAWVIDEO, 0 },
  179. { CODEC_ID_NONE, 0 },
  180. };
  181. unsigned int codec_get_tag(const CodecTag *tags, int id)
  182. {
  183. while (tags->id != CODEC_ID_NONE) {
  184. if (tags->id == id)
  185. return tags->tag;
  186. tags++;
  187. }
  188. return 0;
  189. }
  190. static unsigned int codec_get_asf_tag(const CodecTag *tags, unsigned int id)
  191. {
  192. while (tags->id != CODEC_ID_NONE) {
  193. if (!tags->invalid_asf && tags->id == id)
  194. return tags->tag;
  195. tags++;
  196. }
  197. return 0;
  198. }
  199. enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag)
  200. {
  201. while (tags->id != CODEC_ID_NONE) {
  202. if( toupper((tag >> 0)&0xFF) == toupper((tags->tag >> 0)&0xFF)
  203. && toupper((tag >> 8)&0xFF) == toupper((tags->tag >> 8)&0xFF)
  204. && toupper((tag >>16)&0xFF) == toupper((tags->tag >>16)&0xFF)
  205. && toupper((tag >>24)&0xFF) == toupper((tags->tag >>24)&0xFF))
  206. return tags->id;
  207. tags++;
  208. }
  209. return CODEC_ID_NONE;
  210. }
  211. unsigned int codec_get_bmp_tag(int id)
  212. {
  213. return codec_get_tag(codec_bmp_tags, id);
  214. }
  215. unsigned int codec_get_wav_tag(int id)
  216. {
  217. return codec_get_tag(codec_wav_tags, id);
  218. }
  219. enum CodecID codec_get_bmp_id(unsigned int tag)
  220. {
  221. return codec_get_id(codec_bmp_tags, tag);
  222. }
  223. enum CodecID codec_get_wav_id(unsigned int tag)
  224. {
  225. return codec_get_id(codec_wav_tags, tag);
  226. }
  227. #ifdef CONFIG_MUXERS
  228. /* BITMAPINFOHEADER header */
  229. void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const CodecTag *tags, int for_asf)
  230. {
  231. put_le32(pb, 40 + enc->extradata_size); /* size */
  232. put_le32(pb, enc->width);
  233. put_le32(pb, enc->height);
  234. put_le16(pb, 1); /* planes */
  235. put_le16(pb, enc->bits_per_sample ? enc->bits_per_sample : 24); /* depth */
  236. /* compression type */
  237. put_le32(pb, for_asf ? (enc->codec_tag ? enc->codec_tag : codec_get_asf_tag(tags, enc->codec_id)) : enc->codec_tag); //
  238. put_le32(pb, enc->width * enc->height * 3);
  239. put_le32(pb, 0);
  240. put_le32(pb, 0);
  241. put_le32(pb, 0);
  242. put_le32(pb, 0);
  243. put_buffer(pb, enc->extradata, enc->extradata_size);
  244. if (enc->extradata_size & 1)
  245. put_byte(pb, 0);
  246. }
  247. void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale)
  248. {
  249. int gcd;
  250. *au_ssize= stream->block_align;
  251. if(stream->frame_size && stream->sample_rate){
  252. *au_scale=stream->frame_size;
  253. *au_rate= stream->sample_rate;
  254. }else if(stream->codec_type == CODEC_TYPE_VIDEO){
  255. *au_scale= stream->time_base.num;
  256. *au_rate = stream->time_base.den;
  257. }else{
  258. *au_scale= stream->block_align ? stream->block_align*8 : 8;
  259. *au_rate = stream->bit_rate;
  260. }
  261. gcd= ff_gcd(*au_scale, *au_rate);
  262. *au_scale /= gcd;
  263. *au_rate /= gcd;
  264. }
  265. static offset_t avi_start_new_riff(AVIContext *avi, ByteIOContext *pb,
  266. const char* riff_tag, const char* list_tag)
  267. {
  268. offset_t loff;
  269. int i;
  270. avi->riff_id++;
  271. for (i=0; i<MAX_STREAMS; i++)
  272. avi->indexes[i].entry = 0;
  273. avi->riff_start = start_tag(pb, "RIFF");
  274. put_tag(pb, riff_tag);
  275. loff = start_tag(pb, "LIST");
  276. put_tag(pb, list_tag);
  277. return loff;
  278. }
  279. static unsigned char* avi_stream2fourcc(unsigned char* tag, int index,
  280. enum CodecType type)
  281. {
  282. tag[0] = '0';
  283. tag[1] = '0' + index;
  284. if (type == CODEC_TYPE_VIDEO) {
  285. tag[2] = 'd';
  286. tag[3] = 'c';
  287. } else {
  288. tag[2] = 'w';
  289. tag[3] = 'b';
  290. }
  291. tag[4] = '\0';
  292. return tag;
  293. }
  294. static int avi_write_header(AVFormatContext *s)
  295. {
  296. AVIContext *avi = s->priv_data;
  297. ByteIOContext *pb = &s->pb;
  298. int bitrate, n, i, nb_frames, au_byterate, au_ssize, au_scale;
  299. AVCodecContext *stream, *video_enc;
  300. offset_t list1, list2, strh, strf;
  301. /* header list */
  302. avi->riff_id = 0;
  303. list1 = avi_start_new_riff(avi, pb, "AVI ", "hdrl");
  304. /* avi header */
  305. put_tag(pb, "avih");
  306. put_le32(pb, 14 * 4);
  307. bitrate = 0;
  308. video_enc = NULL;
  309. for(n=0;n<s->nb_streams;n++) {
  310. stream = s->streams[n]->codec;
  311. bitrate += stream->bit_rate;
  312. if (stream->codec_type == CODEC_TYPE_VIDEO)
  313. video_enc = stream;
  314. }
  315. nb_frames = 0;
  316. if(video_enc){
  317. put_le32(pb, (uint32_t)(int64_t_C(1000000) * video_enc->time_base.num / video_enc->time_base.den));
  318. } else {
  319. put_le32(pb, 0);
  320. }
  321. put_le32(pb, bitrate / 8); /* XXX: not quite exact */
  322. put_le32(pb, 0); /* padding */
  323. if (url_is_streamed(pb))
  324. put_le32(pb, AVIF_TRUSTCKTYPE | AVIF_ISINTERLEAVED); /* flags */
  325. else
  326. put_le32(pb, AVIF_TRUSTCKTYPE | AVIF_HASINDEX | AVIF_ISINTERLEAVED); /* flags */
  327. avi->frames_hdr_all = url_ftell(pb); /* remember this offset to fill later */
  328. put_le32(pb, nb_frames); /* nb frames, filled later */
  329. put_le32(pb, 0); /* initial frame */
  330. put_le32(pb, s->nb_streams); /* nb streams */
  331. put_le32(pb, 1024 * 1024); /* suggested buffer size */
  332. if(video_enc){
  333. put_le32(pb, video_enc->width);
  334. put_le32(pb, video_enc->height);
  335. } else {
  336. put_le32(pb, 0);
  337. put_le32(pb, 0);
  338. }
  339. put_le32(pb, 0); /* reserved */
  340. put_le32(pb, 0); /* reserved */
  341. put_le32(pb, 0); /* reserved */
  342. put_le32(pb, 0); /* reserved */
  343. /* stream list */
  344. for(i=0;i<n;i++) {
  345. list2 = start_tag(pb, "LIST");
  346. put_tag(pb, "strl");
  347. stream = s->streams[i]->codec;
  348. /* FourCC should really be set by the codec itself */
  349. if (! stream->codec_tag) {
  350. stream->codec_tag = codec_get_bmp_tag(stream->codec_id);
  351. }
  352. /* stream generic header */
  353. strh = start_tag(pb, "strh");
  354. switch(stream->codec_type) {
  355. case CODEC_TYPE_VIDEO: put_tag(pb, "vids"); break;
  356. case CODEC_TYPE_AUDIO: put_tag(pb, "auds"); break;
  357. // case CODEC_TYPE_TEXT : put_tag(pb, "txts"); break;
  358. case CODEC_TYPE_DATA : put_tag(pb, "dats"); break;
  359. }
  360. if(stream->codec_type == CODEC_TYPE_VIDEO)
  361. put_le32(pb, stream->codec_tag);
  362. else
  363. put_le32(pb, 1);
  364. put_le32(pb, 0); /* flags */
  365. put_le16(pb, 0); /* priority */
  366. put_le16(pb, 0); /* language */
  367. put_le32(pb, 0); /* initial frame */
  368. ff_parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale);
  369. put_le32(pb, au_scale); /* scale */
  370. put_le32(pb, au_byterate); /* rate */
  371. av_set_pts_info(s->streams[i], 64, au_scale, au_byterate);
  372. put_le32(pb, 0); /* start */
  373. avi->frames_hdr_strm[i] = url_ftell(pb); /* remember this offset to fill later */
  374. if (url_is_streamed(pb))
  375. put_le32(pb, AVI_MAX_RIFF_SIZE); /* FIXME: this may be broken, but who cares */
  376. else
  377. put_le32(pb, 0); /* length, XXX: filled later */
  378. /* suggested buffer size */ //FIXME set at the end to largest chunk
  379. if(stream->codec_type == CODEC_TYPE_VIDEO)
  380. put_le32(pb, 1024 * 1024);
  381. else if(stream->codec_type == CODEC_TYPE_AUDIO)
  382. put_le32(pb, 12 * 1024);
  383. else
  384. put_le32(pb, 0);
  385. put_le32(pb, -1); /* quality */
  386. put_le32(pb, au_ssize); /* sample size */
  387. put_le32(pb, 0);
  388. put_le16(pb, stream->width);
  389. put_le16(pb, stream->height);
  390. end_tag(pb, strh);
  391. if(stream->codec_type != CODEC_TYPE_DATA){
  392. strf = start_tag(pb, "strf");
  393. switch(stream->codec_type) {
  394. case CODEC_TYPE_VIDEO:
  395. put_bmp_header(pb, stream, codec_bmp_tags, 0);
  396. break;
  397. case CODEC_TYPE_AUDIO:
  398. if (put_wav_header(pb, stream) < 0) {
  399. av_free(avi);
  400. return -1;
  401. }
  402. break;
  403. default:
  404. return -1;
  405. }
  406. end_tag(pb, strf);
  407. }
  408. if (!url_is_streamed(pb)) {
  409. unsigned char tag[5];
  410. int j;
  411. /* Starting to lay out AVI OpenDML master index.
  412. * We want to make it JUNK entry for now, since we'd
  413. * like to get away without making AVI an OpenDML one
  414. * for compatibility reasons.
  415. */
  416. avi->indexes[i].entry = avi->indexes[i].ents_allocated = 0;
  417. avi->indexes[i].indx_start = start_tag(pb, "JUNK");
  418. put_le16(pb, 4); /* wLongsPerEntry */
  419. put_byte(pb, 0); /* bIndexSubType (0 == frame index) */
  420. put_byte(pb, 0); /* bIndexType (0 == AVI_INDEX_OF_INDEXES) */
  421. put_le32(pb, 0); /* nEntriesInUse (will fill out later on) */
  422. put_tag(pb, avi_stream2fourcc(&tag[0], i, stream->codec_type));
  423. /* dwChunkId */
  424. put_le64(pb, 0); /* dwReserved[3]
  425. put_le32(pb, 0); Must be 0. */
  426. for (j=0; j < AVI_MASTER_INDEX_SIZE * 2; j++)
  427. put_le64(pb, 0);
  428. end_tag(pb, avi->indexes[i].indx_start);
  429. }
  430. end_tag(pb, list2);
  431. }
  432. if (!url_is_streamed(pb)) {
  433. /* AVI could become an OpenDML one, if it grows beyond 2Gb range */
  434. avi->odml_list = start_tag(pb, "JUNK");
  435. put_tag(pb, "odml");
  436. put_tag(pb, "dmlh");
  437. put_le32(pb, 248);
  438. for (i = 0; i < 248; i+= 4)
  439. put_le32(pb, 0);
  440. end_tag(pb, avi->odml_list);
  441. }
  442. end_tag(pb, list1);
  443. avi->movi_list = start_tag(pb, "LIST");
  444. put_tag(pb, "movi");
  445. put_flush_packet(pb);
  446. return 0;
  447. }
  448. static int avi_write_ix(AVFormatContext *s)
  449. {
  450. ByteIOContext *pb = &s->pb;
  451. AVIContext *avi = s->priv_data;
  452. unsigned char tag[5];
  453. unsigned char ix_tag[] = "ix00";
  454. int i, j;
  455. assert(!url_is_streamed(pb));
  456. if (avi->riff_id > AVI_MASTER_INDEX_SIZE)
  457. return -1;
  458. for (i=0;i<s->nb_streams;i++) {
  459. offset_t ix, pos;
  460. avi_stream2fourcc(&tag[0], i, s->streams[i]->codec->codec_type);
  461. ix_tag[3] = '0' + i;
  462. /* Writing AVI OpenDML leaf index chunk */
  463. ix = url_ftell(pb);
  464. put_tag(pb, &ix_tag[0]); /* ix?? */
  465. put_le32(pb, avi->indexes[i].entry * 8 + 24);
  466. /* chunk size */
  467. put_le16(pb, 2); /* wLongsPerEntry */
  468. put_byte(pb, 0); /* bIndexSubType (0 == frame index) */
  469. put_byte(pb, 1); /* bIndexType (1 == AVI_INDEX_OF_CHUNKS) */
  470. put_le32(pb, avi->indexes[i].entry);
  471. /* nEntriesInUse */
  472. put_tag(pb, &tag[0]); /* dwChunkId */
  473. put_le64(pb, avi->movi_list);/* qwBaseOffset */
  474. put_le32(pb, 0); /* dwReserved_3 (must be 0) */
  475. for (j=0; j<avi->indexes[i].entry; j++) {
  476. AVIIentry* ie = avi_get_ientry(&avi->indexes[i], j);
  477. put_le32(pb, ie->pos + 8);
  478. put_le32(pb, ((uint32_t)ie->len & ~0x80000000) |
  479. (ie->flags & 0x10 ? 0 : 0x80000000));
  480. }
  481. put_flush_packet(pb);
  482. pos = url_ftell(pb);
  483. /* Updating one entry in the AVI OpenDML master index */
  484. url_fseek(pb, avi->indexes[i].indx_start - 8, SEEK_SET);
  485. put_tag(pb, "indx"); /* enabling this entry */
  486. url_fskip(pb, 8);
  487. put_le32(pb, avi->riff_id); /* nEntriesInUse */
  488. url_fskip(pb, 16*avi->riff_id);
  489. put_le64(pb, ix); /* qwOffset */
  490. put_le32(pb, pos - ix); /* dwSize */
  491. put_le32(pb, avi->indexes[i].entry); /* dwDuration */
  492. url_fseek(pb, pos, SEEK_SET);
  493. }
  494. return 0;
  495. }
  496. static int avi_write_idx1(AVFormatContext *s)
  497. {
  498. ByteIOContext *pb = &s->pb;
  499. AVIContext *avi = s->priv_data;
  500. offset_t file_size, idx_chunk;
  501. int i, n, nb_frames, au_byterate, au_ssize, au_scale;
  502. AVCodecContext *stream;
  503. unsigned char tag[5];
  504. if (!url_is_streamed(pb)) {
  505. AVIIentry* ie = 0, *tie;
  506. int entry[MAX_STREAMS];
  507. int empty, stream_id = -1;
  508. idx_chunk = start_tag(pb, "idx1");
  509. memset(&entry[0], 0, sizeof(entry));
  510. do {
  511. empty = 1;
  512. for (i=0; i<s->nb_streams; i++) {
  513. if (avi->indexes[i].entry <= entry[i])
  514. continue;
  515. tie = avi_get_ientry(&avi->indexes[i], entry[i]);
  516. if (empty || tie->pos < ie->pos) {
  517. ie = tie;
  518. stream_id = i;
  519. }
  520. empty = 0;
  521. }
  522. if (!empty) {
  523. avi_stream2fourcc(&tag[0], stream_id,
  524. s->streams[stream_id]->codec->codec_type);
  525. put_tag(pb, &tag[0]);
  526. put_le32(pb, ie->flags);
  527. put_le32(pb, ie->pos);
  528. put_le32(pb, ie->len);
  529. entry[stream_id]++;
  530. }
  531. } while (!empty);
  532. end_tag(pb, idx_chunk);
  533. /* Fill in frame/sample counters */
  534. file_size = url_ftell(pb);
  535. nb_frames = 0;
  536. for(n=0;n<s->nb_streams;n++) {
  537. if (avi->frames_hdr_strm[n] != 0) {
  538. stream = s->streams[n]->codec;
  539. url_fseek(pb, avi->frames_hdr_strm[n], SEEK_SET);
  540. ff_parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale);
  541. if (au_ssize == 0) {
  542. put_le32(pb, avi->packet_count[n]);
  543. nb_frames += avi->packet_count[n];
  544. } else {
  545. put_le32(pb, avi->audio_strm_length[n] / au_ssize);
  546. }
  547. }
  548. }
  549. if (avi->frames_hdr_all != 0) {
  550. url_fseek(pb, avi->frames_hdr_all, SEEK_SET);
  551. put_le32(pb, nb_frames);
  552. }
  553. url_fseek(pb, file_size, SEEK_SET);
  554. }
  555. return 0;
  556. }
  557. static int avi_write_packet(AVFormatContext *s, AVPacket *pkt)
  558. {
  559. AVIContext *avi = s->priv_data;
  560. ByteIOContext *pb = &s->pb;
  561. unsigned char tag[5];
  562. unsigned int flags=0;
  563. const int stream_index= pkt->stream_index;
  564. AVCodecContext *enc= s->streams[stream_index]->codec;
  565. int size= pkt->size;
  566. // av_log(s, AV_LOG_DEBUG, "%lld %d %d\n", pkt->dts, avi->packet_count[stream_index], stream_index);
  567. while(enc->block_align==0 && pkt->dts != AV_NOPTS_VALUE && pkt->dts > avi->packet_count[stream_index]){
  568. AVPacket empty_packet;
  569. av_init_packet(&empty_packet);
  570. empty_packet.size= 0;
  571. empty_packet.data= NULL;
  572. empty_packet.stream_index= stream_index;
  573. avi_write_packet(s, &empty_packet);
  574. // av_log(s, AV_LOG_DEBUG, "dup %lld %d\n", pkt->dts, avi->packet_count[stream_index]);
  575. }
  576. avi->packet_count[stream_index]++;
  577. // Make sure to put an OpenDML chunk when the file size exceeds the limits
  578. if (!url_is_streamed(pb) &&
  579. (url_ftell(pb) - avi->riff_start > AVI_MAX_RIFF_SIZE)) {
  580. avi_write_ix(s);
  581. end_tag(pb, avi->movi_list);
  582. if (avi->riff_id == 1)
  583. avi_write_idx1(s);
  584. end_tag(pb, avi->riff_start);
  585. avi->movi_list = avi_start_new_riff(avi, pb, "AVIX", "movi");
  586. }
  587. avi_stream2fourcc(&tag[0], stream_index, enc->codec_type);
  588. if(pkt->flags&PKT_FLAG_KEY)
  589. flags = 0x10;
  590. if (enc->codec_type == CODEC_TYPE_AUDIO) {
  591. avi->audio_strm_length[stream_index] += size;
  592. }
  593. if (!url_is_streamed(&s->pb)) {
  594. AVIIndex* idx = &avi->indexes[stream_index];
  595. int cl = idx->entry / AVI_INDEX_CLUSTER_SIZE;
  596. int id = idx->entry % AVI_INDEX_CLUSTER_SIZE;
  597. if (idx->ents_allocated <= idx->entry) {
  598. idx->cluster = av_realloc(idx->cluster, (cl+1)*sizeof(void*));
  599. if (!idx->cluster)
  600. return -1;
  601. idx->cluster[cl] = av_malloc(AVI_INDEX_CLUSTER_SIZE*sizeof(AVIIentry));
  602. if (!idx->cluster[cl])
  603. return -1;
  604. idx->ents_allocated += AVI_INDEX_CLUSTER_SIZE;
  605. }
  606. idx->cluster[cl][id].flags = flags;
  607. idx->cluster[cl][id].pos = url_ftell(pb) - avi->movi_list;
  608. idx->cluster[cl][id].len = size;
  609. idx->entry++;
  610. }
  611. put_buffer(pb, tag, 4);
  612. put_le32(pb, size);
  613. put_buffer(pb, pkt->data, size);
  614. if (size & 1)
  615. put_byte(pb, 0);
  616. put_flush_packet(pb);
  617. return 0;
  618. }
  619. static int avi_write_trailer(AVFormatContext *s)
  620. {
  621. AVIContext *avi = s->priv_data;
  622. ByteIOContext *pb = &s->pb;
  623. int res = 0;
  624. int i, j, n, nb_frames;
  625. offset_t file_size;
  626. if (!url_is_streamed(pb))
  627. {
  628. if (avi->riff_id == 1) {
  629. end_tag(pb, avi->movi_list);
  630. res = avi_write_idx1(s);
  631. end_tag(pb, avi->riff_start);
  632. } else {
  633. avi_write_ix(s);
  634. end_tag(pb, avi->movi_list);
  635. end_tag(pb, avi->riff_start);
  636. file_size = url_ftell(pb);
  637. url_fseek(pb, avi->odml_list - 8, SEEK_SET);
  638. put_tag(pb, "LIST"); /* Making this AVI OpenDML one */
  639. url_fskip(pb, 16);
  640. for (n=nb_frames=0;n<s->nb_streams;n++) {
  641. AVCodecContext *stream = s->streams[n]->codec;
  642. if (stream->codec_type == CODEC_TYPE_VIDEO) {
  643. if (nb_frames < avi->packet_count[n])
  644. nb_frames = avi->packet_count[n];
  645. } else {
  646. if (stream->codec_id == CODEC_ID_MP2 || stream->codec_id == CODEC_ID_MP3) {
  647. nb_frames += avi->packet_count[n];
  648. }
  649. }
  650. }
  651. put_le32(pb, nb_frames);
  652. url_fseek(pb, file_size, SEEK_SET);
  653. }
  654. }
  655. put_flush_packet(pb);
  656. for (i=0; i<MAX_STREAMS; i++) {
  657. for (j=0; j<avi->indexes[i].ents_allocated/AVI_INDEX_CLUSTER_SIZE; j++)
  658. av_free(avi->indexes[i].cluster[j]);
  659. av_free(avi->indexes[i].cluster);
  660. avi->indexes[i].cluster = NULL;
  661. avi->indexes[i].ents_allocated = avi->indexes[i].entry = 0;
  662. }
  663. return res;
  664. }
  665. static AVOutputFormat avi_oformat = {
  666. "avi",
  667. "avi format",
  668. "video/x-msvideo",
  669. "avi",
  670. sizeof(AVIContext),
  671. CODEC_ID_MP2,
  672. CODEC_ID_MPEG4,
  673. avi_write_header,
  674. avi_write_packet,
  675. avi_write_trailer,
  676. };
  677. int avienc_init(void)
  678. {
  679. av_register_output_format(&avi_oformat);
  680. return 0;
  681. }
  682. #endif //CONFIG_MUXERS