diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2015-03-16 20:08:35 +0000 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2015-03-18 14:28:56 +0000 |
commit | 8692d74b7364b405d7939c0ed347e8a2815193a7 (patch) | |
tree | 2ff76c21f80b4d3304c5785268ca46e0378c9b26 /libavformat/version.h | |
parent | 58a840e21577a2168843487a98cb2cea44b5a94a (diff) | |
download | ffmpeg-8692d74b7364b405d7939c0ed347e8a2815193a7.tar.gz |
mov: Add option to keep exact packet sequence after seeking
The current behavior may produce a different sequence of packets
after seeking, compared to demuxing linearly from the beginning.
This is because the MOV demuxer seeks in each stream individually,
based on timestamp, which may set each stream at a slightly different
position than if the file would have been read sequentially.
This makes implementing certain operations, such as segmenting,
quite hard, and slower than need be.
Therefore, add an option which retains the same packet sequence
after seeking, as when a file is demuxed linearly.
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index 9ceb6ee6fa..495302ab87 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -30,7 +30,7 @@ #include "libavutil/version.h" #define LIBAVFORMAT_VERSION_MAJOR 56 -#define LIBAVFORMAT_VERSION_MINOR 17 +#define LIBAVFORMAT_VERSION_MINOR 18 #define LIBAVFORMAT_VERSION_MICRO 0 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ |