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/options_table.h | |
parent | b1e190d0fddbad800a8b89f9ea840e73257bf6e5 (diff) | |
download | ffmpeg-d513fb1c753292fc9f43b9e6fbd6997af85d19c6.tar.gz |
Add -skip_initial_bytes option.
Fixes ticket #1909.
Diffstat (limited to 'libavformat/options_table.h')
-rw-r--r-- | libavformat/options_table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/options_table.h b/libavformat/options_table.h index 778c740f92..3394706dc8 100644 --- a/libavformat/options_table.h +++ b/libavformat/options_table.h @@ -72,6 +72,7 @@ static const AVOption options[]={ {"aggressive", "consider things that a sane encoder shouldnt do as an error", 0, AV_OPT_TYPE_CONST, {.i64 = AV_EF_AGGRESSIVE }, INT_MIN, INT_MAX, D, "err_detect"}, {"use_wallclock_as_timestamps", "use wallclock as timestamps", OFFSET(use_wallclock_as_timestamps), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX-1, D}, {"avoid_negative_ts", "avoid negative timestamps", OFFSET(avoid_negative_ts), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, E}, +{"skip_initial_bytes", "skip initial bytes", OFFSET(skip_initial_bytes), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX-1, D}, {NULL}, }; |