diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-02 22:40:31 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-02 22:40:31 +0000 |
commit | d89e3b36e3902da41edbbc5240499d0c41ec46c9 (patch) | |
tree | f00980b3c014b121a468a5fec79e38599f51d603 /doc/filters.texi | |
parent | a532bb390f92528f4624d7fe57f696df78944111 (diff) | |
download | ffmpeg-d89e3b36e3902da41edbbc5240499d0c41ec46c9.tar.gz |
Move settb docs after setpts docs, fix alphabetical order.
Originally committed as revision 25656 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index e090a04e97..4750d32957 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -472,36 +472,6 @@ ratio of the input image. The default value of @var{width} and @var{height} is 0. -@section settb - -Set the timebase to use for the output frames timestamps. -It is mainly useful for testing timebase configuration. - -It accepts in input an arithmetic expression representing a rational. -The expression can contain the constants "PI", "E", "PHI", "AVTB" (the -default timebase), and "intb" (the input timebase). - -The default value for the input is "intb". - -Follow some examples. - -@example -# set the timebase to 1/25 -settb=1/25 - -# set the timebase to 1/10 -settb=0.1 - -#set the timebase to 1001/1000 -settb=1+0.001 - -#set the timebase to 2*intb -settb=2*intb - -#set the default timebase value -settb=AVTB -@end example - @section setpts Change the PTS (presentation timestamp) of the input video frames. @@ -562,6 +532,36 @@ setpts=N/(25*TB) setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))' @end example +@section settb + +Set the timebase to use for the output frames timestamps. +It is mainly useful for testing timebase configuration. + +It accepts in input an arithmetic expression representing a rational. +The expression can contain the constants "PI", "E", "PHI", "AVTB" (the +default timebase), and "intb" (the input timebase). + +The default value for the input is "intb". + +Follow some examples. + +@example +# set the timebase to 1/25 +settb=1/25 + +# set the timebase to 1/10 +settb=0.1 + +#set the timebase to 1001/1000 +settb=1+0.001 + +#set the timebase to 2*intb +settb=2*intb + +#set the default timebase value +settb=AVTB +@end example + @section slicify Pass the images of input video on to next video filter as multiple |