diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 10:57:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 11:39:09 +0200 |
commit | 7cbef2ed7ed4f3ce31e6a405580e92fdfafc3448 (patch) | |
tree | 0d3d52781eddded7a49501bce8948f9bcf570b9b /ffmpeg.h | |
parent | 3fa72de82f04802e307085d3fce9eafea1d3dc46 (diff) | |
parent | 811bd0784679dfcb4ed02043a37c92f9df10500e (diff) | |
download | ffmpeg-7cbef2ed7ed4f3ce31e6a405580e92fdfafc3448.tar.gz |
Merge commit '811bd0784679dfcb4ed02043a37c92f9df10500e'
* commit '811bd0784679dfcb4ed02043a37c92f9df10500e':
avconv: make input -ss accurate when transcoding
Conflicts:
Changelog
doc/ffmpeg.texi
ffmpeg.h
ffmpeg_filter.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r-- | ffmpeg.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -93,6 +93,7 @@ typedef struct OptionsContext { /* input options */ int64_t input_ts_offset; int rate_emu; + int accurate_seek; SpecifierOpt *ts_scale; int nb_ts_scale; @@ -282,10 +283,12 @@ typedef struct InputFile { int ist_index; /* index of first stream in input_streams */ int64_t ts_offset; int64_t last_ts; + int64_t start_time; /* user-specified start time in AV_TIME_BASE or AV_NOPTS_VALUE */ int nb_streams; /* number of stream that ffmpeg is aware of; may be different from ctx.nb_streams if new streams appear during av_read_frame() */ int nb_streams_warn; /* number of streams that the user was warned of */ int rate_emu; + int accurate_seek; #if HAVE_PTHREADS pthread_t thread; /* thread reading from this file */ |