1 /*
2 * MOV, 3GP, MP4 muxer
3 * Copyright (c) 2003 Thomas Raivio
4 * Copyright (c) 2004 Gildas Bazin <gbazin at videolan dot org>
5 * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
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
24 #ifndef AVFORMAT_MOVENC_H
25 #define AVFORMAT_MOVENC_H
26
28
29 #define MOV_FRAG_INFO_ALLOC_INCREMENT 64
30 #define MOV_INDEX_CLUSTER_SIZE 1024
31 #define MOV_TIMESCALE 1000
32
33 #define RTP_MAX_PACKET_SIZE 1450
34
38 #define MODE_PSP 0x08 // example working PSP command line:
39 // ffmpeg -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4
41 #define MODE_IPOD 0x20
44
50 unsigned int chunkNum;
///< Chunk number if the current entry is a chunk start otherwise 0
53 #define MOV_SYNC_SAMPLE 0x0001
54 #define MOV_PARTIAL_SYNC_SAMPLE 0x0002
57
65
71
78
90 #define MOV_TRACK_CTTS 0x0001
91 #define MOV_TRACK_STPS 0x0002
93 #define MOV_TIMECODE_FLAG_DROPFRAME 0x0001
94 #define MOV_TIMECODE_FLAG_24HOURSMAX 0x0002
95 #define MOV_TIMECODE_FLAG_ALLOWNEGATIVE 0x0004
102
108 int height;
///< active picture (w/o VBI) height for D-10/IMX
110 int tref_id;
///< trackID of the referenced track
112
113 int hint_track;
///< the track that hints this track, -1 if no hint track is set
114 int src_track;
///< the track that this hint (or tmcd) track describes
119
123
125
131
135
136 struct {
145
151 int nb_meta_tmcd;
///< number of new created tmcd track based on metadata (aka not data copy)
156
161
165
172
176
177 #define FF_MOV_FLAG_RTP_HINT 1
178 #define FF_MOV_FLAG_FRAGMENT 2
179 #define FF_MOV_FLAG_EMPTY_MOOV 4
180 #define FF_MOV_FLAG_FRAG_KEYFRAME 8
181 #define FF_MOV_FLAG_SEPARATE_MOOF 16
182 #define FF_MOV_FLAG_FRAG_CUSTOM 32
183 #define FF_MOV_FLAG_ISML 64
184 #define FF_MOV_FLAG_FASTSTART 128
185
187
190 int track_index,
int sample,
191 uint8_t *sample_data,
int sample_size);
193
194 #endif /* AVFORMAT_MOVENC_H */