2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* ISO Media common code
|
2009-01-19 15:46:40 +00:00
|
|
|
* copyright (c) 2001 Fabrice Bellard
|
2006-09-10 14:02:42 +00:00
|
|
|
* copyright (c) 2002 Francois Revol <revol@free.fr>
|
|
|
|
* copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@free.fr>
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* 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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVFORMAT_ISOM_H
|
|
|
|
#define AVFORMAT_ISOM_H
|
2006-08-01 14:58:15 +00:00
|
|
|
|
2016-12-08 18:47:58 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2017-04-22 03:03:21 +00:00
|
|
|
#include "libavutil/mastering_display_metadata.h"
|
2016-11-11 22:47:44 +00:00
|
|
|
#include "libavutil/spherical.h"
|
|
|
|
#include "libavutil/stereo3d.h"
|
|
|
|
|
2009-03-09 21:53:00 +00:00
|
|
|
#include "avio.h"
|
2010-05-22 16:01:32 +00:00
|
|
|
#include "internal.h"
|
2009-03-09 21:53:00 +00:00
|
|
|
#include "dv.h"
|
2007-06-16 22:59:13 +00:00
|
|
|
|
2006-08-01 14:58:15 +00:00
|
|
|
/* isom.c */
|
2007-03-24 15:24:36 +00:00
|
|
|
extern const AVCodecTag ff_mp4_obj_type[];
|
2012-02-15 09:28:39 +00:00
|
|
|
extern const AVCodecTag ff_codec_movvideo_tags[];
|
|
|
|
extern const AVCodecTag ff_codec_movaudio_tags[];
|
2008-01-26 20:30:03 +00:00
|
|
|
extern const AVCodecTag ff_codec_movsubtitle_tags[];
|
2006-08-01 14:58:15 +00:00
|
|
|
|
2010-01-30 21:54:06 +00:00
|
|
|
int ff_mov_iso639_to_lang(const char lang[4], int mp4);
|
|
|
|
int ff_mov_lang_to_iso639(unsigned code, char to[4]);
|
2006-08-01 14:58:15 +00:00
|
|
|
|
2015-12-07 10:30:50 +00:00
|
|
|
struct AVAESCTR;
|
|
|
|
|
2009-03-09 21:53:00 +00:00
|
|
|
/* 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
|
|
|
|
*/
|
|
|
|
|
2012-09-27 08:19:53 +00:00
|
|
|
typedef struct MOVStts {
|
2006-08-01 14:58:15 +00:00
|
|
|
int count;
|
|
|
|
int duration;
|
2008-12-11 20:06:56 +00:00
|
|
|
} MOVStts;
|
2006-08-01 14:58:15 +00:00
|
|
|
|
2012-09-27 08:19:53 +00:00
|
|
|
typedef struct MOVStsc {
|
2009-03-09 21:53:00 +00:00
|
|
|
int first;
|
|
|
|
int count;
|
|
|
|
int id;
|
|
|
|
} MOVStsc;
|
|
|
|
|
2014-11-12 14:42:17 +00:00
|
|
|
typedef struct MOVElst {
|
|
|
|
int64_t duration;
|
|
|
|
int64_t time;
|
|
|
|
float rate;
|
|
|
|
} MOVElst;
|
|
|
|
|
2012-09-27 08:19:53 +00:00
|
|
|
typedef struct MOVDref {
|
2009-03-09 21:53:00 +00:00
|
|
|
uint32_t type;
|
|
|
|
char *path;
|
2009-11-15 03:26:47 +00:00
|
|
|
char *dir;
|
|
|
|
char volume[28];
|
|
|
|
char filename[64];
|
|
|
|
int16_t nlvl_to, nlvl_from;
|
2009-03-09 21:53:00 +00:00
|
|
|
} MOVDref;
|
|
|
|
|
2012-09-27 08:19:53 +00:00
|
|
|
typedef struct MOVAtom {
|
2009-03-09 21:53:00 +00:00
|
|
|
uint32_t type;
|
|
|
|
int64_t size; /* total size (excluding the size and type fields) */
|
|
|
|
} MOVAtom;
|
|
|
|
|
|
|
|
struct MOVParseTableEntry;
|
|
|
|
|
2012-09-27 08:19:53 +00:00
|
|
|
typedef struct MOVFragment {
|
2009-03-09 21:53:00 +00:00
|
|
|
unsigned track_id;
|
|
|
|
uint64_t base_data_offset;
|
|
|
|
uint64_t moof_offset;
|
2014-07-01 05:17:56 +00:00
|
|
|
uint64_t implicit_offset;
|
2009-03-09 21:53:00 +00:00
|
|
|
unsigned stsd_id;
|
|
|
|
unsigned duration;
|
|
|
|
unsigned size;
|
|
|
|
unsigned flags;
|
2014-10-11 15:43:48 +00:00
|
|
|
int64_t time;
|
2009-03-09 21:53:00 +00:00
|
|
|
} MOVFragment;
|
|
|
|
|
2012-09-27 08:19:53 +00:00
|
|
|
typedef struct MOVTrackExt {
|
2009-03-09 21:53:00 +00:00
|
|
|
unsigned track_id;
|
|
|
|
unsigned stsd_id;
|
|
|
|
unsigned duration;
|
|
|
|
unsigned size;
|
|
|
|
unsigned flags;
|
|
|
|
} MOVTrackExt;
|
|
|
|
|
2012-09-27 08:19:53 +00:00
|
|
|
typedef struct MOVSbgp {
|
2012-04-23 23:51:29 +00:00
|
|
|
unsigned int count;
|
|
|
|
unsigned int index;
|
|
|
|
} MOVSbgp;
|
|
|
|
|
2014-10-11 15:43:48 +00:00
|
|
|
typedef struct MOVFragmentIndexItem {
|
|
|
|
int64_t moof_offset;
|
|
|
|
int64_t time;
|
2015-07-20 20:00:35 +00:00
|
|
|
int headers_read;
|
2014-10-11 15:43:48 +00:00
|
|
|
} MOVFragmentIndexItem;
|
|
|
|
|
|
|
|
typedef struct MOVFragmentIndex {
|
|
|
|
unsigned track_id;
|
|
|
|
unsigned item_count;
|
|
|
|
unsigned current_item;
|
|
|
|
MOVFragmentIndexItem *items;
|
|
|
|
} MOVFragmentIndex;
|
|
|
|
|
2017-01-12 17:01:13 +00:00
|
|
|
typedef struct MOVIndexRange {
|
|
|
|
int64_t start;
|
|
|
|
int64_t end;
|
|
|
|
} MOVIndexRange;
|
|
|
|
|
2009-03-09 21:53:00 +00:00
|
|
|
typedef struct MOVStreamContext {
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb;
|
2013-01-22 04:15:47 +00:00
|
|
|
int pb_is_copied;
|
2009-05-13 08:01:33 +00:00
|
|
|
int ffindex; ///< AVStream index
|
2009-03-09 21:53:00 +00:00
|
|
|
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;
|
2016-06-15 19:24:30 +00:00
|
|
|
int stsc_index;
|
|
|
|
int stsc_sample;
|
2009-05-13 08:31:22 +00:00
|
|
|
unsigned int stps_count;
|
|
|
|
unsigned *stps_data; ///< partial sync sample for mpeg-2 open gop
|
2014-11-12 14:42:17 +00:00
|
|
|
MOVElst *elst_data;
|
|
|
|
unsigned int elst_count;
|
2009-03-09 21:53:00 +00:00
|
|
|
int ctts_index;
|
|
|
|
int ctts_sample;
|
2012-03-25 12:13:23 +00:00
|
|
|
unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom
|
2013-05-25 16:38:49 +00:00
|
|
|
unsigned int stsz_sample_size; ///< always contains sample size from stsz atom
|
2009-03-09 21:53:00 +00:00
|
|
|
unsigned int sample_count;
|
|
|
|
int *sample_sizes;
|
2012-04-13 09:59:14 +00:00
|
|
|
int keyframe_absent;
|
2009-03-09 21:53:00 +00:00
|
|
|
unsigned int keyframe_count;
|
|
|
|
int *keyframes;
|
|
|
|
int time_scale;
|
2011-06-04 17:45:54 +00:00
|
|
|
int64_t time_offset; ///< time offset of the edit list entries
|
2009-03-09 21:53:00 +00:00
|
|
|
int current_sample;
|
2017-01-12 17:01:13 +00:00
|
|
|
int64_t current_index;
|
|
|
|
MOVIndexRange* index_ranges;
|
|
|
|
MOVIndexRange* current_index_range;
|
2009-03-09 21:53:00 +00:00
|
|
|
unsigned int bytes_per_frame;
|
|
|
|
unsigned int samples_per_frame;
|
|
|
|
int dv_audio_container;
|
|
|
|
int pseudo_stream_id; ///< -1 means demux all ids
|
2009-05-13 08:01:33 +00:00
|
|
|
int16_t audio_cid; ///< stsd audio compression id
|
2009-03-09 21:53:00 +00:00
|
|
|
unsigned drefs_count;
|
|
|
|
MOVDref *drefs;
|
|
|
|
int dref_id;
|
2013-01-01 14:42:33 +00:00
|
|
|
int timecode_track;
|
2009-05-13 08:01:33 +00:00
|
|
|
int width; ///< tkhd width
|
|
|
|
int height; ///< tkhd height
|
|
|
|
int dts_shift; ///< dts shift when ctts is negative
|
2011-04-09 13:49:51 +00:00
|
|
|
uint32_t palette[256];
|
|
|
|
int has_palette;
|
2012-01-13 12:40:24 +00:00
|
|
|
int64_t data_size;
|
2012-01-31 09:52:47 +00:00
|
|
|
uint32_t tmcd_flags; ///< tmcd track flags
|
2012-02-02 15:30:27 +00:00
|
|
|
int64_t track_end; ///< used for dts generation in fragmented movie files
|
2012-07-15 13:29:01 +00:00
|
|
|
int start_pad; ///< amount of samples to skip due to enc-dec delay
|
2012-04-23 23:51:29 +00:00
|
|
|
unsigned int rap_group_count;
|
|
|
|
MOVSbgp *rap_group;
|
2014-01-21 23:33:38 +00:00
|
|
|
|
|
|
|
int nb_frames_for_fps;
|
|
|
|
int64_t duration_for_fps;
|
2014-05-19 17:21:53 +00:00
|
|
|
|
2016-06-15 19:24:30 +00:00
|
|
|
/** extradata array (and size) for multiple stsd */
|
|
|
|
uint8_t **extradata;
|
|
|
|
int *extradata_size;
|
|
|
|
int last_stsd_index;
|
|
|
|
int stsd_count;
|
|
|
|
|
2014-05-16 02:06:50 +00:00
|
|
|
int32_t *display_matrix;
|
2016-11-11 22:47:44 +00:00
|
|
|
AVStereo3D *stereo3d;
|
|
|
|
AVSphericalMapping *spherical;
|
|
|
|
size_t spherical_size;
|
2017-04-22 03:03:21 +00:00
|
|
|
AVMasteringDisplayMetadata *mastering;
|
2017-04-22 03:34:37 +00:00
|
|
|
AVContentLightMetadata *coll;
|
|
|
|
size_t coll_size;
|
2016-11-11 22:47:44 +00:00
|
|
|
|
2015-12-07 10:30:50 +00:00
|
|
|
uint32_t format;
|
|
|
|
|
2016-10-26 18:31:03 +00:00
|
|
|
int has_sidx; // If there is an sidx entry for this stream.
|
2015-12-07 10:30:50 +00:00
|
|
|
struct {
|
|
|
|
int use_subsamples;
|
|
|
|
uint8_t* auxiliary_info;
|
|
|
|
uint8_t* auxiliary_info_end;
|
|
|
|
uint8_t* auxiliary_info_pos;
|
2016-02-22 14:41:06 +00:00
|
|
|
uint8_t auxiliary_info_default_size;
|
|
|
|
uint8_t* auxiliary_info_sizes;
|
|
|
|
size_t auxiliary_info_sizes_count;
|
2017-01-12 17:01:13 +00:00
|
|
|
int64_t auxiliary_info_index;
|
2015-12-07 10:30:50 +00:00
|
|
|
struct AVAESCTR* aes_ctr;
|
|
|
|
} cenc;
|
2009-03-09 21:53:00 +00:00
|
|
|
} MOVStreamContext;
|
|
|
|
|
|
|
|
typedef struct MOVContext {
|
2014-11-29 16:51:13 +00:00
|
|
|
const AVClass *class; ///< class for private options
|
2009-03-09 21:53:00 +00:00
|
|
|
AVFormatContext *fc;
|
|
|
|
int time_scale;
|
2009-05-13 08:01:33 +00:00
|
|
|
int64_t duration; ///< duration of the longest track
|
|
|
|
int found_moov; ///< 'moov' atom has been found
|
|
|
|
int found_mdat; ///< 'mdat' atom has been found
|
2015-10-22 22:04:46 +00:00
|
|
|
int found_hdlr_mdta; ///< 'hdlr' atom with type 'mdta' has been found
|
2015-12-04 00:40:24 +00:00
|
|
|
int trak_index; ///< Index of the current 'trak'
|
2015-10-22 22:04:46 +00:00
|
|
|
char **meta_keys;
|
|
|
|
unsigned meta_keys_count;
|
2009-03-09 21:53:00 +00:00
|
|
|
DVDemuxContext *dv_demux;
|
|
|
|
AVFormatContext *dv_fctx;
|
2009-05-13 08:01:33 +00:00
|
|
|
int isom; ///< 1 if file is ISO Media (mp4/3gp)
|
2009-03-09 21:53:00 +00:00
|
|
|
MOVFragment fragment; ///< current fragment in moof atom
|
|
|
|
MOVTrackExt *trex_data;
|
|
|
|
unsigned trex_count;
|
2009-05-13 08:01:33 +00:00
|
|
|
int itunes_metadata; ///< metadata are itunes style
|
2015-12-09 20:45:07 +00:00
|
|
|
int handbrake_version;
|
2016-01-07 23:14:08 +00:00
|
|
|
int *chapter_tracks;
|
|
|
|
unsigned int nb_chapter_tracks;
|
2012-01-24 21:39:54 +00:00
|
|
|
int use_absolute_path;
|
2012-10-02 03:28:27 +00:00
|
|
|
int ignore_editlist;
|
2017-01-09 17:23:38 +00:00
|
|
|
int advanced_editlist;
|
2015-11-10 19:11:26 +00:00
|
|
|
int ignore_chapters;
|
2015-03-17 14:19:31 +00:00
|
|
|
int seek_individually;
|
2012-02-21 10:03:56 +00:00
|
|
|
int64_t next_root_atom; ///< offset of the next root atom
|
2014-11-29 16:51:13 +00:00
|
|
|
int export_all;
|
2014-12-03 02:43:24 +00:00
|
|
|
int export_xmp;
|
2013-07-08 09:56:40 +00:00
|
|
|
int *bitrates; ///< bitrates read before streams creation
|
|
|
|
int bitrates_count;
|
2014-05-31 13:39:35 +00:00
|
|
|
int moov_retry;
|
2014-10-11 15:43:48 +00:00
|
|
|
int use_mfra_for;
|
|
|
|
int has_looked_for_mfra;
|
|
|
|
MOVFragmentIndex** fragment_index_data;
|
|
|
|
unsigned fragment_index_count;
|
2015-07-20 20:00:35 +00:00
|
|
|
int fragment_index_complete;
|
2014-12-16 20:14:40 +00:00
|
|
|
int atom_depth;
|
2015-07-11 18:02:47 +00:00
|
|
|
unsigned int aax_mode; ///< 'aax' file has been detected
|
|
|
|
uint8_t file_key[20];
|
|
|
|
uint8_t file_iv[20];
|
|
|
|
void *activation_bytes;
|
|
|
|
int activation_bytes_size;
|
|
|
|
void *audible_fixed_key;
|
|
|
|
int audible_fixed_key_size;
|
|
|
|
struct AVAES *aes_decrypt;
|
2015-12-07 10:30:50 +00:00
|
|
|
uint8_t *decryption_key;
|
|
|
|
int decryption_key_len;
|
2016-01-15 17:03:49 +00:00
|
|
|
int enable_drefs;
|
2016-11-03 22:52:08 +00:00
|
|
|
int32_t movie_display_matrix[3][3]; ///< display matrix from mvhd
|
2009-03-09 21:53:00 +00:00
|
|
|
} MOVContext;
|
|
|
|
|
2011-02-20 10:04:12 +00:00
|
|
|
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);
|
2011-08-24 23:59:30 +00:00
|
|
|
void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
|
2010-11-23 00:51:12 +00:00
|
|
|
|
2011-10-10 19:50:00 +00:00
|
|
|
#define MP4ODescrTag 0x01
|
2010-11-23 00:51:12 +00:00
|
|
|
#define MP4IODescrTag 0x02
|
|
|
|
#define MP4ESDescrTag 0x03
|
|
|
|
#define MP4DecConfigDescrTag 0x04
|
|
|
|
#define MP4DecSpecificDescrTag 0x05
|
2011-10-11 21:49:59 +00:00
|
|
|
#define MP4SLDescrTag 0x06
|
2010-11-23 00:51:12 +00:00
|
|
|
|
2012-02-16 19:48:30 +00:00
|
|
|
#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
|
2014-07-01 05:17:56 +00:00
|
|
|
#define MOV_TFHD_DEFAULT_BASE_IS_MOOF 0x020000
|
2012-02-16 19:48:30 +00:00
|
|
|
|
2012-02-16 19:58:09 +00:00
|
|
|
#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
|
|
|
|
|
2012-02-16 20:12:12 +00:00
|
|
|
#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
|
|
|
|
|
2013-08-22 14:25:17 +00:00
|
|
|
#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
|
|
|
|
|
2012-09-26 10:13:53 +00:00
|
|
|
#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') || \
|
2014-12-02 22:35:40 +00:00
|
|
|
(tag) == MKTAG('a', 'i', 'v', 'x') || \
|
2012-09-26 10:13:53 +00:00
|
|
|
(tag) == MKTAG('A', 'V', 'i', 'n'))
|
|
|
|
|
|
|
|
|
2014-08-15 20:13:03 +00:00
|
|
|
int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb);
|
2012-08-05 09:11:04 +00:00
|
|
|
enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags);
|
2009-09-16 11:35:01 +00:00
|
|
|
|
2011-02-20 10:04:12 +00:00
|
|
|
int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
|
2011-05-16 23:47:12 +00:00
|
|
|
void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
|
2010-10-05 21:35:44 +00:00
|
|
|
|
2014-10-13 11:35:33 +00:00
|
|
|
#define FF_MOV_FLAG_MFRA_AUTO -1
|
2014-10-11 15:43:48 +00:00
|
|
|
#define FF_MOV_FLAG_MFRA_DTS 1
|
|
|
|
#define FF_MOV_FLAG_MFRA_PTS 2
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVFORMAT_ISOM_H */
|