libavformat/isom.h
04d7f601
 /*
  * ISO Media common code
406792e7
  * copyright (c) 2001 Fabrice Bellard
04d7f601
  * copyright (c) 2002 Francois Revol <revol@free.fr>
  * copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@free.fr>
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
04d7f601
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
04d7f601
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
04d7f601
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
04d7f601
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
98790382
 #ifndef AVFORMAT_ISOM_H
 #define AVFORMAT_ISOM_H
e40ee6a2
 
88c4339b
 #include "avio.h"
80b39e1c
 #include "internal.h"
88c4339b
 #include "dv.h"
99545457
 
e40ee6a2
 /* isom.c */
ccba88d7
 extern const AVCodecTag ff_mp4_obj_type[];
167f3b8d
 extern const AVCodecTag ff_codec_movvideo_tags[];
 extern const AVCodecTag ff_codec_movaudio_tags[];
1e3c9307
 extern const AVCodecTag ff_codec_movsubtitle_tags[];
e40ee6a2
 
1c90d298
 int ff_mov_iso639_to_lang(const char lang[4], int mp4);
 int ff_mov_lang_to_iso639(unsigned code, char to[4]);
e40ee6a2
 
88c4339b
 /* the QuickTime file format is quite convoluted...
  * it has lots of index tables, each indexing something in another one...
  * Here we just use what is needed to read the chunks
  */
 
e4cbf752
 typedef struct MOVStts {
e40ee6a2
     int count;
     int duration;
c3e92a6c
 } MOVStts;
e40ee6a2
 
e4cbf752
 typedef struct MOVStsc {
88c4339b
     int first;
     int count;
     int id;
 } MOVStsc;
 
e4cbf752
 typedef struct MOVDref {
88c4339b
     uint32_t type;
     char *path;
adeb9071
     char *dir;
     char volume[28];
     char filename[64];
     int16_t nlvl_to, nlvl_from;
88c4339b
 } MOVDref;
 
e4cbf752
 typedef struct MOVAtom {
88c4339b
     uint32_t type;
     int64_t size; /* total size (excluding the size and type fields) */
 } MOVAtom;
 
 struct MOVParseTableEntry;
 
e4cbf752
 typedef struct MOVFragment {
88c4339b
     unsigned track_id;
     uint64_t base_data_offset;
     uint64_t moof_offset;
20f95f21
     uint64_t implicit_offset;
88c4339b
     unsigned stsd_id;
     unsigned duration;
     unsigned size;
     unsigned flags;
 } MOVFragment;
 
e4cbf752
 typedef struct MOVTrackExt {
88c4339b
     unsigned track_id;
     unsigned stsd_id;
     unsigned duration;
     unsigned size;
     unsigned flags;
 } MOVTrackExt;
 
e4cbf752
 typedef struct MOVSbgp {
d17d0ec8
     unsigned int count;
     unsigned int index;
 } MOVSbgp;
 
88c4339b
 typedef struct MOVStreamContext {
471fe57e
     AVIOContext *pb;
0a84174f
     int pb_is_copied;
1a11c0aa
     int ffindex;          ///< AVStream index
88c4339b
     int next_chunk;
     unsigned int chunk_count;
     int64_t *chunk_offsets;
     unsigned int stts_count;
     MOVStts *stts_data;
     unsigned int ctts_count;
     MOVStts *ctts_data;
     unsigned int stsc_count;
     MOVStsc *stsc_data;
171a3531
     unsigned int stps_count;
     unsigned *stps_data;  ///< partial sync sample for mpeg-2 open gop
88c4339b
     int ctts_index;
     int ctts_sample;
50059bde
     unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom
5292dac3
     unsigned int stsz_sample_size; ///< always contains sample size from stsz atom
88c4339b
     unsigned int sample_count;
     int *sample_sizes;
accea4d9
     int keyframe_absent;
88c4339b
     unsigned int keyframe_count;
     int *keyframes;
     int time_scale;
05e417aa
     int64_t empty_duration; ///< empty duration of the first edit list entry
     int64_t start_time;   ///< start time of the media
     int64_t time_offset;  ///< time offset of the edit list entries
88c4339b
     int current_sample;
     unsigned int bytes_per_frame;
     unsigned int samples_per_frame;
     int dv_audio_container;
     int pseudo_stream_id; ///< -1 means demux all ids
1a11c0aa
     int16_t audio_cid;    ///< stsd audio compression id
88c4339b
     unsigned drefs_count;
     MOVDref *drefs;
     int dref_id;
8d398f40
     int timecode_track;
1a11c0aa
     int wrong_dts;        ///< dts are wrong due to huge ctts offset (iMovie files)
     int width;            ///< tkhd width
     int height;           ///< tkhd height
     int dts_shift;        ///< dts shift when ctts is negative
2d8591c2
     uint32_t palette[256];
     int has_palette;
bc7d0517
     int64_t data_size;
77971609
     uint32_t tmcd_flags;  ///< tmcd track flags
7f19bdc2
     int64_t track_end;    ///< used for dts generation in fragmented movie files
ad8dabfe
     int start_pad;        ///< amount of samples to skip due to enc-dec delay
d17d0ec8
     unsigned int rap_group_count;
     MOVSbgp *rap_group;
28bc1d94
 
     int nb_frames_for_fps;
     int64_t duration_for_fps;
07941c2c
 
853cc025
     int32_t *display_matrix;
88c4339b
 } MOVStreamContext;
 
 typedef struct MOVContext {
76c3e76e
     AVClass *avclass;
88c4339b
     AVFormatContext *fc;
     int time_scale;
1a11c0aa
     int64_t duration;     ///< duration of the longest track
     int found_moov;       ///< 'moov' atom has been found
     int found_mdat;       ///< 'mdat' atom has been found
88c4339b
     DVDemuxContext *dv_demux;
     AVFormatContext *dv_fctx;
1a11c0aa
     int isom;             ///< 1 if file is ISO Media (mp4/3gp)
88c4339b
     MOVFragment fragment; ///< current fragment in moof atom
     MOVTrackExt *trex_data;
     unsigned trex_count;
1a11c0aa
     int itunes_metadata;  ///< metadata are itunes style
7221579b
     int chapter_track;
76c3e76e
     int use_absolute_path;
f7f5370b
     int ignore_editlist;
383a3b64
     int64_t next_root_atom; ///< offset of the next root atom
70b922f3
     int *bitrates;          ///< bitrates read before streams creation
     int bitrates_count;
26b0d719
     int moov_retry;
65d426bd
     int atom_depth;
88c4339b
 } MOVContext;
 
