Commit f60a6b58 authored by Anton Khirnov's avatar Anton Khirnov Committed by Alex Converse

avconv: reset input_ts_offset between files.

Signed-off-by: 's avatarAlex Converse <alex.converse@gmail.com>
parent cf4976ed
...@@ -3065,6 +3065,7 @@ static int opt_input_file(const char *opt, const char *filename) ...@@ -3065,6 +3065,7 @@ static int opt_input_file(const char *opt, const char *filename)
audio_channels = 0; audio_channels = 0;
audio_sample_fmt = AV_SAMPLE_FMT_NONE; audio_sample_fmt = AV_SAMPLE_FMT_NONE;
av_dict_free(&ts_scale); av_dict_free(&ts_scale);
input_ts_offset = 0;
for (i = 0; i < orig_nb_streams; i++) for (i = 0; i < orig_nb_streams; i++)
av_dict_free(&opts[i]); av_dict_free(&opts[i]);
......
...@@ -144,7 +144,6 @@ slower, but more accurate. ...@@ -144,7 +144,6 @@ slower, but more accurate.
@item -itsoffset @var{offset} @item -itsoffset @var{offset}
Set the input time offset in seconds. Set the input time offset in seconds.
@code{[-]hh:mm:ss[.xxx]} syntax is also supported. @code{[-]hh:mm:ss[.xxx]} syntax is also supported.
This option affects all the input files that follow it.
The offset is added to the timestamps of the input files. The offset is added to the timestamps of the input files.
Specifying a positive offset means that the corresponding Specifying a positive offset means that the corresponding
streams are delayed by 'offset' seconds. streams are delayed by 'offset' seconds.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment