diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-11-20 22:04:14 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-11-20 22:04:14 +0100 |
commit | d513fb1c753292fc9f43b9e6fbd6997af85d19c6 (patch) | |
tree | 95620863941d6728bdc5d58b0e2b919f972e83bb /libavformat/avformat.h | |
parent | b1e190d0fddbad800a8b89f9ea840e73257bf6e5 (diff) | |
download | ffmpeg-d513fb1c753292fc9f43b9e6fbd6997af85d19c6.tar.gz |
Add -skip_initial_bytes option.
Fixes ticket #1909.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 8f18604085..85f052ec8c 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1162,6 +1162,13 @@ typedef struct AVFormatContext { */ enum AVDurationEstimationMethod duration_estimation_method; + /** + * Skip initial bytes when opening stream + * - encoding: unused + * - decoding: Set by user via AVOptions (NO direct access) + */ + unsigned int skip_initial_bytes; + /***************************************************************** * All fields below this line are not part of the public API. They * may not be used outside of libavformat and can be changed and |