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.

2136 lines
75KB

  1. /*
  2. * MOV decoder.
  3. * Copyright (c) 2001 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 <limits.h>
  20. //#define DEBUG
  21. #include "avformat.h"
  22. #include "avi.h"
  23. #include "mov.h"
  24. #ifdef CONFIG_ZLIB
  25. #include <zlib.h>
  26. #endif
  27. /*
  28. * First version by Francois Revol revol@free.fr
  29. * Seek function by Gael Chardon gael.dev@4now.net
  30. *
  31. * Features and limitations:
  32. * - reads most of the QT files I have (at least the structure),
  33. * the exceptions are .mov with zlib compressed headers ('cmov' section). It shouldn't be hard to implement.
  34. * FIXED, Francois Revol, 07/17/2002
  35. * - ffmpeg has nearly none of the usual QuickTime codecs,
  36. * although I succesfully dumped raw and mp3 audio tracks off .mov files.
  37. * Sample QuickTime files with mp3 audio can be found at: http://www.3ivx.com/showcase.html
  38. * - .mp4 parsing is still hazardous, although the format really is QuickTime with some minor changes
  39. * (to make .mov parser crash maybe ?), despite what they say in the MPEG FAQ at
  40. * http://mpeg.telecomitalialab.com/faq.htm
  41. * - the code is quite ugly... maybe I won't do it recursive next time :-)
  42. * - seek is not supported with files that contain edit list
  43. *
  44. * Funny I didn't know about http://sourceforge.net/projects/qt-ffmpeg/
  45. * when coding this :) (it's a writer anyway)
  46. *
  47. * Reference documents:
  48. * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt
  49. * Apple:
  50. * http://developer.apple.com/documentation/QuickTime/QTFF/
  51. * http://developer.apple.com/documentation/QuickTime/QTFF/qtff.pdf
  52. * QuickTime is a trademark of Apple (AFAIK :))
  53. */
  54. #include "qtpalette.h"
  55. #undef NDEBUG
  56. #include <assert.h>
  57. /* Allows seeking */
  58. #define MOV_SEEK
  59. /* Special handling for movies created with Minolta Dimaxe Xi*/
  60. /* this fix should not interfere with other .mov files, but just in case*/
  61. #define MOV_MINOLTA_FIX
  62. /* some streams in QT (and in MP4 mostly) aren't either video nor audio */
  63. /* so we first list them as this, then clean up the list of streams we give back, */
  64. /* getting rid of these */
  65. #define CODEC_TYPE_MOV_OTHER (enum CodecType) 2
  66. /* http://gpac.sourceforge.net/tutorial/mediatypes.htm */
  67. const CodecTag ff_mov_obj_type[] = {
  68. { CODEC_ID_MPEG4 , 32 },
  69. { CODEC_ID_H264 , 33 },
  70. { CODEC_ID_AAC , 64 },
  71. { CODEC_ID_MPEG2VIDEO, 96 }, /* MPEG2 Simple */
  72. { CODEC_ID_MPEG2VIDEO, 97 }, /* MPEG2 Main */
  73. { CODEC_ID_MPEG2VIDEO, 98 }, /* MPEG2 SNR */
  74. { CODEC_ID_MPEG2VIDEO, 99 }, /* MPEG2 Spatial */
  75. { CODEC_ID_MPEG2VIDEO, 100 }, /* MPEG2 High */
  76. { CODEC_ID_MPEG2VIDEO, 101 }, /* MPEG2 422 */
  77. { CODEC_ID_AAC , 102 }, /* MPEG2 AAC Main */
  78. { CODEC_ID_AAC , 103 }, /* MPEG2 AAC Low */
  79. { CODEC_ID_AAC , 104 }, /* MPEG2 AAC SSR */
  80. { CODEC_ID_MP3 , 105 },
  81. { CODEC_ID_MPEG1VIDEO, 106 },
  82. { CODEC_ID_MP2 , 107 },
  83. { CODEC_ID_MJPEG , 108 },
  84. { CODEC_ID_PCM_S16LE , 224 },
  85. { CODEC_ID_VORBIS , 225 },
  86. { CODEC_ID_AC3 , 226 },
  87. { CODEC_ID_PCM_ALAW , 227 },
  88. { CODEC_ID_PCM_MULAW , 228 },
  89. { CODEC_ID_PCM_S16BE , 230 },
  90. { CODEC_ID_H263 , 242 },
  91. { CODEC_ID_H261 , 243 },
  92. { 0, 0 },
  93. };
  94. static const CodecTag mov_video_tags[] = {
  95. /* { CODEC_ID_, MKTAG('c', 'v', 'i', 'd') }, *//* Cinepak */
  96. /* { CODEC_ID_H263, MKTAG('r', 'a', 'w', ' ') }, *//* Uncompressed RGB */
  97. /* { CODEC_ID_H263, MKTAG('Y', 'u', 'v', '2') }, *//* Uncompressed YUV422 */
  98. /* { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, *//* YUV with alpha-channel (AVID Uncompressed) */
  99. /* Graphics */
  100. /* Animation */
  101. /* Apple video */
  102. /* Kodak Photo CD */
  103. { CODEC_ID_MJPEG, MKTAG('j', 'p', 'e', 'g') }, /* PhotoJPEG */
  104. { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'e', 'g') }, /* MPEG */
  105. { CODEC_ID_MJPEG, MKTAG('m', 'j', 'p', 'a') }, /* Motion-JPEG (format A) */
  106. { CODEC_ID_MJPEG, MKTAG('m', 'j', 'p', 'b') }, /* Motion-JPEG (format B) */
  107. { CODEC_ID_MJPEG, MKTAG('A', 'V', 'D', 'J') }, /* MJPEG with alpha-channel (AVID JFIF meridien compressed) */
  108. /* { CODEC_ID_MJPEG, MKTAG('A', 'V', 'R', 'n') }, *//* MJPEG with alpha-channel (AVID ABVB/Truevision NuVista) */
  109. /* { CODEC_ID_GIF, MKTAG('g', 'i', 'f', ' ') }, *//* embedded gif files as frames (usually one "click to play movie" frame) */
  110. /* Sorenson video */
  111. { CODEC_ID_SVQ1, MKTAG('S', 'V', 'Q', '1') }, /* Sorenson Video v1 */
  112. { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', '1') }, /* Sorenson Video v1 */
  113. { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', 'i') }, /* Sorenson Video v1 (from QT specs)*/
  114. { CODEC_ID_SVQ3, MKTAG('S', 'V', 'Q', '3') }, /* Sorenson Video v3 */
  115. { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') },
  116. { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X') }, /* OpenDiVX *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */
  117. { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D') },
  118. { CODEC_ID_MPEG4, MKTAG('3', 'I', 'V', '2') }, /* experimental: 3IVX files before ivx D4 4.5.1 */
  119. /* { CODEC_ID_, MKTAG('I', 'V', '5', '0') }, *//* Indeo 5.0 */
  120. { CODEC_ID_H263, MKTAG('h', '2', '6', '3') }, /* H263 */
  121. { CODEC_ID_H263, MKTAG('s', '2', '6', '3') }, /* H263 ?? works */
  122. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', ' ') }, /* DV NTSC */
  123. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', 'p') }, /* DV PAL */
  124. /* { CODEC_ID_DVVIDEO, MKTAG('A', 'V', 'd', 'v') }, *//* AVID dv */
  125. { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') }, /* On2 VP3 */
  126. { CODEC_ID_RPZA, MKTAG('r', 'p', 'z', 'a') }, /* Apple Video (RPZA) */
  127. { CODEC_ID_CINEPAK, MKTAG('c', 'v', 'i', 'd') }, /* Cinepak */
  128. { CODEC_ID_8BPS, MKTAG('8', 'B', 'P', 'S') }, /* Planar RGB (8BPS) */
  129. { CODEC_ID_SMC, MKTAG('s', 'm', 'c', ' ') }, /* Apple Graphics (SMC) */
  130. { CODEC_ID_QTRLE, MKTAG('r', 'l', 'e', ' ') }, /* Apple Animation (RLE) */
  131. { CODEC_ID_QDRAW, MKTAG('q', 'd', 'r', 'w') }, /* QuickDraw */
  132. { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, /* AVC-1/H.264 */
  133. { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '2') }, /* MPEG2 produced by Sony HD camera */
  134. { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '3') }, /* HDV produced by FCP */
  135. { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '5', 'n') }, /* MPEG2 IMX NTSC 525/60 50mb/s produced by FCP */
  136. { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '5', 'p') }, /* MPEG2 IMX PAL 625/50 50mb/s produced by FCP */
  137. { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '3', 'n') }, /* MPEG2 IMX NTSC 525/60 30mb/s produced by FCP */
  138. { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '3', 'p') }, /* MPEG2 IMX PAL 625/50 30mb/s produced by FCP */
  139. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'p', 'p') }, /* DVCPRO PAL produced by FCP */
  140. //{ CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '5') }, /* DVCPRO HD 50i produced by FCP */
  141. //{ CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '6') }, /* DVCPRO HD 60i produced by FCP */
  142. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '5', 'p') }, /* DVCPRO50 PAL produced by FCP */
  143. { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '5', 'n') }, /* DVCPRO50 NTSC produced by FCP */
  144. //{ CODEC_ID_JPEG2000, MKTAG('m', 'j', 'p', '2') }, /* JPEG 2000 produced by FCP */
  145. { CODEC_ID_NONE, 0 },
  146. };
  147. static const CodecTag mov_audio_tags[] = {
  148. { CODEC_ID_PCM_S32BE, MKTAG('i', 'n', '3', '2') },
  149. { CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4') },
  150. /* { CODEC_ID_PCM_S16BE, MKTAG('N', 'O', 'N', 'E') }, *//* uncompressed */
  151. { CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's') }, /* 16 bits */
  152. /* { CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's') },*/ /* 8 bits */
  153. { CODEC_ID_PCM_U8, MKTAG('r', 'a', 'w', ' ') }, /* 8 bits unsigned */
  154. { CODEC_ID_PCM_S16LE, MKTAG('s', 'o', 'w', 't') }, /* */
  155. { CODEC_ID_PCM_MULAW, MKTAG('u', 'l', 'a', 'w') }, /* */
  156. { CODEC_ID_PCM_ALAW, MKTAG('a', 'l', 'a', 'w') }, /* */
  157. { CODEC_ID_ADPCM_IMA_QT, MKTAG('i', 'm', 'a', '4') }, /* IMA-4 ADPCM */
  158. { CODEC_ID_MACE3, MKTAG('M', 'A', 'C', '3') }, /* Macintosh Audio Compression and Expansion 3:1 */
  159. { CODEC_ID_MACE6, MKTAG('M', 'A', 'C', '6') }, /* Macintosh Audio Compression and Expansion 6:1 */
  160. { CODEC_ID_MP2, MKTAG('.', 'm', 'p', '3') }, /* MPEG layer 3 */ /* sample files at http://www.3ivx.com/showcase.html use this tag */
  161. { CODEC_ID_MP2, 0x6D730055 }, /* MPEG layer 3 */
  162. { CODEC_ID_MP2, 0x5500736D }, /* MPEG layer 3 *//* XXX: check endianness */
  163. /* { CODEC_ID_OGG_VORBIS, MKTAG('O', 'g', 'g', 'S') }, *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */
  164. /* MP4 tags */
  165. { CODEC_ID_AAC, MKTAG('m', 'p', '4', 'a') }, /* MPEG-4 AAC */
  166. /* The standard for mpeg4 audio is still not normalised AFAIK anyway */
  167. { CODEC_ID_AMR_NB, MKTAG('s', 'a', 'm', 'r') }, /* AMR-NB 3gp */
  168. { CODEC_ID_AMR_WB, MKTAG('s', 'a', 'w', 'b') }, /* AMR-WB 3gp */
  169. { CODEC_ID_AC3, MKTAG('m', 's', 0x20, 0x00) }, /* Dolby AC-3 */
  170. { CODEC_ID_ALAC,MKTAG('a', 'l', 'a', 'c') }, /* Apple Lossless */
  171. { CODEC_ID_QDM2,MKTAG('Q', 'D', 'M', '2') }, /* QDM2 */
  172. { CODEC_ID_NONE, 0 },
  173. };
  174. /* map numeric codes from mdhd atom to ISO 639 */
  175. /* cf. QTFileFormat.pdf p253, qtff.pdf p205 */
  176. /* http://developer.apple.com/documentation/mac/Text/Text-368.html */
  177. /* deprecated by putting the code as 3*5bit ascii */
  178. static const char *mov_mdhd_language_map[] = {
  179. /* 0-9 */
  180. "eng", "fra", "ger", "ita", "dut", "sve", "spa", "dan", "por", "nor",
  181. "heb", "jpn", "ara", "fin", "gre", "ice", "mlt", "tur", "hr "/*scr*/, "chi"/*ace?*/,
  182. "urd", "hin", "tha", "kor", "lit", "pol", "hun", "est", "lav", NULL,
  183. "fo ", NULL, "rus", "chi", NULL, "iri", "alb", "ron", "ces", "slk",
  184. "slv", "yid", "sr ", "mac", "bul", "ukr", "bel", "uzb", "kaz", "aze",
  185. /*?*/
  186. "aze", "arm", "geo", "mol", "kir", "tgk", "tuk", "mon", NULL, "pus",
  187. "kur", "kas", "snd", "tib", "nep", "san", "mar", "ben", "asm", "guj",
  188. "pa ", "ori", "mal", "kan", "tam", "tel", NULL, "bur", "khm", "lao",
  189. /* roman? arabic? */
  190. "vie", "ind", "tgl", "may", "may", "amh", "tir", "orm", "som", "swa",
  191. /*==rundi?*/
  192. NULL, "run", NULL, "mlg", "epo", NULL, NULL, NULL, NULL, NULL,
  193. /* 100 */
  194. NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
  195. NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
  196. NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "wel", "baq",
  197. "cat", "lat", "que", "grn", "aym", "tat", "uig", "dzo", "jav"
  198. };
  199. /* the QuickTime file format is quite convoluted...
  200. * it has lots of index tables, each indexing something in another one...
  201. * Here we just use what is needed to read the chunks
  202. */
  203. typedef struct MOV_sample_to_chunk_tbl {
  204. long first;
  205. long count;
  206. long id;
  207. } MOV_sample_to_chunk_tbl;
  208. typedef struct {
  209. uint32_t type;
  210. int64_t offset;
  211. int64_t size; /* total size (excluding the size and type fields) */
  212. } MOV_atom_t;
  213. typedef struct {
  214. int seed;
  215. int flags;
  216. int size;
  217. void* clrs;
  218. } MOV_ctab_t;
  219. typedef struct {
  220. uint8_t version;
  221. uint32_t flags; // 24bit
  222. /* 0x03 ESDescrTag */
  223. uint16_t es_id;
  224. #define MP4ODescrTag 0x01
  225. #define MP4IODescrTag 0x02
  226. #define MP4ESDescrTag 0x03
  227. #define MP4DecConfigDescrTag 0x04
  228. #define MP4DecSpecificDescrTag 0x05
  229. #define MP4SLConfigDescrTag 0x06
  230. #define MP4ContentIdDescrTag 0x07
  231. #define MP4SupplContentIdDescrTag 0x08
  232. #define MP4IPIPtrDescrTag 0x09
  233. #define MP4IPMPPtrDescrTag 0x0A
  234. #define MP4IPMPDescrTag 0x0B
  235. #define MP4RegistrationDescrTag 0x0D
  236. #define MP4ESIDIncDescrTag 0x0E
  237. #define MP4ESIDRefDescrTag 0x0F
  238. #define MP4FileIODescrTag 0x10
  239. #define MP4FileODescrTag 0x11
  240. #define MP4ExtProfileLevelDescrTag 0x13
  241. #define MP4ExtDescrTagsStart 0x80
  242. #define MP4ExtDescrTagsEnd 0xFE
  243. uint8_t stream_priority;
  244. /* 0x04 DecConfigDescrTag */
  245. uint8_t object_type_id;
  246. uint8_t stream_type;
  247. /* XXX: really streamType is
  248. * only 6bit, followed by:
  249. * 1bit upStream
  250. * 1bit reserved
  251. */
  252. uint32_t buffer_size_db; // 24
  253. uint32_t max_bitrate;
  254. uint32_t avg_bitrate;
  255. /* 0x05 DecSpecificDescrTag */
  256. uint8_t decoder_cfg_len;
  257. uint8_t *decoder_cfg;
  258. /* 0x06 SLConfigDescrTag */
  259. uint8_t sl_config_len;
  260. uint8_t *sl_config;
  261. } MOV_esds_t;
  262. struct MOVParseTableEntry;
  263. typedef struct MOVStreamContext {
  264. int ffindex; /* the ffmpeg stream id */
  265. int is_ff_stream; /* Is this stream presented to ffmpeg ? i.e. is this an audio or video stream ? */
  266. long next_chunk;
  267. long chunk_count;
  268. int64_t *chunk_offsets;
  269. int stts_count;
  270. Time2Sample *stts_data;
  271. int ctts_count;
  272. Time2Sample *ctts_data;
  273. int edit_count; /* number of 'edit' (elst atom) */
  274. long sample_to_chunk_sz;
  275. MOV_sample_to_chunk_tbl *sample_to_chunk;
  276. long sample_to_chunk_index;
  277. int sample_to_time_index;
  278. long sample_to_time_sample;
  279. uint64_t sample_to_time_time;
  280. int sample_to_ctime_index;
  281. int sample_to_ctime_sample;
  282. long sample_size;
  283. long sample_count;
  284. long *sample_sizes;
  285. long keyframe_count;
  286. long *keyframes;
  287. int time_scale;
  288. int time_rate;
  289. long current_sample;
  290. long left_in_chunk; /* how many samples before next chunk */
  291. MOV_esds_t esds;
  292. } MOVStreamContext;
  293. typedef struct MOVContext {
  294. int mp4; /* set to 1 as soon as we are sure that the file is an .mp4 file (even some header parsing depends on this) */
  295. AVFormatContext *fc;
  296. int time_scale;
  297. int duration; /* duration of the longest track */
  298. int found_moov; /* when both 'moov' and 'mdat' sections has been found */
  299. int found_mdat; /* we suppose we have enough data to read the file */
  300. int64_t mdat_size;
  301. int64_t mdat_offset;
  302. int ni; ///< non interleaved mode
  303. int total_streams;
  304. /* some streams listed here aren't presented to the ffmpeg API, since they aren't either video nor audio
  305. * but we need the info to be able to skip data from those streams in the 'mdat' section
  306. */
  307. MOVStreamContext *streams[MAX_STREAMS];
  308. int64_t next_chunk_offset;
  309. MOVStreamContext *partial; /* != 0 : there is still to read in the current chunk */
  310. int ctab_size;
  311. MOV_ctab_t **ctab; /* color tables */
  312. const struct MOVParseTableEntry *parse_table; /* could be eventually used to change the table */
  313. /* NOTE: for recursion save to/ restore from local variable! */
  314. AVPaletteControl palette_control;
  315. } MOVContext;
  316. /* XXX: it's the first time I make a recursive parser I think... sorry if it's ugly :P */
  317. /* those functions parse an atom */
  318. /* return code:
  319. 1: found what I wanted, exit
  320. 0: continue to parse next atom
  321. -1: error occured, exit
  322. */
  323. typedef int (*mov_parse_function)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom);
  324. /* links atom IDs to parse functions */
  325. typedef struct MOVParseTableEntry {
  326. uint32_t type;
  327. mov_parse_function func;
  328. } MOVParseTableEntry;
  329. static int ff_mov_lang_to_iso639(int code, char *to)
  330. {
  331. int i;
  332. /* is it the mangled iso code? */
  333. /* see http://www.geocities.com/xhelmboyx/quicktime/formats/mp4-layout.txt */
  334. if (code > 138) {
  335. for (i = 2; i >= 0; i--) {
  336. to[i] = 0x60 + (code & 0x1f);
  337. code >>= 5;
  338. }
  339. return 1;
  340. }
  341. /* old fashion apple lang code */
  342. if (code >= (sizeof(mov_mdhd_language_map)/sizeof(char *)))
  343. return 0;
  344. if (!mov_mdhd_language_map[code])
  345. return 0;
  346. strncpy(to, mov_mdhd_language_map[code], 4);
  347. return 1;
  348. }
  349. extern int ff_mov_iso639_to_lang(const char *lang, int mp4); /* for movenc.c */
  350. int ff_mov_iso639_to_lang(const char *lang, int mp4)
  351. {
  352. int i, code = 0;
  353. /* old way, only for QT? */
  354. for (i = 0; !mp4 && (i < (sizeof(mov_mdhd_language_map)/sizeof(char *))); i++) {
  355. if (mov_mdhd_language_map[i] && !strcmp(lang, mov_mdhd_language_map[i]))
  356. return i;
  357. }
  358. /* XXX:can we do that in mov too? */
  359. if (!mp4)
  360. return 0;
  361. /* handle undefined as such */
  362. if (lang[0] == '\0')
  363. lang = "und";
  364. /* 5bit ascii */
  365. for (i = 0; i < 3; i++) {
  366. unsigned char c = (unsigned char)lang[i];
  367. if (c < 0x60)
  368. return 0;
  369. if (c > 0x60 + 0x1f)
  370. return 0;
  371. code <<= 5;
  372. code |= (c - 0x60);
  373. }
  374. return code;
  375. }
  376. static int mov_read_leaf(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  377. {
  378. if (atom.size>1)
  379. url_fskip(pb, atom.size);
  380. /* url_seek(pb, atom_offset+atom.size, SEEK_SET); */
  381. return 0;
  382. }
  383. static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  384. {
  385. int64_t total_size = 0;
  386. MOV_atom_t a;
  387. int i;
  388. int err = 0;
  389. a.offset = atom.offset;
  390. if (atom.size < 0)
  391. atom.size = 0x7fffffffffffffffLL;
  392. while(((total_size + 8) < atom.size) && !url_feof(pb) && !err) {
  393. a.size = atom.size;
  394. a.type=0L;
  395. if(atom.size >= 8) {
  396. a.size = get_be32(pb);
  397. a.type = get_le32(pb);
  398. }
  399. total_size += 8;
  400. a.offset += 8;
  401. dprintf("type: %08x %.4s sz: %"PRIx64" %"PRIx64" %"PRIx64"\n", a.type, (char*)&a.type, a.size, atom.size, total_size);
  402. if (a.size == 1) { /* 64 bit extended size */
  403. a.size = get_be64(pb) - 8;
  404. a.offset += 8;
  405. total_size += 8;
  406. }
  407. if (a.size == 0) {
  408. a.size = atom.size - total_size;
  409. if (a.size <= 8)
  410. break;
  411. }
  412. for (i = 0; c->parse_table[i].type != 0L
  413. && c->parse_table[i].type != a.type; i++)
  414. /* empty */;
  415. a.size -= 8;
  416. if(a.size < 0)
  417. break;
  418. if (c->parse_table[i].type == 0) { /* skip leaf atoms data */
  419. url_fskip(pb, a.size);
  420. } else {
  421. err = (c->parse_table[i].func)(c, pb, a);
  422. }
  423. a.offset += a.size;
  424. total_size += a.size;
  425. }
  426. if (!err && total_size < atom.size && atom.size < 0x7ffff) {
  427. url_fskip(pb, atom.size - total_size);
  428. }
  429. return err;
  430. }
  431. static int mov_read_ctab(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  432. {
  433. #if 1
  434. url_fskip(pb, atom.size); // for now
  435. #else
  436. VERY VERY BROKEN, NEVER execute this, needs rewrite
  437. unsigned int len;
  438. MOV_ctab_t *t;
  439. c->ctab = av_realloc(c->ctab, ++c->ctab_size);
  440. t = c->ctab[c->ctab_size];
  441. t->seed = get_be32(pb);
  442. t->flags = get_be16(pb);
  443. t->size = get_be16(pb) + 1;
  444. len = 2 * t->size * 4;
  445. if (len > 0) {
  446. t->clrs = av_malloc(len); // 16bit A R G B
  447. if (t->clrs)
  448. get_buffer(pb, t->clrs, len);
  449. }
  450. #endif
  451. return 0;
  452. }
  453. static int mov_read_hdlr(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  454. {
  455. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  456. int len = 0;
  457. uint32_t type;
  458. uint32_t ctype;
  459. get_byte(pb); /* version */
  460. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  461. /* component type */
  462. ctype = get_le32(pb);
  463. type = get_le32(pb); /* component subtype */
  464. dprintf("ctype= %c%c%c%c (0x%08lx)\n", *((char *)&ctype), ((char *)&ctype)[1], ((char *)&ctype)[2], ((char *)&ctype)[3], (long) ctype);
  465. dprintf("stype= %c%c%c%c\n", *((char *)&type), ((char *)&type)[1], ((char *)&type)[2], ((char *)&type)[3]);
  466. if(ctype == MKTAG('m', 'h', 'l', 'r')) /* MOV */
  467. c->mp4 = 0;
  468. else if(ctype == 0)
  469. c->mp4 = 1;
  470. if(type == MKTAG('v', 'i', 'd', 'e'))
  471. st->codec->codec_type = CODEC_TYPE_VIDEO;
  472. else if(type == MKTAG('s', 'o', 'u', 'n'))
  473. st->codec->codec_type = CODEC_TYPE_AUDIO;
  474. get_be32(pb); /* component manufacture */
  475. get_be32(pb); /* component flags */
  476. get_be32(pb); /* component flags mask */
  477. if(atom.size <= 24)
  478. return 0; /* nothing left to read */
  479. /* XXX: MP4 uses a C string, not a pascal one */
  480. /* component name */
  481. if(c->mp4) {
  482. /* .mp4: C string */
  483. while(get_byte(pb) && (++len < (atom.size - 24)));
  484. } else {
  485. /* .mov: PASCAL string */
  486. len = get_byte(pb);
  487. url_fskip(pb, len);
  488. }
  489. url_fskip(pb, atom.size - (url_ftell(pb) - atom.offset));
  490. return 0;
  491. }
  492. static int mov_mp4_read_descr_len(ByteIOContext *pb)
  493. {
  494. int len = 0;
  495. int count = 4;
  496. while (count--) {
  497. int c = get_byte(pb);
  498. len = (len << 7) | (c & 0x7f);
  499. if (!(c & 0x80))
  500. break;
  501. }
  502. return len;
  503. }
  504. static int mov_mp4_read_descr(ByteIOContext *pb, int *tag)
  505. {
  506. int len;
  507. *tag = get_byte(pb);
  508. len = mov_mp4_read_descr_len(pb);
  509. dprintf("MPEG4 description: tag=0x%02x len=%d\n", *tag, len);
  510. return len;
  511. }
  512. static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  513. {
  514. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  515. MOVStreamContext *sc = (MOVStreamContext *)st->priv_data;
  516. int64_t start_pos = url_ftell(pb);
  517. int tag, len;
  518. /* Well, broken but suffisant for some MP4 streams */
  519. get_be32(pb); /* version + flags */
  520. len = mov_mp4_read_descr(pb, &tag);
  521. if (tag == MP4ESDescrTag) {
  522. get_be16(pb); /* ID */
  523. get_byte(pb); /* priority */
  524. } else
  525. get_be16(pb); /* ID */
  526. len = mov_mp4_read_descr(pb, &tag);
  527. if (tag == MP4DecConfigDescrTag) {
  528. sc->esds.object_type_id = get_byte(pb);
  529. sc->esds.stream_type = get_byte(pb);
  530. sc->esds.buffer_size_db = get_be24(pb);
  531. sc->esds.max_bitrate = get_be32(pb);
  532. sc->esds.avg_bitrate = get_be32(pb);
  533. st->codec->codec_id= codec_get_id(ff_mov_obj_type, sc->esds.object_type_id);
  534. len = mov_mp4_read_descr(pb, &tag);
  535. if (tag == MP4DecSpecificDescrTag) {
  536. dprintf("Specific MPEG4 header len=%d\n", len);
  537. st->codec->extradata = (uint8_t*) av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE);
  538. if (st->codec->extradata) {
  539. get_buffer(pb, st->codec->extradata, len);
  540. st->codec->extradata_size = len;
  541. }
  542. }
  543. }
  544. /* in any case, skip garbage */
  545. url_fskip(pb, atom.size - ((url_ftell(pb) - start_pos)));
  546. return 0;
  547. }
  548. /* this atom contains actual media data */
  549. static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  550. {
  551. if(atom.size == 0) /* wrong one (MP4) */
  552. return 0;
  553. c->found_mdat=1;
  554. c->mdat_offset = atom.offset;
  555. c->mdat_size = atom.size;
  556. if(c->found_moov)
  557. return 1; /* found both, just go */
  558. url_fskip(pb, atom.size);
  559. return 0; /* now go for moov */
  560. }
  561. static int mov_read_ftyp(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  562. {
  563. uint32_t type = get_le32(pb);
  564. /* from mplayer */
  565. switch (type) {
  566. case MKTAG('i', 's', 'o', 'm'):
  567. case MKTAG('m', 'p', '4', '1'):
  568. case MKTAG('m', 'p', '4', '2'):
  569. case MKTAG('3', 'g', 'p', '1'):
  570. case MKTAG('3', 'g', 'p', '2'):
  571. case MKTAG('3', 'g', '2', 'a'):
  572. case MKTAG('3', 'g', 'p', '3'):
  573. case MKTAG('3', 'g', 'p', '4'):
  574. case MKTAG('3', 'g', 'p', '5'):
  575. case MKTAG('m', 'm', 'p', '4'): /* Mobile MP4 */
  576. case MKTAG('M', '4', 'A', ' '): /* Apple iTunes AAC-LC Audio */
  577. case MKTAG('M', '4', 'P', ' '): /* Apple iTunes AAC-LC Protected Audio */
  578. case MKTAG('m', 'j', 'p', '2'): /* Motion Jpeg 2000 */
  579. c->mp4 = 1;
  580. case MKTAG('q', 't', ' ', ' '):
  581. default:
  582. av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
  583. }
  584. get_be32(pb); /* minor version */
  585. url_fskip(pb, atom.size - 8);
  586. return 0;
  587. }
  588. /* this atom should contain all header atoms */
  589. static int mov_read_moov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  590. {
  591. int err;
  592. err = mov_read_default(c, pb, atom);
  593. /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
  594. /* so we don't parse the whole file if over a network */
  595. c->found_moov=1;
  596. if(c->found_mdat)
  597. return 1; /* found both, just go */
  598. return 0; /* now go for mdat */
  599. }
  600. static int mov_read_mdhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  601. {
  602. int version;
  603. int lang;
  604. version = get_byte(pb); /* version */
  605. if (version > 1)
  606. return 1; /* unsupported */
  607. get_byte(pb); get_byte(pb);
  608. get_byte(pb); /* flags */
  609. (version==1)?get_be64(pb):get_be32(pb); /* creation time */
  610. (version==1)?get_be64(pb):get_be32(pb); /* modification time */
  611. c->streams[c->fc->nb_streams-1]->time_scale = get_be32(pb);
  612. c->fc->streams[c->fc->nb_streams-1]->duration = (version==1)?get_be64(pb):get_be32(pb); /* duration */
  613. lang = get_be16(pb); /* language */
  614. ff_mov_lang_to_iso639(lang, c->fc->streams[c->fc->nb_streams-1]->language);
  615. get_be16(pb); /* quality */
  616. return 0;
  617. }
  618. static int mov_read_mvhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  619. {
  620. get_byte(pb); /* version */
  621. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  622. get_be32(pb); /* creation time */
  623. get_be32(pb); /* modification time */
  624. c->time_scale = get_be32(pb); /* time scale */
  625. #ifdef DEBUG
  626. av_log(NULL, AV_LOG_DEBUG, "time scale = %i\n", c->time_scale);
  627. #endif
  628. c->duration = get_be32(pb); /* duration */
  629. get_be32(pb); /* preferred scale */
  630. get_be16(pb); /* preferred volume */
  631. url_fskip(pb, 10); /* reserved */
  632. url_fskip(pb, 36); /* display matrix */
  633. get_be32(pb); /* preview time */
  634. get_be32(pb); /* preview duration */
  635. get_be32(pb); /* poster time */
  636. get_be32(pb); /* selection time */
  637. get_be32(pb); /* selection duration */
  638. get_be32(pb); /* current time */
  639. get_be32(pb); /* next track ID */
  640. return 0;
  641. }
  642. static int mov_read_smi(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  643. {
  644. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  645. if((uint64_t)atom.size > (1<<30))
  646. return -1;
  647. // currently SVQ3 decoder expect full STSD header - so let's fake it
  648. // this should be fixed and just SMI header should be passed
  649. av_free(st->codec->extradata);
  650. st->codec->extradata_size = 0x5a + atom.size;
  651. st->codec->extradata = (uint8_t*) av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  652. if (st->codec->extradata) {
  653. strcpy(st->codec->extradata, "SVQ3"); // fake
  654. get_buffer(pb, st->codec->extradata + 0x5a, atom.size);
  655. dprintf("Reading SMI %"PRId64" %s\n", atom.size, (char*)st->codec->extradata + 0x5a);
  656. } else
  657. url_fskip(pb, atom.size);
  658. return 0;
  659. }
  660. static int mov_read_enda(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  661. {
  662. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  663. int little_endian = get_be16(pb);
  664. if (little_endian) {
  665. switch (st->codec->codec_id) {
  666. case CODEC_ID_PCM_S24BE:
  667. st->codec->codec_id = CODEC_ID_PCM_S24LE;
  668. break;
  669. case CODEC_ID_PCM_S32BE:
  670. st->codec->codec_id = CODEC_ID_PCM_S32LE;
  671. break;
  672. default:
  673. break;
  674. }
  675. }
  676. return 0;
  677. }
  678. static int mov_read_alac(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  679. {
  680. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  681. // currently ALAC decoder expect full atom header - so let's fake it
  682. // this should be fixed and just ALAC header should be passed
  683. av_free(st->codec->extradata);
  684. st->codec->extradata_size = 36;
  685. st->codec->extradata = (uint8_t*) av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  686. if (st->codec->extradata) {
  687. strcpy(st->codec->extradata + 4, "alac"); // fake
  688. get_buffer(pb, st->codec->extradata + 8, 36 - 8);
  689. dprintf("Reading alac %d %s\n", st->codec->extradata_size, (char*)st->codec->extradata);
  690. } else
  691. url_fskip(pb, atom.size);
  692. return 0;
  693. }
  694. static int mov_read_wave(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  695. {
  696. offset_t start_pos = url_ftell(pb);
  697. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  698. if((uint64_t)atom.size > (1<<30))
  699. return -1;
  700. if (st->codec->codec_id == CODEC_ID_QDM2) {
  701. // pass all frma atom to codec, needed at least for QDM2
  702. av_free(st->codec->extradata);
  703. st->codec->extradata_size = atom.size;
  704. st->codec->extradata = (uint8_t*) av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  705. if (st->codec->extradata) {
  706. get_buffer(pb, st->codec->extradata, atom.size);
  707. } else
  708. url_fskip(pb, atom.size);
  709. } else if (atom.size > 8) { /* to read frma, esds atoms */
  710. mov_read_default(c, pb, atom);
  711. } else if (atom.size > 0)
  712. url_fskip(pb, atom.size);
  713. /* in any case, skip garbage */
  714. url_fskip(pb, atom.size - ((url_ftell(pb) - start_pos)));
  715. return 0;
  716. }
  717. static int mov_read_jp2h(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  718. {
  719. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  720. if((uint64_t)atom.size > (1<<30))
  721. return -1;
  722. av_free(st->codec->extradata);
  723. st->codec->extradata_size = atom.size + 8;
  724. st->codec->extradata = (uint8_t*) av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  725. /* pass all jp2h atom to codec */
  726. if (st->codec->extradata) {
  727. strcpy(st->codec->extradata + 4, "jp2h");
  728. get_buffer(pb, st->codec->extradata + 8, atom.size);
  729. } else
  730. url_fskip(pb, atom.size);
  731. return 0;
  732. }
  733. static int mov_read_avcC(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  734. {
  735. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  736. if((uint64_t)atom.size > (1<<30))
  737. return -1;
  738. av_free(st->codec->extradata);
  739. st->codec->extradata_size = atom.size;
  740. st->codec->extradata = (uint8_t*) av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  741. if (st->codec->extradata) {
  742. get_buffer(pb, st->codec->extradata, atom.size);
  743. } else
  744. url_fskip(pb, atom.size);
  745. return 0;
  746. }
  747. static int mov_read_stco(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  748. {
  749. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  750. MOVStreamContext *sc = (MOVStreamContext *)st->priv_data;
  751. unsigned int i, entries;
  752. get_byte(pb); /* version */
  753. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  754. entries = get_be32(pb);
  755. if(entries >= UINT_MAX/sizeof(int64_t))
  756. return -1;
  757. sc->chunk_count = entries;
  758. sc->chunk_offsets = (int64_t*) av_malloc(entries * sizeof(int64_t));
  759. if (!sc->chunk_offsets)
  760. return -1;
  761. if (atom.type == MKTAG('s', 't', 'c', 'o')) {
  762. for(i=0; i<entries; i++) {
  763. sc->chunk_offsets[i] = get_be32(pb);
  764. }
  765. } else if (atom.type == MKTAG('c', 'o', '6', '4')) {
  766. for(i=0; i<entries; i++) {
  767. sc->chunk_offsets[i] = get_be64(pb);
  768. }
  769. } else
  770. return -1;
  771. for(i=0; i<c->fc->nb_streams; i++){
  772. MOVStreamContext *sc2 = (MOVStreamContext *)c->fc->streams[i]->priv_data;
  773. if(sc2 && sc2->chunk_offsets){
  774. int64_t first= sc2->chunk_offsets[0];
  775. int64_t last= sc2->chunk_offsets[sc2->chunk_count-1];
  776. if(first >= sc->chunk_offsets[entries-1] || last <= sc->chunk_offsets[0])
  777. c->ni=1;
  778. }
  779. }
  780. return 0;
  781. }
  782. static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  783. {
  784. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  785. MOVStreamContext *sc = (MOVStreamContext *)st->priv_data;
  786. int entries, frames_per_sample;
  787. uint32_t format;
  788. uint8_t codec_name[32];
  789. /* for palette traversal */
  790. int color_depth;
  791. int color_start;
  792. int color_count;
  793. int color_end;
  794. int color_index;
  795. int color_dec;
  796. int color_greyscale;
  797. unsigned char *color_table;
  798. int j;
  799. unsigned char r, g, b;
  800. get_byte(pb); /* version */
  801. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  802. entries = get_be32(pb);
  803. while(entries--) { //Parsing Sample description table
  804. enum CodecID id;
  805. MOV_atom_t a = { 0, 0, 0 };
  806. offset_t start_pos = url_ftell(pb);
  807. int size = get_be32(pb); /* size */
  808. format = get_le32(pb); /* data format */
  809. get_be32(pb); /* reserved */
  810. get_be16(pb); /* reserved */
  811. get_be16(pb); /* index */
  812. dprintf("size=%d 4CC= %c%c%c%c codec_type=%d\n",
  813. size,
  814. (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff, (format >> 24) & 0xff,
  815. st->codec->codec_type);
  816. st->codec->codec_tag = format;
  817. /* codec_type is set earlier by read_hdlr */
  818. if(st->codec->codec_type==CODEC_TYPE_VIDEO) {
  819. /* for MPEG4: set codec type by looking for it */
  820. id = codec_get_id(mov_video_tags, format);
  821. if(id <= 0)
  822. id = codec_get_id(codec_bmp_tags, format);
  823. st->codec->codec_id = id;
  824. get_be16(pb); /* version */
  825. get_be16(pb); /* revision level */
  826. get_be32(pb); /* vendor */
  827. get_be32(pb); /* temporal quality */
  828. get_be32(pb); /* spacial quality */
  829. if(st->codec->codec_id == CODEC_ID_MPEG4){ //FIXME this is silly
  830. get_be16(pb);
  831. get_be16(pb);
  832. }else{
  833. st->codec->width = get_be16(pb); /* width */
  834. st->codec->height = get_be16(pb); /* height */
  835. }
  836. get_be32(pb); /* horiz resolution */
  837. get_be32(pb); /* vert resolution */
  838. get_be32(pb); /* data size, always 0 */
  839. frames_per_sample = get_be16(pb); /* frames per samples */
  840. #ifdef DEBUG
  841. av_log(NULL, AV_LOG_DEBUG, "frames/samples = %d\n", frames_per_sample);
  842. #endif
  843. get_buffer(pb, codec_name, 32); /* codec name, pascal string (FIXME: true for mp4?) */
  844. if (codec_name[0] <= 31) {
  845. memcpy(st->codec->codec_name, &codec_name[1],codec_name[0]);
  846. st->codec->codec_name[codec_name[0]] = 0;
  847. }
  848. st->codec->bits_per_sample = get_be16(pb); /* depth */
  849. st->codec->color_table_id = get_be16(pb); /* colortable id */
  850. /* These are set in mov_read_stts and might already be set!
  851. st->codec->time_base.den = 25;
  852. st->codec->time_base.num = 1;
  853. */
  854. /* figure out the palette situation */
  855. color_depth = st->codec->bits_per_sample & 0x1F;
  856. color_greyscale = st->codec->bits_per_sample & 0x20;
  857. /* if the depth is 2, 4, or 8 bpp, file is palettized */
  858. if ((color_depth == 2) || (color_depth == 4) ||
  859. (color_depth == 8)) {
  860. if (color_greyscale) {
  861. /* compute the greyscale palette */
  862. color_count = 1 << color_depth;
  863. color_index = 255;
  864. color_dec = 256 / (color_count - 1);
  865. for (j = 0; j < color_count; j++) {
  866. r = g = b = color_index;
  867. c->palette_control.palette[j] =
  868. (r << 16) | (g << 8) | (b);
  869. color_index -= color_dec;
  870. if (color_index < 0)
  871. color_index = 0;
  872. }
  873. } else if (st->codec->color_table_id & 0x08) {
  874. /* if flag bit 3 is set, use the default palette */
  875. color_count = 1 << color_depth;
  876. if (color_depth == 2)
  877. color_table = ff_qt_default_palette_4;
  878. else if (color_depth == 4)
  879. color_table = ff_qt_default_palette_16;
  880. else
  881. color_table = ff_qt_default_palette_256;
  882. for (j = 0; j < color_count; j++) {
  883. r = color_table[j * 4 + 0];
  884. g = color_table[j * 4 + 1];
  885. b = color_table[j * 4 + 2];
  886. c->palette_control.palette[j] =
  887. (r << 16) | (g << 8) | (b);
  888. }
  889. } else {
  890. /* load the palette from the file */
  891. color_start = get_be32(pb);
  892. color_count = get_be16(pb);
  893. color_end = get_be16(pb);
  894. for (j = color_start; j <= color_end; j++) {
  895. /* each R, G, or B component is 16 bits;
  896. * only use the top 8 bits; skip alpha bytes
  897. * up front */
  898. get_byte(pb);
  899. get_byte(pb);
  900. r = get_byte(pb);
  901. get_byte(pb);
  902. g = get_byte(pb);
  903. get_byte(pb);
  904. b = get_byte(pb);
  905. get_byte(pb);
  906. c->palette_control.palette[j] =
  907. (r << 16) | (g << 8) | (b);
  908. }
  909. }
  910. st->codec->palctrl = &c->palette_control;
  911. st->codec->palctrl->palette_changed = 1;
  912. } else
  913. st->codec->palctrl = NULL;
  914. } else if(st->codec->codec_type==CODEC_TYPE_AUDIO) {
  915. uint16_t version = get_be16(pb);
  916. st->codec->codec_id = codec_get_id(mov_audio_tags, format);
  917. get_be16(pb); /* revision level */
  918. get_be32(pb); /* vendor */
  919. st->codec->channels = get_be16(pb); /* channel count */
  920. st->codec->bits_per_sample = get_be16(pb); /* sample size */
  921. /* do we need to force to 16 for AMR ? */
  922. /* handle specific s8 codec */
  923. get_be16(pb); /* compression id = 0*/
  924. get_be16(pb); /* packet size = 0 */
  925. st->codec->sample_rate = ((get_be32(pb) >> 16));
  926. switch (st->codec->codec_id) {
  927. case CODEC_ID_PCM_S16BE:
  928. if (st->codec->bits_per_sample == 8)
  929. st->codec->codec_id = CODEC_ID_PCM_S8;
  930. /* fall */
  931. case CODEC_ID_PCM_U8:
  932. if (st->codec->bits_per_sample == 16)
  933. st->codec->codec_id = CODEC_ID_PCM_S16BE;
  934. st->codec->bit_rate = st->codec->sample_rate * 8;
  935. break;
  936. case CODEC_ID_AMR_WB:
  937. st->codec->sample_rate = 16000; /* should really we ? */
  938. st->codec->channels=1; /* really needed */
  939. break;
  940. case CODEC_ID_AMR_NB:
  941. st->codec->sample_rate = 8000; /* should really we ? */
  942. st->codec->channels=1; /* really needed */
  943. break;
  944. default:
  945. break;
  946. }
  947. //Read QT version 1 fields. In version 0 theese dont exist
  948. dprintf("version =%d mp4=%d\n",version,c->mp4);
  949. if(version==1) {
  950. get_be32(pb); /* samples per packet */
  951. get_be32(pb); /* bytes per packet */
  952. get_be32(pb); /* bytes per frame */
  953. get_be32(pb); /* bytes per sample */
  954. } else if(version==2) {
  955. get_be32(pb); /* sizeof struct only */
  956. st->codec->sample_rate = av_int2dbl(get_be64(pb)); /* float 64 */
  957. st->codec->channels = get_be32(pb);
  958. get_be32(pb); /* always 0x7F000000 */
  959. get_be32(pb); /* bits per channel if sound is uncompressed */
  960. get_be32(pb); /* lcpm format specific flag */
  961. get_be32(pb); /* bytes per audio packet if constant */
  962. get_be32(pb); /* lpcm frames per audio packet if constant */
  963. }
  964. } else {
  965. /* other codec type, just skip (rtp, mp4s, tmcd ...) */
  966. url_fskip(pb, size - (url_ftell(pb) - start_pos));
  967. }
  968. /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
  969. a.size = size - (url_ftell(pb) - start_pos);
  970. if (a.size > 8)
  971. mov_read_default(c, pb, a);
  972. else if (a.size > 0)
  973. url_fskip(pb, a.size);
  974. }
  975. if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1) {
  976. st->codec->sample_rate= sc->time_scale;
  977. }
  978. return 0;
  979. }
  980. static int mov_read_stsc(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  981. {
  982. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  983. MOVStreamContext *sc = (MOVStreamContext *)st->priv_data;
  984. unsigned int i, entries;
  985. get_byte(pb); /* version */
  986. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  987. entries = get_be32(pb);
  988. if(entries >= UINT_MAX / sizeof(MOV_sample_to_chunk_tbl))
  989. return -1;
  990. #ifdef DEBUG
  991. av_log(NULL, AV_LOG_DEBUG, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
  992. #endif
  993. sc->sample_to_chunk_sz = entries;
  994. sc->sample_to_chunk = (MOV_sample_to_chunk_tbl*) av_malloc(entries * sizeof(MOV_sample_to_chunk_tbl));
  995. if (!sc->sample_to_chunk)
  996. return -1;
  997. for(i=0; i<entries; i++) {
  998. sc->sample_to_chunk[i].first = get_be32(pb);
  999. sc->sample_to_chunk[i].count = get_be32(pb);
  1000. sc->sample_to_chunk[i].id = get_be32(pb);
  1001. }
  1002. return 0;
  1003. }
  1004. static int mov_read_stss(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1005. {
  1006. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  1007. MOVStreamContext *sc = (MOVStreamContext *)st->priv_data;
  1008. unsigned int i, entries;
  1009. get_byte(pb); /* version */
  1010. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  1011. entries = get_be32(pb);
  1012. if(entries >= UINT_MAX / sizeof(long))
  1013. return -1;
  1014. sc->keyframe_count = entries;
  1015. #ifdef DEBUG
  1016. av_log(NULL, AV_LOG_DEBUG, "keyframe_count = %ld\n", sc->keyframe_count);
  1017. #endif
  1018. sc->keyframes = (long*) av_malloc(entries * sizeof(long));
  1019. if (!sc->keyframes)
  1020. return -1;
  1021. for(i=0; i<entries; i++) {
  1022. sc->keyframes[i] = get_be32(pb);
  1023. #ifdef DEBUG
  1024. /* av_log(NULL, AV_LOG_DEBUG, "keyframes[]=%ld\n", sc->keyframes[i]); */
  1025. #endif
  1026. }
  1027. return 0;
  1028. }
  1029. static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1030. {
  1031. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  1032. MOVStreamContext *sc = (MOVStreamContext *)st->priv_data;
  1033. unsigned int i, entries;
  1034. get_byte(pb); /* version */
  1035. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  1036. sc->sample_size = get_be32(pb);
  1037. entries = get_be32(pb);
  1038. if(entries >= UINT_MAX / sizeof(long))
  1039. return -1;
  1040. sc->sample_count = entries;
  1041. #ifdef DEBUG
  1042. av_log(NULL, AV_LOG_DEBUG, "sample_size = %ld sample_count = %ld\n", sc->sample_size, sc->sample_count);
  1043. #endif
  1044. if(sc->sample_size) {
  1045. /* override sample size for uncompressed sound */
  1046. switch (st->codec->codec_id) {
  1047. case CODEC_ID_PCM_S32BE:
  1048. case CODEC_ID_PCM_S32LE:
  1049. sc->sample_size = 4 * st->codec->channels;
  1050. break;
  1051. case CODEC_ID_PCM_S24BE:
  1052. case CODEC_ID_PCM_S24LE:
  1053. sc->sample_size = 3 * st->codec->channels;
  1054. break;
  1055. case CODEC_ID_PCM_S16BE:
  1056. case CODEC_ID_PCM_S16LE:
  1057. sc->sample_size = 2 * st->codec->channels;
  1058. break;
  1059. case CODEC_ID_PCM_MULAW:
  1060. case CODEC_ID_PCM_ALAW:
  1061. case CODEC_ID_PCM_S8:
  1062. case CODEC_ID_PCM_U8:
  1063. sc->sample_size = 1 * st->codec->channels;
  1064. break;
  1065. default:
  1066. break;
  1067. }
  1068. assert(sc->sample_size);
  1069. return 0; /* there isn't any table following */
  1070. }
  1071. sc->sample_sizes = (long*) av_malloc(entries * sizeof(long));
  1072. if (!sc->sample_sizes)
  1073. return -1;
  1074. for(i=0; i<entries; i++) {
  1075. sc->sample_sizes[i] = get_be32(pb);
  1076. #ifdef DEBUG
  1077. av_log(NULL, AV_LOG_DEBUG, "sample_sizes[]=%ld\n", sc->sample_sizes[i]);
  1078. #endif
  1079. }
  1080. return 0;
  1081. }
  1082. static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1083. {
  1084. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  1085. MOVStreamContext *sc = (MOVStreamContext *)st->priv_data;
  1086. unsigned int i, entries;
  1087. int64_t duration=0;
  1088. int64_t total_sample_count=0;
  1089. get_byte(pb); /* version */
  1090. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  1091. entries = get_be32(pb);
  1092. if(entries >= UINT_MAX / sizeof(Time2Sample))
  1093. return -1;
  1094. sc->stts_count = entries;
  1095. sc->stts_data = av_malloc(entries * sizeof(Time2Sample));
  1096. #ifdef DEBUG
  1097. av_log(NULL, AV_LOG_DEBUG, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries);
  1098. #endif
  1099. sc->time_rate=0;
  1100. for(i=0; i<entries; i++) {
  1101. int sample_duration;
  1102. int sample_count;
  1103. sample_count=get_be32(pb);
  1104. sample_duration = get_be32(pb);
  1105. sc->stts_data[i].count= sample_count;
  1106. sc->stts_data[i].duration= sample_duration;
  1107. sc->time_rate= ff_gcd(sc->time_rate, sample_duration);
  1108. dprintf("sample_count=%d, sample_duration=%d\n",sample_count,sample_duration);
  1109. duration+=sample_duration*sample_count;
  1110. total_sample_count+=sample_count;
  1111. }
  1112. st->nb_frames= total_sample_count;
  1113. if(duration)
  1114. st->duration= duration;
  1115. return 0;
  1116. }
  1117. static int mov_read_ctts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1118. {
  1119. AVStream *st = c->fc->streams[c->fc->nb_streams-1];
  1120. MOVStreamContext *sc = (MOVStreamContext *)st->priv_data;
  1121. unsigned int i, entries;
  1122. get_byte(pb); /* version */
  1123. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  1124. entries = get_be32(pb);
  1125. if(entries >= UINT_MAX / sizeof(Time2Sample))
  1126. return -1;
  1127. sc->ctts_count = entries;
  1128. sc->ctts_data = av_malloc(entries * sizeof(Time2Sample));
  1129. dprintf("track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
  1130. for(i=0; i<entries; i++) {
  1131. int count =get_be32(pb);
  1132. int duration =get_be32(pb);
  1133. sc->ctts_data[i].count = count;
  1134. sc->ctts_data[i].duration= duration;
  1135. sc->time_rate= ff_gcd(sc->time_rate, duration);
  1136. }
  1137. return 0;
  1138. }
  1139. static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1140. {
  1141. AVStream *st;
  1142. MOVStreamContext *sc;
  1143. st = av_new_stream(c->fc, c->fc->nb_streams);
  1144. if (!st) return -2;
  1145. sc = (MOVStreamContext*) av_mallocz(sizeof(MOVStreamContext));
  1146. if (!sc) {
  1147. av_free(st);
  1148. return -1;
  1149. }
  1150. sc->sample_to_chunk_index = -1;
  1151. st->priv_data = sc;
  1152. st->codec->codec_type = CODEC_TYPE_MOV_OTHER;
  1153. st->start_time = 0; /* XXX: check */
  1154. c->streams[c->fc->nb_streams-1] = sc;
  1155. return mov_read_default(c, pb, atom);
  1156. }
  1157. static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1158. {
  1159. AVStream *st;
  1160. st = c->fc->streams[c->fc->nb_streams-1];
  1161. get_byte(pb); /* version */
  1162. get_byte(pb); get_byte(pb);
  1163. get_byte(pb); /* flags */
  1164. /*
  1165. MOV_TRACK_ENABLED 0x0001
  1166. MOV_TRACK_IN_MOVIE 0x0002
  1167. MOV_TRACK_IN_PREVIEW 0x0004
  1168. MOV_TRACK_IN_POSTER 0x0008
  1169. */
  1170. get_be32(pb); /* creation time */
  1171. get_be32(pb); /* modification time */
  1172. st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/
  1173. get_be32(pb); /* reserved */
  1174. st->start_time = 0; /* check */
  1175. get_be32(pb); /* highlevel (considering edits) duration in movie timebase */
  1176. get_be32(pb); /* reserved */
  1177. get_be32(pb); /* reserved */
  1178. get_be16(pb); /* layer */
  1179. get_be16(pb); /* alternate group */
  1180. get_be16(pb); /* volume */
  1181. get_be16(pb); /* reserved */
  1182. url_fskip(pb, 36); /* display matrix */
  1183. /* those are fixed-point */
  1184. /*st->codec->width =*/ get_be32(pb) >> 16; /* track width */
  1185. /*st->codec->height =*/ get_be32(pb) >> 16; /* track height */
  1186. return 0;
  1187. }
  1188. /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
  1189. /* like the files created with Adobe Premiere 5.0, for samples see */
  1190. /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
  1191. static int mov_read_wide(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1192. {
  1193. int err;
  1194. if (atom.size < 8)
  1195. return 0; /* continue */
  1196. if (get_be32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
  1197. url_fskip(pb, atom.size - 4);
  1198. return 0;
  1199. }
  1200. atom.type = get_le32(pb);
  1201. atom.offset += 8;
  1202. atom.size -= 8;
  1203. if (atom.type != MKTAG('m', 'd', 'a', 't')) {
  1204. url_fskip(pb, atom.size);
  1205. return 0;
  1206. }
  1207. err = mov_read_mdat(c, pb, atom);
  1208. return err;
  1209. }
  1210. #ifdef CONFIG_ZLIB
  1211. static int null_read_packet(void *opaque, uint8_t *buf, int buf_size)
  1212. {
  1213. return -1;
  1214. }
  1215. static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1216. {
  1217. ByteIOContext ctx;
  1218. uint8_t *cmov_data;
  1219. uint8_t *moov_data; /* uncompressed data */
  1220. long cmov_len, moov_len;
  1221. int ret;
  1222. get_be32(pb); /* dcom atom */
  1223. if (get_le32(pb) != MKTAG( 'd', 'c', 'o', 'm' ))
  1224. return -1;
  1225. if (get_le32(pb) != MKTAG( 'z', 'l', 'i', 'b' )) {
  1226. av_log(NULL, AV_LOG_ERROR, "unknown compression for cmov atom !");
  1227. return -1;
  1228. }
  1229. get_be32(pb); /* cmvd atom */
  1230. if (get_le32(pb) != MKTAG( 'c', 'm', 'v', 'd' ))
  1231. return -1;
  1232. moov_len = get_be32(pb); /* uncompressed size */
  1233. cmov_len = atom.size - 6 * 4;
  1234. cmov_data = (uint8_t *) av_malloc(cmov_len);
  1235. if (!cmov_data)
  1236. return -1;
  1237. moov_data = (uint8_t *) av_malloc(moov_len);
  1238. if (!moov_data) {
  1239. av_free(cmov_data);
  1240. return -1;
  1241. }
  1242. get_buffer(pb, cmov_data, cmov_len);
  1243. if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
  1244. return -1;
  1245. if(init_put_byte(&ctx, moov_data, moov_len, 0, NULL, null_read_packet, NULL, NULL) != 0)
  1246. return -1;
  1247. ctx.buf_end = ctx.buffer + moov_len;
  1248. atom.type = MKTAG( 'm', 'o', 'o', 'v' );
  1249. atom.offset = 0;
  1250. atom.size = moov_len;
  1251. #ifdef DEBUG
  1252. // { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); }
  1253. #endif
  1254. ret = mov_read_default(c, &ctx, atom);
  1255. av_free(moov_data);
  1256. av_free(cmov_data);
  1257. return ret;
  1258. }
  1259. #endif
  1260. /* edit list atom */
  1261. static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
  1262. {
  1263. int i, edit_count;
  1264. get_byte(pb); /* version */
  1265. get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
  1266. edit_count= c->streams[c->fc->nb_streams-1]->edit_count = get_be32(pb); /* entries */
  1267. for(i=0; i<edit_count; i++){
  1268. get_be32(pb); /* Track duration */
  1269. get_be32(pb); /* Media time */
  1270. get_be32(pb); /* Media rate */
  1271. }
  1272. dprintf("track[%i].edit_count = %i\n", c->fc->nb_streams-1, c->streams[c->fc->nb_streams-1]->edit_count);
  1273. return 0;
  1274. }
  1275. static const MOVParseTableEntry mov_default_parse_table[] = {
  1276. /* mp4 atoms */
  1277. { MKTAG( 'c', 'o', '6', '4' ), mov_read_stco },
  1278. { MKTAG( 'c', 'p', 'r', 't' ), mov_read_default },
  1279. { MKTAG( 'c', 'r', 'h', 'd' ), mov_read_default },
  1280. { MKTAG( 'c', 't', 't', 's' ), mov_read_ctts }, /* composition time to sample */
  1281. { MKTAG( 'd', 'i', 'n', 'f' ), mov_read_default }, /* data information */
  1282. { MKTAG( 'd', 'p', 'n', 'd' ), mov_read_leaf },
  1283. { MKTAG( 'd', 'r', 'e', 'f' ), mov_read_leaf },
  1284. { MKTAG( 'e', 'd', 't', 's' ), mov_read_default },
  1285. { MKTAG( 'e', 'l', 's', 't' ), mov_read_elst },
  1286. { MKTAG( 'e', 'n', 'd', 'a' ), mov_read_enda },
  1287. { MKTAG( 'f', 'r', 'e', 'e' ), mov_read_leaf },
  1288. { MKTAG( 'f', 't', 'y', 'p' ), mov_read_ftyp },
  1289. { MKTAG( 'h', 'd', 'l', 'r' ), mov_read_hdlr },
  1290. { MKTAG( 'h', 'i', 'n', 't' ), mov_read_leaf },
  1291. { MKTAG( 'h', 'm', 'h', 'd' ), mov_read_leaf },
  1292. { MKTAG( 'i', 'o', 'd', 's' ), mov_read_leaf },
  1293. { MKTAG( 'j', 'p', '2', 'h' ), mov_read_jp2h },
  1294. { MKTAG( 'm', 'd', 'a', 't' ), mov_read_mdat },
  1295. { MKTAG( 'm', 'd', 'h', 'd' ), mov_read_mdhd },
  1296. { MKTAG( 'm', 'd', 'i', 'a' ), mov_read_default },
  1297. { MKTAG( 'm', 'i', 'n', 'f' ), mov_read_default },
  1298. { MKTAG( 'm', 'o', 'o', 'v' ), mov_read_moov },
  1299. { MKTAG( 'm', 'p', '4', 'a' ), mov_read_default },
  1300. { MKTAG( 'm', 'p', '4', 's' ), mov_read_default },
  1301. { MKTAG( 'm', 'p', '4', 'v' ), mov_read_default },
  1302. { MKTAG( 'm', 'p', 'o', 'd' ), mov_read_leaf },
  1303. { MKTAG( 'm', 'v', 'h', 'd' ), mov_read_mvhd },
  1304. { MKTAG( 'n', 'm', 'h', 'd' ), mov_read_leaf },
  1305. { MKTAG( 'o', 'd', 'h', 'd' ), mov_read_default },
  1306. { MKTAG( 's', 'd', 'h', 'd' ), mov_read_default },
  1307. { MKTAG( 's', 'k', 'i', 'p' ), mov_read_leaf },
  1308. { MKTAG( 's', 'm', 'h', 'd' ), mov_read_leaf }, /* sound media info header */
  1309. { MKTAG( 'S', 'M', 'I', ' ' ), mov_read_smi }, /* Sorenson extension ??? */
  1310. { MKTAG( 'a', 'l', 'a', 'c' ), mov_read_alac }, /* alac specific atom */
  1311. { MKTAG( 'a', 'v', 'c', 'C' ), mov_read_avcC },
  1312. { MKTAG( 's', 't', 'b', 'l' ), mov_read_default },
  1313. { MKTAG( 's', 't', 'c', 'o' ), mov_read_stco },
  1314. { MKTAG( 's', 't', 'd', 'p' ), mov_read_default },
  1315. { MKTAG( 's', 't', 's', 'c' ), mov_read_stsc },
  1316. { MKTAG( 's', 't', 's', 'd' ), mov_read_stsd }, /* sample description */
  1317. { MKTAG( 's', 't', 's', 'h' ), mov_read_default },
  1318. { MKTAG( 's', 't', 's', 's' ), mov_read_stss }, /* sync sample */
  1319. { MKTAG( 's', 't', 's', 'z' ), mov_read_stsz }, /* sample size */
  1320. { MKTAG( 's', 't', 't', 's' ), mov_read_stts },
  1321. { MKTAG( 't', 'k', 'h', 'd' ), mov_read_tkhd }, /* track header */
  1322. { MKTAG( 't', 'r', 'a', 'k' ), mov_read_trak },
  1323. { MKTAG( 't', 'r', 'e', 'f' ), mov_read_default }, /* not really */
  1324. { MKTAG( 'u', 'd', 't', 'a' ), mov_read_leaf },
  1325. { MKTAG( 'u', 'r', 'l', ' ' ), mov_read_leaf },
  1326. { MKTAG( 'u', 'r', 'n', ' ' ), mov_read_leaf },
  1327. { MKTAG( 'u', 'u', 'i', 'd' ), mov_read_leaf },
  1328. { MKTAG( 'v', 'm', 'h', 'd' ), mov_read_leaf }, /* video media info header */
  1329. { MKTAG( 'w', 'a', 'v', 'e' ), mov_read_wave },
  1330. /* extra mp4 */
  1331. { MKTAG( 'M', 'D', 'E', 'S' ), mov_read_leaf },
  1332. /* QT atoms */
  1333. { MKTAG( 'c', 'h', 'a', 'p' ), mov_read_leaf },
  1334. { MKTAG( 'c', 'l', 'i', 'p' ), mov_read_default },
  1335. { MKTAG( 'c', 'r', 'g', 'n' ), mov_read_leaf },
  1336. { MKTAG( 'c', 't', 'a', 'b' ), mov_read_ctab },
  1337. { MKTAG( 'e', 's', 'd', 's' ), mov_read_esds },
  1338. { MKTAG( 'k', 'm', 'a', 't' ), mov_read_leaf },
  1339. { MKTAG( 'm', 'a', 't', 't' ), mov_read_default },
  1340. { MKTAG( 'r', 'd', 'r', 'f' ), mov_read_leaf },
  1341. { MKTAG( 'r', 'm', 'd', 'a' ), mov_read_default },
  1342. { MKTAG( 'r', 'm', 'd', 'r' ), mov_read_leaf },
  1343. { MKTAG( 'r', 'm', 'r', 'a' ), mov_read_default },
  1344. { MKTAG( 's', 'c', 'p', 't' ), mov_read_leaf },
  1345. { MKTAG( 's', 's', 'r', 'c' ), mov_read_leaf },
  1346. { MKTAG( 's', 'y', 'n', 'c' ), mov_read_leaf },
  1347. { MKTAG( 't', 'c', 'm', 'd' ), mov_read_leaf },
  1348. { MKTAG( 'w', 'i', 'd', 'e' ), mov_read_wide }, /* place holder */
  1349. //{ MKTAG( 'r', 'm', 'q', 'u' ), mov_read_leaf },
  1350. #ifdef CONFIG_ZLIB
  1351. { MKTAG( 'c', 'm', 'o', 'v' ), mov_read_cmov },
  1352. #else
  1353. { MKTAG( 'c', 'm', 'o', 'v' ), mov_read_leaf },
  1354. #endif
  1355. { 0L, mov_read_leaf }
  1356. };
  1357. static void mov_free_stream_context(MOVStreamContext *sc)
  1358. {
  1359. if(sc) {
  1360. av_freep(&sc->chunk_offsets);
  1361. av_freep(&sc->sample_to_chunk);
  1362. av_freep(&sc->sample_sizes);
  1363. av_freep(&sc->keyframes);
  1364. av_freep(&sc->stts_data);
  1365. av_freep(&sc->ctts_data);
  1366. av_freep(&sc);
  1367. }
  1368. }
  1369. static inline uint32_t mov_to_tag(uint8_t *buf)
  1370. {
  1371. return MKTAG(buf[0], buf[1], buf[2], buf[3]);
  1372. }
  1373. static inline uint32_t to_be32(uint8_t *buf)
  1374. {
  1375. return (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
  1376. }
  1377. /* XXX: is it sufficient ? */
  1378. static int mov_probe(AVProbeData *p)
  1379. {
  1380. unsigned int offset;
  1381. uint32_t tag;
  1382. int score = 0;
  1383. /* check file header */
  1384. if (p->buf_size <= 12)
  1385. return 0;
  1386. offset = 0;
  1387. for(;;) {
  1388. /* ignore invalid offset */
  1389. if ((offset + 8) > (unsigned int)p->buf_size)
  1390. return score;
  1391. tag = mov_to_tag(p->buf + offset + 4);
  1392. switch(tag) {
  1393. /* check for obvious tags */
  1394. case MKTAG( 'j', 'P', ' ', ' ' ): /* jpeg 2000 signature */
  1395. case MKTAG( 'm', 'o', 'o', 'v' ):
  1396. case MKTAG( 'm', 'd', 'a', 't' ):
  1397. case MKTAG( 'p', 'n', 'o', 't' ): /* detect movs with preview pics like ew.mov and april.mov */
  1398. case MKTAG( 'u', 'd', 't', 'a' ): /* Packet Video PVAuthor adds this and a lot of more junk */
  1399. return AVPROBE_SCORE_MAX;
  1400. /* those are more common words, so rate then a bit less */
  1401. case MKTAG( 'w', 'i', 'd', 'e' ):
  1402. case MKTAG( 'f', 'r', 'e', 'e' ):
  1403. case MKTAG( 'j', 'u', 'n', 'k' ):
  1404. case MKTAG( 'p', 'i', 'c', 't' ):
  1405. return AVPROBE_SCORE_MAX - 5;
  1406. case MKTAG( 'f', 't', 'y', 'p' ):
  1407. case MKTAG( 's', 'k', 'i', 'p' ):
  1408. case MKTAG( 'u', 'u', 'i', 'd' ):
  1409. offset = to_be32(p->buf+offset) + offset;
  1410. /* if we only find those cause probedata is too small at least rate them */
  1411. score = AVPROBE_SCORE_MAX - 50;
  1412. break;
  1413. default:
  1414. /* unrecognized tag */
  1415. return score;
  1416. }
  1417. }
  1418. return score;
  1419. }
  1420. static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
  1421. {
  1422. MOVContext *mov = (MOVContext *) s->priv_data;
  1423. ByteIOContext *pb = &s->pb;
  1424. int i, j, nb, err;
  1425. MOV_atom_t atom = { 0, 0, 0 };
  1426. mov->fc = s;
  1427. mov->parse_table = mov_default_parse_table;
  1428. if(!url_is_streamed(pb)) /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
  1429. atom.size = url_fsize(pb);
  1430. else
  1431. atom.size = 0x7FFFFFFFFFFFFFFFLL;
  1432. /* check MOV header */
  1433. err = mov_read_default(mov, pb, atom);
  1434. if (err<0 || (!mov->found_moov && !mov->found_mdat)) {
  1435. av_log(s, AV_LOG_ERROR, "mov: header not found !!! (err:%d, moov:%d, mdat:%d) pos:%"PRId64"\n",
  1436. err, mov->found_moov, mov->found_mdat, url_ftell(pb));
  1437. return -1;
  1438. }
  1439. dprintf("on_parse_exit_offset=%d\n", (int) url_ftell(pb));
  1440. /* some cleanup : make sure we are on the mdat atom */
  1441. if(!url_is_streamed(pb) && (url_ftell(pb) != mov->mdat_offset))
  1442. url_fseek(pb, mov->mdat_offset, SEEK_SET);
  1443. mov->next_chunk_offset = mov->mdat_offset; /* initialise reading */
  1444. mov->total_streams = nb = s->nb_streams;
  1445. #if 1
  1446. for(i=0; i<s->nb_streams;) {
  1447. if(s->streams[i]->codec->codec_type == CODEC_TYPE_MOV_OTHER) {/* not audio, not video, delete */
  1448. av_free(s->streams[i]);
  1449. for(j=i+1; j<s->nb_streams; j++)
  1450. s->streams[j-1] = s->streams[j];
  1451. s->nb_streams--;
  1452. } else
  1453. i++;
  1454. }
  1455. for(i=0; i<s->nb_streams;i++) {
  1456. MOVStreamContext *sc = (MOVStreamContext *)s->streams[i]->priv_data;
  1457. if(!sc->time_rate)
  1458. sc->time_rate=1;
  1459. if(!sc->time_scale)
  1460. sc->time_scale= mov->time_scale;
  1461. av_set_pts_info(s->streams[i], 64, sc->time_rate, sc->time_scale);
  1462. if(s->streams[i]->duration != AV_NOPTS_VALUE){
  1463. assert(s->streams[i]->duration % sc->time_rate == 0);
  1464. s->streams[i]->duration /= sc->time_rate;
  1465. }
  1466. sc->ffindex = i;
  1467. sc->is_ff_stream = 1;
  1468. }
  1469. #endif
  1470. return 0;
  1471. }
  1472. /* Yes, this is ugly... I didn't write the specs of QT :p */
  1473. /* XXX:remove useless commented code sometime */
  1474. static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
  1475. {
  1476. MOVContext *mov = (MOVContext *) s->priv_data;
  1477. MOVStreamContext *sc;
  1478. AVStream *st;
  1479. int64_t offset = INT64_MAX;
  1480. int64_t best_dts = INT64_MAX;
  1481. int i, a, b, m;
  1482. int size;
  1483. int idx;
  1484. size = 0x0FFFFFFF;
  1485. if (mov->partial) {
  1486. sc = mov->partial;
  1487. idx = sc->sample_to_chunk_index;
  1488. if (idx < 0) return 0;
  1489. dprintf("sc[ffid %d]->sample_size = %ld\n", sc->ffindex, sc->sample_size);
  1490. //size = sc->sample_sizes[sc->current_sample];
  1491. // that ain't working...
  1492. //size = (sc->sample_size)?sc->sample_size:sc->sample_sizes[sc->current_sample];
  1493. size = (sc->sample_size > 1)?sc->sample_size:sc->sample_sizes[sc->current_sample];
  1494. sc->current_sample++;
  1495. sc->left_in_chunk--;
  1496. if (sc->left_in_chunk <= 0)
  1497. mov->partial = 0;
  1498. offset = mov->next_chunk_offset;
  1499. /* extract the sample */
  1500. goto readchunk;
  1501. }
  1502. again:
  1503. sc = 0;
  1504. if(offset == INT64_MAX)
  1505. best_dts= INT64_MAX;
  1506. for(i=0; i<mov->total_streams; i++) {
  1507. MOVStreamContext *msc = mov->streams[i];
  1508. if ((msc->next_chunk < msc->chunk_count) && msc->next_chunk >= 0){
  1509. if (msc->sample_to_time_index < msc->stts_count && mov->ni) {
  1510. int64_t dts;
  1511. int index= msc->sample_to_time_index;
  1512. int sample= msc->sample_to_time_sample;
  1513. int time= msc->sample_to_time_time;
  1514. int duration = msc->stts_data[index].duration;
  1515. int count = msc->stts_data[index].count;
  1516. if (sample + count < msc->current_sample) {
  1517. sample += count;
  1518. time += count*duration;
  1519. index ++;
  1520. duration = msc->stts_data[index].duration;
  1521. }
  1522. dts = time + (msc->current_sample-1 - sample) * (int64_t)duration;
  1523. dts = av_rescale(dts, AV_TIME_BASE, msc->time_scale);
  1524. dprintf("stream: %d dts: %"PRId64" best_dts: %"PRId64" offset: %"PRId64"\n", i, dts, best_dts, offset);
  1525. if(dts < best_dts){
  1526. best_dts= dts;
  1527. sc = msc;
  1528. offset = msc->chunk_offsets[msc->next_chunk];
  1529. }
  1530. }else{
  1531. if ((msc->chunk_offsets[msc->next_chunk] < offset)) {
  1532. sc = msc;
  1533. offset = msc->chunk_offsets[msc->next_chunk];
  1534. }
  1535. }
  1536. }
  1537. }
  1538. if (!sc || offset==INT64_MAX)
  1539. return -1;
  1540. sc->next_chunk++;
  1541. if(mov->next_chunk_offset < offset) { /* some meta data */
  1542. url_fskip(&s->pb, (offset - mov->next_chunk_offset));
  1543. mov->next_chunk_offset = offset;
  1544. }
  1545. if(!sc->is_ff_stream || (s->streams[sc->ffindex]->discard >= AVDISCARD_ALL)) {
  1546. url_fskip(&s->pb, (offset - mov->next_chunk_offset));
  1547. mov->next_chunk_offset = offset;
  1548. offset = INT64_MAX;
  1549. goto again;
  1550. }
  1551. /* now get the chunk size... */
  1552. for(i=0; i<mov->total_streams; i++) {
  1553. MOVStreamContext *msc = mov->streams[i];
  1554. if ((msc->next_chunk < msc->chunk_count)
  1555. && msc->chunk_offsets[msc->next_chunk] - offset < size
  1556. && msc->chunk_offsets[msc->next_chunk] > offset)
  1557. size = msc->chunk_offsets[msc->next_chunk] - offset;
  1558. }
  1559. #ifdef MOV_MINOLTA_FIX
  1560. //Make sure that size is according to sample_size (Needed by .mov files
  1561. //created on a Minolta Dimage Xi where audio chunks contains waste data in the end)
  1562. //Maybe we should really not only check sc->sample_size, but also sc->sample_sizes
  1563. //but I have no such movies
  1564. if (sc->sample_size > 0) {
  1565. int foundsize=0;
  1566. for(i=0; i<(sc->sample_to_chunk_sz); i++) {
  1567. if( (sc->sample_to_chunk[i].first)<=(sc->next_chunk) )
  1568. {
  1569. foundsize=sc->sample_to_chunk[i].count*sc->sample_size;
  1570. }
  1571. dprintf("sample_to_chunk first=%ld count=%ld, id=%ld\n", sc->sample_to_chunk[i].first, sc->sample_to_chunk[i].count, sc->sample_to_chunk[i].id);
  1572. }
  1573. if( (foundsize>0) && (foundsize<size) )
  1574. {
  1575. size=foundsize;
  1576. }
  1577. }
  1578. #endif //MOV_MINOLTA_FIX
  1579. idx = sc->sample_to_chunk_index;
  1580. if (idx + 1 < sc->sample_to_chunk_sz && sc->next_chunk >= sc->sample_to_chunk[idx + 1].first)
  1581. idx++;
  1582. sc->sample_to_chunk_index = idx;
  1583. /* split chunks into samples */
  1584. if (sc->sample_size == 0 || sc->sample_size > 100) {
  1585. if (idx >= 0 && sc->sample_to_chunk[idx].count != 1) {
  1586. mov->partial = sc;
  1587. /* we'll have to get those samples before next chunk */
  1588. sc->left_in_chunk = sc->sample_to_chunk[idx].count - 1;
  1589. size = (sc->sample_size > 1)?sc->sample_size:sc->sample_sizes[sc->current_sample];
  1590. }
  1591. sc->current_sample++;
  1592. }else if(idx + 1 < sc->sample_to_chunk_sz){
  1593. sc->current_sample += sc->sample_to_chunk[idx].count;
  1594. }
  1595. readchunk:
  1596. dprintf("chunk: %"PRId64" -> %"PRId64" (%i)\n", offset, offset + size, size);
  1597. if(size == 0x0FFFFFFF)
  1598. size = mov->mdat_size + mov->mdat_offset - offset;
  1599. if(size < 0)
  1600. return -1;
  1601. if(size == 0)
  1602. return -1;
  1603. url_fseek(&s->pb, offset, SEEK_SET);
  1604. av_get_packet(&s->pb, pkt, size);
  1605. pkt->stream_index = sc->ffindex;
  1606. // If the keyframes table exists, mark any samples that are in the table as key frames.
  1607. // If no table exists, treat very sample as a key frame.
  1608. if (sc->keyframes) {
  1609. a = 0;
  1610. b = sc->keyframe_count - 1;
  1611. while (a < b) {
  1612. m = (a + b + 1) >> 1;
  1613. if (sc->keyframes[m] > sc->current_sample) {
  1614. b = m - 1;
  1615. } else {
  1616. a = m;
  1617. }
  1618. }
  1619. if (sc->keyframes[a] == sc->current_sample)
  1620. pkt->flags |= PKT_FLAG_KEY;
  1621. }
  1622. else
  1623. pkt->flags |= PKT_FLAG_KEY;
  1624. mov->next_chunk_offset = offset + size;
  1625. /* find the corresponding dts */
  1626. if (sc && sc->sample_to_time_index < sc->stts_count && pkt) {
  1627. unsigned int count;
  1628. uint64_t dts, pts;
  1629. unsigned int duration = sc->stts_data[sc->sample_to_time_index].duration;
  1630. count = sc->stts_data[sc->sample_to_time_index].count;
  1631. if ((sc->sample_to_time_sample + count) < sc->current_sample) {
  1632. sc->sample_to_time_sample += count;
  1633. sc->sample_to_time_time += count*duration;
  1634. sc->sample_to_time_index ++;
  1635. duration = sc->stts_data[sc->sample_to_time_index].duration;
  1636. }
  1637. dts = sc->sample_to_time_time + (sc->current_sample-1 - sc->sample_to_time_sample) * (int64_t)duration;
  1638. /* find the corresponding pts */
  1639. if (sc->sample_to_ctime_index < sc->ctts_count) {
  1640. int duration = sc->ctts_data[sc->sample_to_ctime_index].duration;
  1641. int count = sc->ctts_data[sc->sample_to_ctime_index].count;
  1642. if ((sc->sample_to_ctime_sample + count) < sc->current_sample) {
  1643. sc->sample_to_ctime_sample += count;
  1644. sc->sample_to_ctime_index ++;
  1645. duration = sc->ctts_data[sc->sample_to_ctime_index].duration;
  1646. }
  1647. pts = dts + duration;
  1648. }else
  1649. pts = dts;
  1650. st= s->streams[ sc->ffindex ];
  1651. assert(pts % st->time_base.num == 0);
  1652. assert(dts % st->time_base.num == 0);
  1653. pkt->pts = pts / st->time_base.num;
  1654. pkt->dts = dts / st->time_base.num;
  1655. dprintf("stream #%d smp #%ld dts = %"PRId64" pts = %"PRId64" (smp:%ld time:%"PRId64" idx:%d ent:%d count:%d dur:%d)\n"
  1656. , pkt->stream_index, sc->current_sample-1, pkt->dts, pkt->pts
  1657. , sc->sample_to_time_sample
  1658. , sc->sample_to_time_time
  1659. , sc->sample_to_time_index
  1660. , sc->stts_count
  1661. , count
  1662. , duration);
  1663. }
  1664. return 0;
  1665. }
  1666. #if defined(MOV_SEEK)
  1667. /**
  1668. * Seek method based on the one described in the Appendix C of QTFileFormat.pdf
  1669. */
  1670. static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
  1671. {
  1672. MOVContext* mov = (MOVContext *) s->priv_data;
  1673. MOVStreamContext* sc;
  1674. int32_t i, a, b, m;
  1675. int64_t start_time;
  1676. int32_t seek_sample, sample;
  1677. int32_t duration;
  1678. int32_t count;
  1679. int32_t chunk;
  1680. int32_t left_in_chunk;
  1681. int64_t chunk_file_offset;
  1682. int64_t sample_file_offset;
  1683. int32_t first_chunk_sample;
  1684. int32_t sample_to_chunk_idx;
  1685. int sample_to_time_index;
  1686. long sample_to_time_sample = 0;
  1687. uint64_t sample_to_time_time = 0;
  1688. int mov_idx;
  1689. // Find the corresponding mov stream
  1690. for (mov_idx = 0; mov_idx < mov->total_streams; mov_idx++)
  1691. if (mov->streams[mov_idx]->ffindex == stream_index)
  1692. break;
  1693. if (mov_idx == mov->total_streams) {
  1694. av_log(s, AV_LOG_ERROR, "mov: requested stream was not found in mov streams (idx=%i)\n", stream_index);
  1695. return -1;
  1696. }
  1697. sc = mov->streams[mov_idx];
  1698. sample_time *= s->streams[stream_index]->time_base.num;
  1699. // Step 1. Find the edit that contains the requested time (elst)
  1700. if (sc->edit_count && 0) {
  1701. // FIXME should handle edit list
  1702. av_log(s, AV_LOG_ERROR, "mov: does not handle seeking in files that contain edit list (c:%d)\n", sc->edit_count);
  1703. return -1;
  1704. }
  1705. // Step 2. Find the corresponding sample using the Time-to-sample atom (stts) */
  1706. dprintf("Searching for time %li in stream #%i (time_scale=%i)\n", (long)sample_time, mov_idx, sc->time_scale);
  1707. start_time = 0; // FIXME use elst atom
  1708. sample = 1; // sample are 0 based in table
  1709. for (i = 0; i < sc->stts_count; i++) {
  1710. count = sc->stts_data[i].count;
  1711. duration = sc->stts_data[i].duration;
  1712. if ((start_time + count*duration) > sample_time) {
  1713. sample_to_time_time = start_time;
  1714. sample_to_time_index = i;
  1715. sample_to_time_sample = sample;
  1716. sample += (sample_time - start_time) / duration;
  1717. break;
  1718. }
  1719. sample += count;
  1720. start_time += count * duration;
  1721. }
  1722. sample_to_time_time = start_time;
  1723. sample_to_time_index = i;
  1724. /* NOTE: despite what qt doc say, the dt value (Display Time in qt vocabulary) computed with the stts atom
  1725. is a decoding time stamp (dts) not a presentation time stamp. And as usual dts != pts for stream with b frames */
  1726. dprintf("Found time %li at sample #%u\n", (long)sample_time, sample);
  1727. if (sample > sc->sample_count) {
  1728. av_log(s, AV_LOG_ERROR, "mov: sample pos is too high, unable to seek (req. sample=%i, sample count=%ld)\n", sample, sc->sample_count);
  1729. return -1;
  1730. }
  1731. // Step 3. Find the prior sync. sample using the Sync sample atom (stss)
  1732. if (sc->keyframes) {
  1733. a = 0;
  1734. b = sc->keyframe_count - 1;
  1735. while (a < b) {
  1736. m = (a + b + 1) >> 1;
  1737. if (sc->keyframes[m] > sample) {
  1738. b = m - 1;
  1739. } else {
  1740. a = m;
  1741. }
  1742. }
  1743. // for low latency prob: always use the previous keyframe, just uncomment the next line
  1744. // if (a) a--;
  1745. seek_sample = sc->keyframes[a];
  1746. }
  1747. else
  1748. seek_sample = sample; // else all samples are key frames
  1749. dprintf("Found nearest keyframe at sample #%i \n", seek_sample);
  1750. // Step 4. Find the chunk of the sample using the Sample-to-chunk-atom (stsc)
  1751. for (first_chunk_sample = 1, i = 0; i < (sc->sample_to_chunk_sz - 1); i++) {
  1752. b = (sc->sample_to_chunk[i + 1].first - sc->sample_to_chunk[i].first) * sc->sample_to_chunk[i].count;
  1753. if (seek_sample >= first_chunk_sample && seek_sample < (first_chunk_sample + b))
  1754. break;
  1755. first_chunk_sample += b;
  1756. }
  1757. chunk = sc->sample_to_chunk[i].first + (seek_sample - first_chunk_sample) / sc->sample_to_chunk[i].count;
  1758. left_in_chunk = sc->sample_to_chunk[i].count - (seek_sample - first_chunk_sample) % sc->sample_to_chunk[i].count;
  1759. first_chunk_sample += ((seek_sample - first_chunk_sample) / sc->sample_to_chunk[i].count) * sc->sample_to_chunk[i].count;
  1760. sample_to_chunk_idx = i;
  1761. dprintf("Sample was found in chunk #%i at sample offset %i (idx %i)\n", chunk, seek_sample - first_chunk_sample, sample_to_chunk_idx);
  1762. // Step 5. Find the offset of the chunk using the chunk offset atom
  1763. if (!sc->chunk_offsets) {
  1764. av_log(s, AV_LOG_ERROR, "mov: no chunk offset atom, unable to seek\n");
  1765. return -1;
  1766. }
  1767. if (chunk > sc->chunk_count) {
  1768. av_log(s, AV_LOG_ERROR, "mov: chunk offset atom too short, unable to seek (req. chunk=%i, chunk count=%li)\n", chunk, sc->chunk_count);
  1769. return -1;
  1770. }
  1771. chunk_file_offset = sc->chunk_offsets[chunk - 1];
  1772. dprintf("Chunk file offset is #%"PRIu64"\n", chunk_file_offset);
  1773. // Step 6. Find the byte offset within the chunk using the sample size atom
  1774. sample_file_offset = chunk_file_offset;
  1775. if (sc->sample_size)
  1776. sample_file_offset += (seek_sample - first_chunk_sample) * sc->sample_size;
  1777. else {
  1778. for (i = 0; i < (seek_sample - first_chunk_sample); i++) {
  1779. sample_file_offset += sc->sample_sizes[first_chunk_sample + i - 1];
  1780. }
  1781. }
  1782. dprintf("Sample file offset is #%"PRIu64"\n", sample_file_offset);
  1783. // Step 6. Update the parser
  1784. mov->partial = sc;
  1785. mov->next_chunk_offset = sample_file_offset;
  1786. // Update current stream state
  1787. sc->current_sample = seek_sample - 1; // zero based
  1788. sc->left_in_chunk = left_in_chunk;
  1789. sc->next_chunk = chunk; // +1 -1 (zero based)
  1790. sc->sample_to_chunk_index = sample_to_chunk_idx;
  1791. // Update other streams
  1792. for (i = 0; i<mov->total_streams; i++) {
  1793. MOVStreamContext *msc;
  1794. if (i == mov_idx) continue;
  1795. // Find the nearest 'next' chunk
  1796. msc = mov->streams[i];
  1797. a = 0;
  1798. b = msc->chunk_count - 1;
  1799. while (a < b) {
  1800. m = (a + b + 1) >> 1;
  1801. if (msc->chunk_offsets[m] > chunk_file_offset) {
  1802. b = m - 1;
  1803. } else {
  1804. a = m;
  1805. }
  1806. }
  1807. msc->next_chunk = a;
  1808. if (msc->chunk_offsets[a] < chunk_file_offset && a < (msc->chunk_count-1))
  1809. msc->next_chunk ++;
  1810. dprintf("Nearest next chunk for stream #%i is #%li @%"PRId64"\n", i, msc->next_chunk+1, msc->chunk_offsets[msc->next_chunk]);
  1811. // Compute sample count and index in the sample_to_chunk table (what a pity)
  1812. msc->sample_to_chunk_index = 0;
  1813. msc->current_sample = 0;
  1814. for(; msc->sample_to_chunk_index < (msc->sample_to_chunk_sz - 1)
  1815. && msc->sample_to_chunk[msc->sample_to_chunk_index + 1].first <= (1 + msc->next_chunk); msc->sample_to_chunk_index++) {
  1816. msc->current_sample += (msc->sample_to_chunk[msc->sample_to_chunk_index + 1].first - msc->sample_to_chunk[msc->sample_to_chunk_index].first) \
  1817. * msc->sample_to_chunk[msc->sample_to_chunk_index].count;
  1818. }
  1819. msc->current_sample += (msc->next_chunk - (msc->sample_to_chunk[msc->sample_to_chunk_index].first - 1)) * sc->sample_to_chunk[msc->sample_to_chunk_index].count;
  1820. msc->left_in_chunk = msc->sample_to_chunk[msc->sample_to_chunk_index].count - 1;
  1821. // Find corresponding position in stts (used later to compute dts)
  1822. sample = 0;
  1823. start_time = 0;
  1824. for (msc->sample_to_time_index = 0; msc->sample_to_time_index < msc->stts_count; msc->sample_to_time_index++) {
  1825. count = msc->stts_data[msc->sample_to_time_index].count;
  1826. duration = msc->stts_data[msc->sample_to_time_index].duration;
  1827. if ((sample + count - 1) > msc->current_sample) {
  1828. msc->sample_to_time_time = start_time;
  1829. msc->sample_to_time_sample = sample;
  1830. break;
  1831. }
  1832. sample += count;
  1833. start_time += count * duration;
  1834. }
  1835. sample = 0;
  1836. for (msc->sample_to_ctime_index = 0; msc->sample_to_ctime_index < msc->ctts_count; msc->sample_to_ctime_index++) {
  1837. count = msc->ctts_data[msc->sample_to_ctime_index].count;
  1838. duration = msc->ctts_data[msc->sample_to_ctime_index].duration;
  1839. if ((sample + count - 1) > msc->current_sample) {
  1840. msc->sample_to_ctime_sample = sample;
  1841. break;
  1842. }
  1843. sample += count;
  1844. }
  1845. dprintf("Next Sample for stream #%i is #%li @%li\n", i, msc->current_sample + 1, msc->sample_to_chunk_index + 1);
  1846. }
  1847. return 0;
  1848. }
  1849. #endif
  1850. static int mov_read_close(AVFormatContext *s)
  1851. {
  1852. int i;
  1853. MOVContext *mov = (MOVContext *) s->priv_data;
  1854. for(i=0; i<mov->total_streams; i++)
  1855. mov_free_stream_context(mov->streams[i]);
  1856. /* free color tabs */
  1857. for(i=0; i<mov->ctab_size; i++)
  1858. av_freep(&mov->ctab[i]);
  1859. av_freep(&mov->ctab);
  1860. return 0;
  1861. }
  1862. static AVInputFormat mov_iformat = {
  1863. "mov,mp4,m4a,3gp,3g2,mj2",
  1864. "QuickTime/MPEG4/Motion JPEG 2000 format",
  1865. sizeof(MOVContext),
  1866. mov_probe,
  1867. mov_read_header,
  1868. mov_read_packet,
  1869. mov_read_close,
  1870. #if defined(MOV_SEEK)
  1871. mov_read_seek,
  1872. #endif
  1873. };
  1874. int mov_init(void)
  1875. {
  1876. av_register_input_format(&mov_iformat);
  1877. return 0;
  1878. }