movenc.h 7.75 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * MOV, 3GP, MP4 muxer
 * Copyright (c) 2003 Thomas Raivio
 * Copyright (c) 2004 Gildas Bazin <gbazin at videolan dot org>
 * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#ifndef AVFORMAT_MOVENC_H
#define AVFORMAT_MOVENC_H

#include "avformat.h"
28
#include "movenccenc.h"
29

30
#define MOV_FRAG_INFO_ALLOC_INCREMENT 64
31
#define MOV_INDEX_CLUSTER_SIZE 1024
32 33
#define MOV_TIMESCALE 1000

34 35
#define RTP_MAX_PACKET_SIZE 1450

36 37 38 39 40 41 42
#define MODE_MP4  0x01
#define MODE_MOV  0x02
#define MODE_3GP  0x04
#define MODE_PSP  0x08 // example working PSP command line:
// ffmpeg -i testinput.avi  -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4
#define MODE_3G2  0x10
#define MODE_IPOD 0x20
43
#define MODE_ISM  0x40
44
#define MODE_F4V  0x80
45 46 47

typedef struct MOVIentry {
    uint64_t     pos;
48
    int64_t      dts;
49
    int64_t      pts;
50
    unsigned int size;
51
    unsigned int samples_in_chunk;
52
    unsigned int chunkNum;              ///< Chunk number if the current entry is a chunk start otherwise 0
53 54 55 56
    unsigned int entries;
    int          cts;
#define MOV_SYNC_SAMPLE         0x0001
#define MOV_PARTIAL_SYNC_SAMPLE 0x0002
57
#define MOV_DISPOSABLE_SAMPLE   0x0004
58 59 60
    uint32_t     flags;
} MOVIentry;

61 62 63 64 65 66 67 68
typedef struct HintSample {
    uint8_t *data;
    int size;
    int sample_number;
    int offset;
    int own_data;
} HintSample;

69
typedef struct HintSampleQueue {
70 71 72 73 74
    int size;
    int len;
    HintSample *samples;
} HintSampleQueue;

75
typedef struct MOVFragmentInfo {
76 77
    int64_t offset;
    int64_t time;
78 79
    int64_t duration;
    int64_t tfrf_offset;
80
    int size;
81 82
} MOVFragmentInfo;

83
typedef struct MOVTrack {
84 85 86 87
    int         mode;
    int         entry;
    unsigned    timescale;
    uint64_t    time;
88
    int64_t     track_duration;
89
    int         last_sample_is_subtitle_end;
90 91
    long        sample_count;
    long        sample_size;
92
    long        chunkCount;
93
    int         has_keyframes;
94
    int         has_disposable;
95 96
#define MOV_TRACK_CTTS         0x0001
#define MOV_TRACK_STPS         0x0002
97
#define MOV_TRACK_ENABLED      0x0004
98
    uint32_t    flags;
99 100 101 102
#define MOV_TIMECODE_FLAG_DROPFRAME     0x0001
#define MOV_TIMECODE_FLAG_24HOURSMAX    0x0002
#define MOV_TIMECODE_FLAG_ALLOWNEGATIVE 0x0004
    uint32_t    timecode_flags;
103
    int         language;
104
    int         track_id;
105
    int         tag; ///< stsd fourcc
106
    AVStream        *st;
107
    AVCodecParameters *par;
108
    int multichannel_as_mono;
109

110 111
    int         vos_len;
    uint8_t     *vos_data;
112
    MOVIentry   *cluster;
113
    unsigned    cluster_capacity;
114 115 116 117
    int         audio_vbr;
    int         height; ///< active picture (w/o VBI) height for D-10/IMX
    uint32_t    tref_tag;
    int         tref_id; ///< trackID of the referenced track
118
    int64_t     start_dts;
119
    int64_t     start_cts;
120
    int64_t     end_pts;
121
    int         end_reliable;
122
    int64_t     dts_shift;
123 124

    int         hint_track;   ///< the track that hints this track, -1 if no hint track is set
125
    int         src_track;    ///< the track that this hint (or tmcd) track describes
126 127 128 129
    AVFormatContext *rtp_ctx; ///< the format context for the hinting rtp muxer
    uint32_t    prev_rtp_ts;
    int64_t     cur_rtp_ts_unwrapped;
    uint32_t    max_packet_size;
130

131 132 133
    int64_t     default_duration;
    uint32_t    default_sample_flags;
    uint32_t    default_size;
134 135

    HintSampleQueue sample_queue;
136
    AVPacket cover_image;
137 138 139 140

    AVIOContext *mdat_buf;
    int64_t     data_offset;
    int64_t     frag_start;
141
    int         frag_discont;
142
    int         entries_flushed;
143 144 145

    int         nb_frag_info;
    MOVFragmentInfo *frag_info;
146
    unsigned    frag_info_capacity;
147 148 149 150

    struct {
        int     first_packet_seq;
        int     first_packet_entry;
151 152
        int     first_packet_seen;
        int     first_frag_written;
153 154 155 156
        int     packet_seq;
        int     packet_entry;
        int     slices;
    } vc1_info;
157 158

    void       *eac3_priv;
159 160

    MOVMuxCencContext cenc;
161 162 163 164 165

    uint32_t palette[AVPALETTE_COUNT];
    int pal_done;

    int is_unaligned_qt_rgb;
166 167
} MOVTrack;

