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.

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