diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-01-24 22:39:54 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-01-24 22:39:54 +0100 |
commit | 76c3e76eb35ce7cca5c912f0d21b736bb0be22fb (patch) | |
tree | fcc0b8a605dafde68a58f1c64fb057bb3119bdab /libavformat/isom.h | |
parent | c77be3a35a0160d6af88056b0899f120f2eef38e (diff) | |
download | ffmpeg-76c3e76eb35ce7cca5c912f0d21b736bb0be22fb.tar.gz |
Allow user to force reading mov alias from absolute path.
Based on a work-around by Alex Zhukov.
Fixes ticket #935
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 8f92caed0c..9a2847dec1 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -130,6 +130,7 @@ typedef struct MOVStreamContext { } MOVStreamContext; typedef struct MOVContext { + AVClass *avclass; AVFormatContext *fc; int time_scale; int64_t duration; ///< duration of the longest track @@ -143,6 +144,7 @@ typedef struct MOVContext { unsigned trex_count; int itunes_metadata; ///< metadata are itunes style int chapter_track; + int use_absolute_path; } MOVContext; int ff_mp4_read_descr_len(AVIOContext *pb); |