isom.h 6.45 KB
Newer Older
1 2
/*
 * ISO Media common code
3
 * copyright (c) 2001 Fabrice Bellard
4 5 6
 * copyright (c) 2002 Francois Revol <revol@free.fr>
 * copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@free.fr>
 *
7 8 9
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
10 11
 * modify it under the terms of the GNU Lesser General Public
 * 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 16 17 18 19
 * 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
20
 * License along with FFmpeg; if not, write to the Free Software
21 22 23
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

24 25
#ifndef AVFORMAT_ISOM_H
#define AVFORMAT_ISOM_H
26

27
#include "avio.h"
28
#include "internal.h"
29
#include "dv.h"
30

31
/* isom.c */
32
extern const AVCodecTag ff_mp4_obj_type[];
33 34
extern const AVCodecTag ff_codec_movvideo_tags[];
extern const AVCodecTag ff_codec_movaudio_tags[];
35
extern const AVCodecTag ff_codec_movsubtitle_tags[];
36

37 38
int ff_mov_iso639_to_lang(const char lang[4], int mp4);
int ff_mov_lang_to_iso639(unsigned code, char to[4]);
39

40 41 42 43 44
/* 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
 */

45
typedef struct {
46 47
    int count;
    int duration;
48
} MOVStts;
49

50 51 52 53 54 55 56 57 58
typedef struct {
    int first;
    int count;
    int id;
} MOVStsc;

typedef struct {
    uint32_t type;
    char *path;
59 60 61 62
    char *dir;
    char volume[28];
    char filename[64];
    int16_t nlvl_to, nlvl_from;
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
} MOVDref;

typedef struct {
    uint32_t type;
    int64_t size; /* total size (excluding the size and type fields) */
} MOVAtom;

struct MOVParseTableEntry;

typedef struct {
    unsigned track_id;
    uint64_t base_data_offset;
    uint64_t moof_offset;
    unsigned stsd_id;
    unsigned duration;
    unsigned size;
    unsigned flags;
} MOVFragment;

typedef struct {
    unsigned track_id;
    unsigned stsd_id;
    unsigned duration;
    unsigned size;
    unsigned flags;
} MOVTrackExt;

typedef struct MOVStreamContext {
91
    AVIOContext *pb;
92
    int ffindex;          ///< AVStream index
93 94 95 96 97 98 99 100 101
    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;
102 103
    unsigned int stps_count;
    unsigned *stps_data;  ///< partial sync sample for mpeg-2 open gop
104 105 106 107 108 109 110 111
    int ctts_index;
    int ctts_sample;
    unsigned int sample_size;
    unsigned int sample_count;
    int *sample_sizes;
    unsigned int keyframe_count;
    int *keyframes;
    int time_scale;
112 113 114
    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
115 116 117 118 119
    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
120
    int16_t audio_cid;    ///< stsd audio compression id
121 122 123
    unsigned drefs_count;
    MOVDref *drefs;
    int dref_id;
124 125 126 127
    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
128 129
    uint32_t palette[256];
    int has_palette;
130
    int64_t data_size;
131
    uint32_t tmcd_flags;  ///< tmcd track flags
132
    int64_t track_end;    ///< used for dts generation in fragmented movie files
133 134 135
} MOVStreamContext;

typedef struct MOVContext {
136
    AVClass *avclass;
137 138
    AVFormatContext *fc;
    int time_scale;
139 140 141
    int64_t duration;     ///< duration of the longest track
    int found_moov;       ///< 'moov' atom has been found
    int found_mdat;       ///< 'mdat' atom has been found
142 143
    DVDemuxContext *dv_demux;
    AVFormatContext *dv_fctx;
144
    int isom;             ///< 1 if file is ISO Media (mp4/3gp)
145 146 147
    MOVFragment fragment; ///< current fragment in moof atom
    MOVTrackExt *trex_data;
    unsigned trex_count;
148
    int itunes_metadata;  ///< metadata are itunes style
149
    int chapter_track;
150
    int use_absolute_path;
151
    int64_t next_root_atom; ///< offset of the next root atom
152 153
} MOVContext;

154 155 156
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);
157
void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
158

Alex Converse's avatar
Alex Converse committed
159
#define MP4ODescrTag                    0x01
160 161 162 163
#define MP4IODescrTag                   0x02
#define MP4ESDescrTag                   0x03
#define MP4DecConfigDescrTag            0x04
#define MP4DecSpecificDescrTag          0x05
Alex Converse's avatar
Alex Converse committed
164
#define MP4SLDescrTag                   0x06
165

166 167 168 169 170 171 172
#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

173 174 175 176 177 178 179
#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

180 181 182 183 184 185 186 187 188 189
#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

190
int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb, MOVAtom atom);
191 192
enum CodecID ff_mov_get_lpcm_codec_id(int bps, int flags);

193
int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
194
void ff_mov_read_chan(AVFormatContext *s, int64_t size, AVCodecContext *codec);
195
void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
196

197
#endif /* AVFORMAT_ISOM_H */