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.

272 lines
8.6KB

  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 "avio.h"
  26. #include "internal.h"
  27. #include "dv.h"
  28. /* isom.c */
  29. extern const AVCodecTag ff_mp4_obj_type[];
  30. extern const AVCodecTag ff_codec_movvideo_tags[];
  31. extern const AVCodecTag ff_codec_movaudio_tags[];
  32. extern const AVCodecTag ff_codec_movsubtitle_tags[];
  33. int ff_mov_iso639_to_lang(const char lang[4], int mp4);
  34. int ff_mov_lang_to_iso639(unsigned code, char to[4]);
  35. /* the QuickTime file format is quite convoluted...
  36. * it has lots of index tables, each indexing something in another one...
  37. * Here we just use what is needed to read the chunks
  38. */
  39. typedef struct MOVStts {
  40. int count;
  41. int duration;
  42. } MOVStts;
  43. typedef struct MOVStsc {
  44. int first;
  45. int count;
  46. int id;
  47. } MOVStsc;
  48. typedef struct MOVElst {
  49. int64_t duration;
  50. int64_t time;
  51. float rate;
  52. } MOVElst;
  53. typedef struct MOVDref {
  54. uint32_t type;
  55. char *path;
  56. char *dir;
  57. char volume[28];
  58. char filename[64];
  59. int16_t nlvl_to, nlvl_from;
  60. } MOVDref;
  61. typedef struct MOVAtom {
  62. uint32_t type;
  63. int64_t size; /* total size (excluding the size and type fields) */
  64. } MOVAtom;
  65. struct MOVParseTableEntry;
  66. typedef struct MOVFragment {
  67. unsigned track_id;
  68. uint64_t base_data_offset;
  69. uint64_t moof_offset;
  70. uint64_t implicit_offset;
  71. unsigned stsd_id;
  72. unsigned duration;
  73. unsigned size;
  74. unsigned flags;
  75. int64_t time;
  76. } MOVFragment;
  77. typedef struct MOVTrackExt {
  78. unsigned track_id;
  79. unsigned stsd_id;
  80. unsigned duration;
  81. unsigned size;
  82. unsigned flags;
  83. } MOVTrackExt;
  84. typedef struct MOVSbgp {
  85. unsigned int count;
  86. unsigned int index;
  87. } MOVSbgp;
  88. typedef struct MOVFragmentIndexItem {
  89. int64_t moof_offset;
  90. int64_t time;
  91. } MOVFragmentIndexItem;
  92. typedef struct MOVFragmentIndex {
  93. unsigned track_id;
  94. unsigned item_count;
  95. unsigned current_item;
  96. MOVFragmentIndexItem *items;
  97. } MOVFragmentIndex;
  98. typedef struct MOVStreamContext {
  99. AVIOContext *pb;
  100. int pb_is_copied;
  101. int ffindex; ///< AVStream index
  102. int next_chunk;
  103. unsigned int chunk_count;
  104. int64_t *chunk_offsets;
  105. unsigned int stts_count;
  106. MOVStts *stts_data;
  107. unsigned int ctts_count;
  108. MOVStts *ctts_data;
  109. unsigned int stsc_count;
  110. MOVStsc *stsc_data;
  111. unsigned int stps_count;
  112. unsigned *stps_data; ///< partial sync sample for mpeg-2 open gop
  113. MOVElst *elst_data;
  114. unsigned int elst_count;
  115. int ctts_index;
  116. int ctts_sample;
  117. unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom
  118. unsigned int stsz_sample_size; ///< always contains sample size from stsz atom
  119. unsigned int sample_count;
  120. int *sample_sizes;
  121. int keyframe_absent;
  122. unsigned int keyframe_count;
  123. int *keyframes;
  124. int time_scale;
  125. int64_t time_offset; ///< time offset of the edit list entries
  126. int current_sample;
  127. unsigned int bytes_per_frame;
  128. unsigned int samples_per_frame;
  129. int dv_audio_container;
  130. int pseudo_stream_id; ///< -1 means demux all ids
  131. int16_t audio_cid; ///< stsd audio compression id
  132. unsigned drefs_count;
  133. MOVDref *drefs;
  134. int dref_id;
  135. int timecode_track;
  136. int wrong_dts; ///< dts are wrong due to huge ctts offset (iMovie files)
  137. int width; ///< tkhd width
  138. int height; ///< tkhd height
  139. int dts_shift; ///< dts shift when ctts is negative
  140. uint32_t palette[256];
  141. int has_palette;
  142. int64_t data_size;
  143. uint32_t tmcd_flags; ///< tmcd track flags
  144. int64_t track_end; ///< used for dts generation in fragmented movie files
  145. int start_pad; ///< amount of samples to skip due to enc-dec delay
  146. unsigned int rap_group_count;
  147. MOVSbgp *rap_group;
  148. int nb_frames_for_fps;
  149. int64_t duration_for_fps;
  150. int32_t *display_matrix;
  151. } MOVStreamContext;
  152. typedef struct MOVContext {
  153. const AVClass *class; ///< class for private options
  154. AVFormatContext *fc;
  155. int time_scale;
  156. int64_t duration; ///< duration of the longest track
  157. int found_moov; ///< 'moov' atom has been found
  158. int found_mdat; ///< 'mdat' atom has been found
  159. DVDemuxContext *dv_demux;
  160. AVFormatContext *dv_fctx;
  161. int isom; ///< 1 if file is ISO Media (mp4/3gp)
  162. MOVFragment fragment; ///< current fragment in moof atom
  163. MOVTrackExt *trex_data;
  164. unsigned trex_count;
  165. int itunes_metadata; ///< metadata are itunes style
  166. int chapter_track;
  167. int use_absolute_path;
  168. int ignore_editlist;
  169. int64_t next_root_atom; ///< offset of the next root atom
  170. int export_all;
  171. int export_xmp;
  172. int *bitrates; ///< bitrates read before streams creation
  173. int bitrates_count;
  174. int moov_retry;
  175. int use_mfra_for;
  176. int has_looked_for_mfra;
  177. MOVFragmentIndex** fragment_index_data;
  178. unsigned fragment_index_count;
  179. int atom_depth;
  180. } MOVContext;
  181. int ff_mp4_read_descr_len(AVIOContext *pb);
  182. int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag);
  183. int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb);
  184. void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
  185. #define MP4ODescrTag 0x01
  186. #define MP4IODescrTag 0x02
  187. #define MP4ESDescrTag 0x03
  188. #define MP4DecConfigDescrTag 0x04
  189. #define MP4DecSpecificDescrTag 0x05
  190. #define MP4SLDescrTag 0x06
  191. #define MOV_TFHD_BASE_DATA_OFFSET 0x01
  192. #define MOV_TFHD_STSD_ID 0x02
  193. #define MOV_TFHD_DEFAULT_DURATION 0x08
  194. #define MOV_TFHD_DEFAULT_SIZE 0x10
  195. #define MOV_TFHD_DEFAULT_FLAGS 0x20
  196. #define MOV_TFHD_DURATION_IS_EMPTY 0x010000
  197. #define MOV_TFHD_DEFAULT_BASE_IS_MOOF 0x020000
  198. #define MOV_TRUN_DATA_OFFSET 0x01
  199. #define MOV_TRUN_FIRST_SAMPLE_FLAGS 0x04
  200. #define MOV_TRUN_SAMPLE_DURATION 0x100
  201. #define MOV_TRUN_SAMPLE_SIZE 0x200
  202. #define MOV_TRUN_SAMPLE_FLAGS 0x400
  203. #define MOV_TRUN_SAMPLE_CTS 0x800
  204. #define MOV_FRAG_SAMPLE_FLAG_DEGRADATION_PRIORITY_MASK 0x0000ffff
  205. #define MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC 0x00010000
  206. #define MOV_FRAG_SAMPLE_FLAG_PADDING_MASK 0x000e0000
  207. #define MOV_FRAG_SAMPLE_FLAG_REDUNDANCY_MASK 0x00300000
  208. #define MOV_FRAG_SAMPLE_FLAG_DEPENDED_MASK 0x00c00000
  209. #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_MASK 0x03000000
  210. #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO 0x02000000
  211. #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES 0x01000000
  212. #define MOV_TKHD_FLAG_ENABLED 0x0001
  213. #define MOV_TKHD_FLAG_IN_MOVIE 0x0002
  214. #define MOV_TKHD_FLAG_IN_PREVIEW 0x0004
  215. #define MOV_TKHD_FLAG_IN_POSTER 0x0008
  216. #define TAG_IS_AVCI(tag) \
  217. ((tag) == MKTAG('a', 'i', '5', 'p') || \
  218. (tag) == MKTAG('a', 'i', '5', 'q') || \
  219. (tag) == MKTAG('a', 'i', '5', '2') || \
  220. (tag) == MKTAG('a', 'i', '5', '3') || \
  221. (tag) == MKTAG('a', 'i', '5', '5') || \
  222. (tag) == MKTAG('a', 'i', '5', '6') || \
  223. (tag) == MKTAG('a', 'i', '1', 'p') || \
  224. (tag) == MKTAG('a', 'i', '1', 'q') || \
  225. (tag) == MKTAG('a', 'i', '1', '2') || \
  226. (tag) == MKTAG('a', 'i', '1', '3') || \
  227. (tag) == MKTAG('a', 'i', '1', '5') || \
  228. (tag) == MKTAG('a', 'i', '1', '6') || \
  229. (tag) == MKTAG('a', 'i', 'v', 'x') || \
  230. (tag) == MKTAG('A', 'V', 'i', 'n'))
  231. int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb);
  232. enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags);
  233. int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
  234. void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
  235. #define FF_MOV_FLAG_MFRA_AUTO -1
  236. #define FF_MOV_FLAG_MFRA_DTS 1
  237. #define FF_MOV_FLAG_MFRA_PTS 2
  238. #endif /* AVFORMAT_ISOM_H */