diff options
author | Lou Logan <lou@lrcd.com> | 2017-09-21 15:10:56 -0800 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2017-09-21 16:17:02 -0800 |
commit | 183fd30e0f6fdc762fd955a24cfc7e6a49e1055c (patch) | |
tree | 13ca4ed5ab13cd5f7fdf8bd752e6fe4db3548bcf /libavformat/segment.c | |
parent | 724cf83f100065ddabf827f55bf7ae9785875b4c (diff) | |
download | ffmpeg-183fd30e0f6fdc762fd955a24cfc7e6a49e1055c.tar.gz |
Fix several typos
"apix_fmts" found by Marc Péchaud.
"speedloss" found by Mikhail V.
Signed-off-by: Lou Logan <lou@lrcd.com>
Diffstat (limited to 'libavformat/segment.c')
-rw-r--r-- | libavformat/segment.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/segment.c b/libavformat/segment.c index b0ef6dd38e..81d3f1d940 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -111,7 +111,7 @@ typedef struct SegmentContext { int write_header_trailer; /**< Set by a private option. */ char *header_filename; ///< filename to write the output header to - int reset_timestamps; ///< reset timestamps at the begin of each segment + int reset_timestamps; ///< reset timestamps at the beginning of each segment int64_t initial_offset; ///< initial timestamps offset, expressed in microseconds char *reference_stream_specifier; ///< reference stream specifier int reference_stream_index; @@ -1052,7 +1052,7 @@ static const AVOption options[] = { { "individual_header_trailer", "write header/trailer to each segment", OFFSET(individual_header_trailer), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, E }, { "write_header_trailer", "write a header to the first segment and a trailer to the last one", OFFSET(write_header_trailer), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, E }, - { "reset_timestamps", "reset timestamps at the begin of each segment", OFFSET(reset_timestamps), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E }, + { "reset_timestamps", "reset timestamps at the beginning of each segment", OFFSET(reset_timestamps), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E }, { "initial_offset", "set initial timestamp offset", OFFSET(initial_offset), AV_OPT_TYPE_DURATION, {.i64 = 0}, -INT64_MAX, INT64_MAX, E }, { "write_empty_segments", "allow writing empty 'filler' segments", OFFSET(write_empty), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E }, { NULL }, |