diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-16 12:45:42 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-16 12:45:42 +0000 |
commit | f0e5c1c000c0a2b609b14f2cf7c8f7858f65ca5a (patch) | |
tree | a09bce0ce7607a647bada2cc57ac9eedfe83fb8a | |
parent | 05503cee00eabecaf8bf02991062e9b6d5975727 (diff) | |
download | ffmpeg-f0e5c1c000c0a2b609b14f2cf7c8f7858f65ca5a.tar.gz |
Reformat documentation for -vsync @var{parameter}.
Make use of "@table @option" for showing the valid values for the
option.
Originally committed as revision 26385 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | doc/ffmpeg.texi | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 9eb885b166..8898b618e4 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -670,16 +670,25 @@ Repeatedly loop output for formats that support looping such as animated GIF Thread count. @item -vsync @var{parameter} Video sync method. -0 Each frame is passed with its timestamp from the demuxer to the muxer -1 Frames will be duplicated and dropped to achieve exactly the requested - constant framerate. -2 Frames are passed through with their timestamp or dropped so as to prevent - 2 frames from having the same timestamp --1 Chooses between 1 and 2 depending on muxer capabilities. This is the default method. - -With -map you can select from -which stream the timestamps should be taken. You can leave either video or -audio unchanged and sync the remaining stream(s) to the unchanged one. + +@table @option +@item 0 +Each frame is passed with its timestamp from the demuxer to the muxer. +@item 1 +Frames will be duplicated and dropped to achieve exactly the requested +constant framerate. +@item 2 +Frames are passed through with their timestamp or dropped so as to +prevent 2 frames from having the same timestamp. +@item -1 +Chooses between 1 and 2 depending on muxer capabilities. This is the +default method. +@end table + +With -map you can select from which stream the timestamps should be +taken. You can leave either video or audio unchanged and sync the +remaining stream(s) to the unchanged one. + @item -async @var{samples_per_second} Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps, the parameter is the maximum samples per second by which the audio is changed. |