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.

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