diff options
author | wm4 | 2015-04-22 12:24:41 +0200 |
---|---|---|
committer | Michael Niedermayer | 2015-04-22 22:27:05 +0200 |
commit | 748d4816d92c735f662c7ac299e79ff0f6fe252e (patch) | |
tree | 2431ce310f2b9ed6741e3605afccb6203a333776 /libavformat/avformat.h | |
parent | d02d04a18f300ebe97319ca6e91fc943cb14f58b (diff) |
avformat: add AVFMT_FLAG_FASTSEEK, use it for mp3
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index c2f798d649..339ff52912 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1391,6 +1391,7 @@ typedef struct AVFormatContext { #define AVFMT_FLAG_SORT_DTS 0x10000 ///< try to interleave outputted packets by dts (using this flag can slow demuxing down) #define AVFMT_FLAG_PRIV_OPT 0x20000 ///< Enable use of private options by delaying codec open (this could be made default once all code is converted) #define AVFMT_FLAG_KEEP_SIDE_DATA 0x40000 ///< Don't merge side data but keep it separate. +#define AVFMT_FLAG_FAST_SEEK 0x80000 ///< Enable fast, but inaccurate seeks for some formats /** * @deprecated deprecated in favor of probesize2 |