diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-25 21:21:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-09 18:58:30 +0200 |
commit | 2831b307e65f89639ab61848d5c5d39001b22702 (patch) | |
tree | f08629215081a9bdd22e444a59ca4476b9ac4986 /doc/filters.texi | |
parent | e67a87eac814c7805d18c983c43033a8a1bd62af (diff) | |
download | ffmpeg-2831b307e65f89639ab61848d5c5d39001b22702.tar.gz |
vf_aspect: switch to an AVOptions-based system.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 1d3457ca9c..022c98468f 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1834,18 +1834,20 @@ the video frame. Also the display aspect ratio set by this filter may be changed by later filters in the filterchain, e.g. in case of scaling or if another "setdar" or a "setsar" filter is applied. -The filter accepts a parameter string which represents the wanted -display aspect ratio. -The parameter can be a floating point number string, or an expression -of the form @var{num}:@var{den}, where @var{num} and @var{den} are the -numerator and denominator of the aspect ratio. -If the parameter is not specified, it is assumed the value "0:1". +This filter accepts the following options: + +@table @option + +@item dar +Output display aspect ratio, as a rational or a decimal number. + +@end table For example to change the display aspect ratio to 16:9, specify: @example -setdar=16:9 +setdar=dar=16/9 # the above is equivalent to -setdar=1.77777 +setdar=dar=1.77777 @end example See also the @ref{setsar} filter documentation. @@ -1929,16 +1931,18 @@ Keep in mind that the sample aspect ratio set by this filter may be changed by later filters in the filterchain, e.g. if another "setsar" or a "setdar" filter is applied. -The filter accepts a parameter string which represents the wanted -sample aspect ratio. -The parameter can be a floating point number string, or an expression -of the form @var{num}:@var{den}, where @var{num} and @var{den} are the -numerator and denominator of the aspect ratio. -If the parameter is not specified, it is assumed the value "0:1". +This filter accepts the following options: + +@table @option + +@item sar +Output sample aspect ratio, as a rational or decimal number. + +@end table For example to change the sample aspect ratio to 10:11, specify: @example -setsar=10:11 +setsar=sar=10/11 @end example @section settb |