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.

338 lines
10KB

  1. /*
  2. * ISO Media common code
  3. * copyright (c) 2001 Fabrice Bellard
  4. * copyright (c) 2002 Francois Revol <revol@free.fr>
  5. * copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@free.fr>
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #ifndef AVFORMAT_ISOM_H
  24. #define AVFORMAT_ISOM_H
  25. #include <stddef.h>
  26. #include <stdint.h>
  27. #include "libavutil/mastering_display_metadata.h"
  28. #include "libavutil/spherical.h"
  29. #include "libavutil/stereo3d.h"
  30. #include "avio.h"
  31. #include "internal.h"
  32. #include "dv.h"
  33. /* isom.c */
  34. extern const AVCodecTag ff_mp4_obj_type[];
  35. extern const AVCodecTag ff_codec_movvideo_tags[];
  36. extern const AVCodecTag ff_codec_movaudio_tags[];
  37. extern const AVCodecTag ff_codec_movsubtitle_tags[];
  38. int ff_mov_iso639_to_lang(const char lang[4], int mp4);
  39. int ff_mov_lang_to_iso639(unsigned code, char to[4]);
  40. struct AVAESCTR;
  41. /* the QuickTime file format is quite convoluted...
  42. * it has lots of index tables, each indexing something in another one...
  43. * Here we just use what is needed to read the chunks
  44. */
  45. typedef struct MOVStts {
  46. int count;
  47. int duration;
  48. } MOVStts;
  49. typedef struct MOVStsc {
  50. int first;
  51. int count;
  52. int id;
  53. } MOVStsc;
  54. typedef struct MOVElst {
  55. int64_t duration;
  56. int64_t time;
  57. float rate;
  58. } MOVElst;
  59. typedef struct MOVDref {
  60. uint32_t type;
  61. char *path;
  62. char *dir;
  63. char volume[28];
  64. char filename[64];
  65. int16_t nlvl_to, nlvl_from;
  66. } MOVDref;
  67. typedef struct MOVAtom {
  68. uint32_t type;
  69. int64_t size; /* total size (excluding the size and type fields) */
  70. } MOVAtom;
  71. struct MOVParseTableEntry;
  72. typedef struct MOVFragment {
  73. unsigned track_id;
  74. uint64_t base_data_offset;
  75. uint64_t moof_offset;
  76. uint64_t implicit_offset;
  77. unsigned stsd_id;
  78. unsigned duration;
  79. unsigned size;
  80. unsigned flags;
  81. int64_t time;
  82. } MOVFragment;
  83. typedef struct MOVTrackExt {
  84. unsigned track_id;
  85. unsigned stsd_id;
  86. unsigned duration;
  87. unsigned size;
  88. unsigned flags;
  89. } MOVTrackExt;
  90. typedef struct MOVSbgp {
  91. unsigned int count;
  92. unsigned int index;
  93. } MOVSbgp;
  94. typedef struct MOVFragmentIndexItem {
  95. int64_t moof_offset;
  96. int64_t time;
  97. int headers_read;
  98. } MOVFragmentIndexItem;
  99. typedef struct MOVFragmentIndex {
  100. unsigned track_id;
  101. unsigned item_count;
  102. unsigned current_item;
  103. MOVFragmentIndexItem *items;
  104. } MOVFragmentIndex;
  105. typedef struct MOVIndexRange {
  106. int64_t start;
  107. int64_t end;
  108. } MOVIndexRange;
  109. typedef struct MOVStreamContext {
  110. AVIOContext *pb;
  111. int pb_is_copied;
  112. int ffindex; ///< AVStream index
  113. int next_chunk;
  114. unsigned int chunk_count;
  115. int64_t *chunk_offsets;
  116. unsigned int stts_count;
  117. MOVStts *stts_data;
  118. unsigned int ctts_count;
  119. MOVStts *ctts_data;
  120. unsigned int stsc_count;
  121. MOVStsc *stsc_data;
  122. int stsc_index;
  123. int stsc_sample;
  124. unsigned int stps_count;
  125. unsigned *stps_data; ///< partial sync sample for mpeg-2 open gop
  126. MOVElst *elst_data;
  127. unsigned int elst_count;
  128. int ctts_index;
  129. int ctts_sample;
  130. unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom
  131. unsigned int stsz_sample_size; ///< always contains sample size from stsz atom
  132. unsigned int sample_count;
  133. int *sample_sizes;
  134. int keyframe_absent;
  135. unsigned int keyframe_count;
  136. int *keyframes;
  137. int time_scale;
  138. int64_t time_offset; ///< time offset of the edit list entries
  139. int current_sample;
  140. int64_t current_index;
  141. MOVIndexRange* index_ranges;
  142. MOVIndexRange* current_index_range;
  143. unsigned int bytes_per_frame;
  144. unsigned int samples_per_frame;
  145. int dv_audio_container;
  146. int pseudo_stream_id; ///< -1 means demux all ids
  147. int16_t audio_cid; ///< stsd audio compression id
  148. unsigned drefs_count;
  149. MOVDref *drefs;
  150. int dref_id;
  151. int timecode_track;
  152. int width; ///< tkhd width
  153. int height; ///< tkhd height
  154. int dts_shift; ///< dts shift when ctts is negative
  155. uint32_t palette[256];
  156. int has_palette;
  157. int64_t data_size;
  158. uint32_t tmcd_flags; ///< tmcd track flags
  159. int64_t track_end; ///< used for dts generation in fragmented movie files
  160. int start_pad; ///< amount of samples to skip due to enc-dec delay
  161. unsigned int rap_group_count;
  162. MOVSbgp *rap_group;
  163. int nb_frames_for_fps;
  164. int64_t duration_for_fps;
  165. /** extradata array (and size) for multiple stsd */
  166. uint8_t **extradata;
  167. int *extradata_size;
  168. int last_stsd_index;
  169. int stsd_count;
  170. int32_t *display_matrix;
  171. AVStereo3D *stereo3d;
  172. AVSphericalMapping *spherical;
  173. size_t spherical_size;
  174. AVMasteringDisplayMetadata *mastering;
  175. uint32_t format;
  176. int has_sidx; // If there is an sidx entry for this stream.
  177. struct {
  178. int use_subsamples;
  179. uint8_t* auxiliary_info;
  180. uint8_t* auxiliary_info_end;
  181. uint8_t* auxiliary_info_pos;
  182. uint8_t auxiliary_info_default_size;
  183. uint8_t* auxiliary_info_sizes;
  184. size_t auxiliary_info_sizes_count;
  185. int64_t auxiliary_info_index;
  186. struct AVAESCTR* aes_ctr;
  187. } cenc;
  188. } MOVStreamContext;
  189. typedef struct MOVContext {
  190. const AVClass *class; ///< class for private options
  191. AVFormatContext *fc;
  192. int time_scale;
  193. int64_t duration; ///< duration of the longest track
  194. int found_moov; ///< 'moov' atom has been found
  195. int found_mdat; ///< 'mdat' atom has been found
  196. int found_hdlr_mdta; ///< 'hdlr' atom with type 'mdta' has been found
  197. int trak_index; ///< Index of the current 'trak'
  198. char **meta_keys;
  199. unsigned meta_keys_count;
  200. DVDemuxContext *dv_demux;
  201. AVFormatContext *dv_fctx;
  202. int isom; ///< 1 if file is ISO Media (mp4/3gp)
  203. MOVFragment fragment; ///< current fragment in moof atom
  204. MOVTrackExt *trex_data;
  205. unsigned trex_count;
  206. int itunes_metadata; ///< metadata are itunes style
  207. int handbrake_version;
  208. int *chapter_tracks;
  209. unsigned int nb_chapter_tracks;
  210. int use_absolute_path;
  211. int ignore_editlist;
  212. int advanced_editlist;
  213. int ignore_chapters;
  214. int seek_individually;
  215. int64_t next_root_atom; ///< offset of the next root atom
  216. int export_all;
  217. int export_xmp;
  218. int *bitrates; ///< bitrates read before streams creation
  219. int bitrates_count;
  220. int moov_retry;
  221. int use_mfra_for;
  222. int has_looked_for_mfra;
  223. MOVFragmentIndex** fragment_index_data;
  224. unsigned fragment_index_count;
  225. int fragment_index_complete;
  226. int atom_depth;
  227. unsigned int aax_mode; ///< 'aax' file has been detected
  228. uint8_t file_key[20];
  229. uint8_t file_iv[20];
  230. void *activation_bytes;
  231. int activation_bytes_size;
  232. void *audible_fixed_key;
  233. int audible_fixed_key_size;
  234. struct AVAES *aes_decrypt;
  235. uint8_t *decryption_key;
  236. int decryption_key_len;
  237. int enable_drefs;
  238. int32_t movie_display_matrix[3][3]; ///< display matrix from mvhd
  239. } MOVContext;
  240. int ff_mp4_read_descr_len(AVIOContext *pb);
  241. int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag);
  242. int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb);
  243. void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
  244. #define MP4ODescrTag 0x01
  245. #define MP4IODescrTag 0x02
  246. #define MP4ESDescrTag 0x03
  247. #define MP4DecConfigDescrTag 0x04
  248. #define MP4DecSpecificDescrTag 0x05
  249. #define MP4SLDescrTag 0x06
  250. #define MOV_TFHD_BASE_DATA_OFFSET 0x01
  251. #define MOV_TFHD_STSD_ID 0x02
  252. #define MOV_TFHD_DEFAULT_DURATION 0x08
  253. #define MOV_TFHD_DEFAULT_SIZE 0x10
  254. #define MOV_TFHD_DEFAULT_FLAGS 0x20
  255. #define MOV_TFHD_DURATION_IS_EMPTY 0x010000
  256. #define MOV_TFHD_DEFAULT_BASE_IS_MOOF 0x020000
  257. #define MOV_TRUN_DATA_OFFSET 0x01
  258. #define MOV_TRUN_FIRST_SAMPLE_FLAGS 0x04
  259. #define MOV_TRUN_SAMPLE_DURATION 0x100
  260. #define MOV_TRUN_SAMPLE_SIZE 0x200
  261. #define MOV_TRUN_SAMPLE_FLAGS 0x400
  262. #define MOV_TRUN_SAMPLE_CTS 0x800
  263. #define MOV_FRAG_SAMPLE_FLAG_DEGRADATION_PRIORITY_MASK 0x0000ffff
  264. #define MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC 0x00010000
  265. #define MOV_FRAG_SAMPLE_FLAG_PADDING_MASK 0x000e0000
  266. #define MOV_FRAG_SAMPLE_FLAG_REDUNDANCY_MASK 0x00300000
  267. #define MOV_FRAG_SAMPLE_FLAG_DEPENDED_MASK 0x00c00000
  268. #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_MASK 0x03000000
  269. #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO 0x02000000
  270. #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES 0x01000000
  271. #define MOV_TKHD_FLAG_ENABLED 0x0001
  272. #define MOV_TKHD_FLAG_IN_MOVIE 0x0002
  273. #define MOV_TKHD_FLAG_IN_PREVIEW 0x0004
  274. #define MOV_TKHD_FLAG_IN_POSTER 0x0008
  275. #define TAG_IS_AVCI(tag) \
  276. ((tag) == MKTAG('a', 'i', '5', 'p') || \
  277. (tag) == MKTAG('a', 'i', '5', 'q') || \
  278. (tag) == MKTAG('a', 'i', '5', '2') || \
  279. (tag) == MKTAG('a', 'i', '5', '3') || \
  280. (tag) == MKTAG('a', 'i', '5', '5') || \
  281. (tag) == MKTAG('a', 'i', '5', '6') || \
  282. (tag) == MKTAG('a', 'i', '1', 'p') || \
  283. (tag) == MKTAG('a', 'i', '1', 'q') || \
  284. (tag) == MKTAG('a', 'i', '1', '2') || \
  285. (tag) == MKTAG('a', 'i', '1', '3') || \
  286. (tag) == MKTAG('a', 'i', '1', '5') || \
  287. (tag) == MKTAG('a', 'i', '1', '6') || \
  288. (tag) == MKTAG('a', 'i', 'v', 'x') || \
  289. (tag) == MKTAG('A', 'V', 'i', 'n'))
  290. int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb);
  291. enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags);
  292. int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
  293. void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
  294. #define FF_MOV_FLAG_MFRA_AUTO -1
  295. #define FF_MOV_FLAG_MFRA_DTS 1
  296. #define FF_MOV_FLAG_MFRA_PTS 2
  297. #endif /* AVFORMAT_ISOM_H */