168 169 170 171 172
typedef enum {
    MOV_ENC_NONE = 0,
    MOV_ENC_CENC_AES_CTR,
} MOVEncryptionScheme;

173 174 175 176 177 178 179
typedef enum {
    MOV_PRFT_NONE = 0,
    MOV_PRFT_SRC_WALLCLOCK,
    MOV_PRFT_SRC_PTS,
    MOV_PRFT_NB
} MOVPrftBox;

180
typedef struct MOVMuxContext {
181
    const AVClass *av_class;
182 183 184
    int     mode;
    int64_t time;
    int     nb_streams;
185
    int     nb_meta_tmcd;  ///< number of new created tmcd track based on metadata (aka not data copy)
186 187 188 189
    int     chapter_track; ///< qt chapter track number
    int64_t mdat_pos;
    uint64_t mdat_size;
    MOVTrack *tracks;
190 191

    int flags;
192
    int rtp_flags;
193

194 195 196
    int iods_skip;
    int iods_video_profile;
    int iods_audio_profile;
197

198
    int moov_written;
199 200
    int fragments;
    int max_fragment_duration;
201
    int min_fragment_duration;
202
    int max_fragment_size;
203
    int ism_lookahead;
204
    AVIOContext *mdat_buf;
205
    int first_trun;
206

207
    int video_track_timescale;
208 209

    int reserved_moov_size; ///< 0 for disabled, -1 for automatic, size otherwise
210
    int64_t reserved_header_pos;
211 212

    char *major_brand;
213 214

    int per_stream_grouping;
215
    AVFormatContext *fc;
216 217

    int use_editlist;
218
    float gamma;
219

220
    int frag_interleave;
221
    int missing_duration_warned;
222 223 224 225 226 227 228 229

    char *encryption_scheme_str;
    MOVEncryptionScheme encryption_scheme;
    uint8_t *encryption_key;
    int encryption_key_len;
    uint8_t *encryption_kid;
    int encryption_kid_len;

230 231
    int need_rewrite_extradata;

232 233
    int use_stream_ids_as_track_ids;
    int track_ids_ok;
234
    int write_tmcd;
235
    MOVPrftBox write_prft;
236
    int empty_hdlr_name;
237 238
} MOVMuxContext;

239 240 241 242 243 244 245 246 247 248 249
#define FF_MOV_FLAG_RTP_HINT              (1 <<  0)
#define FF_MOV_FLAG_FRAGMENT              (1 <<  1)
#define FF_MOV_FLAG_EMPTY_MOOV            (1 <<  2)
#define FF_MOV_FLAG_FRAG_KEYFRAME         (1 <<  3)
#define FF_MOV_FLAG_SEPARATE_MOOF         (1 <<  4)
#define FF_MOV_FLAG_FRAG_CUSTOM           (1 <<  5)
#define FF_MOV_FLAG_ISML                  (1 <<  6)
#define FF_MOV_FLAG_FASTSTART             (1 <<  7)
#define FF_MOV_FLAG_OMIT_TFHD_OFFSET      (1 <<  8)
#define FF_MOV_FLAG_DISABLE_CHPL          (1 <<  9)
#define FF_MOV_FLAG_DEFAULT_BASE_MOOF     (1 << 10)
250
#define FF_MOV_FLAG_DASH                  (1 << 11)
251
#define FF_MOV_FLAG_FRAG_DISCONT          (1 << 12)
252
#define FF_MOV_FLAG_DELAY_MOOV            (1 << 13)
253
#define FF_MOV_FLAG_GLOBAL_SIDX           (1 << 14)
254 255
#define FF_MOV_FLAG_WRITE_COLR            (1 << 15)
#define FF_MOV_FLAG_WRITE_GAMA            (1 << 16)
256
#define FF_MOV_FLAG_USE_MDTA              (1 << 17)
257
#define FF_MOV_FLAG_SKIP_TRAILER          (1 << 18)
258
#define FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS  (1 << 19)
259
#define FF_MOV_FLAG_FRAG_EVERY_FRAME      (1 << 20)
260
#define FF_MOV_FLAG_SKIP_SIDX             (1 << 21)
261

262 263
int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);

264 265
int ff_mov_init_hinting(AVFormatContext *s, int index, int src_index);
int ff_mov_add_hinted_packet(AVFormatContext *s, AVPacket *pkt,
266 267
                             int track_index, int sample,
                             uint8_t *sample_data, int sample_size);
268 269
void ff_mov_close_hinting(MOVTrack *track);

270
#endif /* AVFORMAT_MOVENC_H */