471fe57e
 int ff_mp4_read_descr_len(AVIOContext *pb);
 int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag);
 int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb);
ad6c7c1b
 void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
798c6fac
 
c5302670
 #define MP4ODescrTag                    0x01
798c6fac
 #define MP4IODescrTag                   0x02
 #define MP4ESDescrTag                   0x03
 #define MP4DecConfigDescrTag            0x04
 #define MP4DecSpecificDescrTag          0x05
ca65932b
 #define MP4SLDescrTag                   0x06
798c6fac
 
73328f24
 #define MOV_TFHD_BASE_DATA_OFFSET       0x01
 #define MOV_TFHD_STSD_ID                0x02
 #define MOV_TFHD_DEFAULT_DURATION       0x08
 #define MOV_TFHD_DEFAULT_SIZE           0x10
 #define MOV_TFHD_DEFAULT_FLAGS          0x20
 #define MOV_TFHD_DURATION_IS_EMPTY  0x010000
20f95f21
 #define MOV_TFHD_DEFAULT_BASE_IS_MOOF 0x020000
73328f24
 
3eec23f3
 #define MOV_TRUN_DATA_OFFSET            0x01
 #define MOV_TRUN_FIRST_SAMPLE_FLAGS     0x04
 #define MOV_TRUN_SAMPLE_DURATION       0x100
 #define MOV_TRUN_SAMPLE_SIZE           0x200
 #define MOV_TRUN_SAMPLE_FLAGS          0x400
 #define MOV_TRUN_SAMPLE_CTS            0x800
 
5be805d3
 #define MOV_FRAG_SAMPLE_FLAG_DEGRADATION_PRIORITY_MASK 0x0000ffff
 #define MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC               0x00010000
 #define MOV_FRAG_SAMPLE_FLAG_PADDING_MASK              0x000e0000
 #define MOV_FRAG_SAMPLE_FLAG_REDUNDANCY_MASK           0x00300000
 #define MOV_FRAG_SAMPLE_FLAG_DEPENDED_MASK             0x00c00000
 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_MASK              0x03000000
 
 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO                0x02000000
 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES               0x01000000
 
1f70a5ad
 #define MOV_TKHD_FLAG_ENABLED       0x0001
 #define MOV_TKHD_FLAG_IN_MOVIE      0x0002
 #define MOV_TKHD_FLAG_IN_PREVIEW    0x0004
 #define MOV_TKHD_FLAG_IN_POSTER     0x0008
 
ecf442a5
 #define TAG_IS_AVCI(tag)                    \
     ((tag) == MKTAG('a', 'i', '5', 'p') ||  \
      (tag) == MKTAG('a', 'i', '5', 'q') ||  \
      (tag) == MKTAG('a', 'i', '5', '2') ||  \
      (tag) == MKTAG('a', 'i', '5', '3') ||  \
      (tag) == MKTAG('a', 'i', '5', '5') ||  \
      (tag) == MKTAG('a', 'i', '5', '6') ||  \
      (tag) == MKTAG('a', 'i', '1', 'p') ||  \
      (tag) == MKTAG('a', 'i', '1', 'q') ||  \
      (tag) == MKTAG('a', 'i', '1', '2') ||  \
      (tag) == MKTAG('a', 'i', '1', '3') ||  \
      (tag) == MKTAG('a', 'i', '1', '5') ||  \
      (tag) == MKTAG('a', 'i', '1', '6') ||  \
      (tag) == MKTAG('A', 'V', 'i', 'n'))
 
 
86dfcfd0
 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb);
36ef5369
 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags);
2d423666
 
471fe57e
 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
6d721f71
 void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
dc2cabd0
 
98790382
 #endif /* AVFORMAT_ISOM_H */