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.

2130 lines
76KB

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