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.

723 lines
23KB

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