[FFmpeg-cvslog] doc: move ffmpeg-scaler.texi content to separated file

Stefano Sabatini git at videolan.org
Fri Apr 5 10:16:58 CEST 2013


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Tue Mar 19 20:04:57 2013 +0100| [702e7438275aee2990ee6943a66c17302cda08d9] | committer: Stefano Sabatini

doc: move ffmpeg-scaler.texi content to separated file

This should simplify inclusion in monolithic tool manuals.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=702e7438275aee2990ee6943a66c17302cda08d9
---

 doc/ffmpeg-scaler.texi |  100 +-----------------------------------------------
 doc/scaler.texi        |   99 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 100 insertions(+), 99 deletions(-)

diff --git a/doc/ffmpeg-scaler.texi b/doc/ffmpeg-scaler.texi
index 1110c69..47b81a4 100644
--- a/doc/ffmpeg-scaler.texi
+++ b/doc/ffmpeg-scaler.texi
@@ -18,105 +18,7 @@ image rescaling and pixel format conversion.
 
 @c man end DESCRIPTION
 
- at chapter Scaler Options
- at c man begin SCALER OPTIONS
-
-The video scaler supports the following named options.
-
-Options may be set by specifying - at var{option} @var{value} in the
-FFmpeg tools. For programmatic use, they can be set explicitly in the
- at code{SwsContext} options or through the @file{libavutil/opt.h} API.
-
- at table @option
-
- at item sws_flags
-Set the scaler flags. This is also used to set the scaling
-algorithm. Only a single algorithm should be selected.
-
-It accepts the following values:
- at table @samp
- at item fast_bilinear
-Select fast bilinear scaling algorithm.
-
- at item bilinear
-Select bilinear scaling algorithm.
-
- at item bicubic
-Select bicubic scaling algorithm.
-
- at item experimental
-Select experimental scaling algorithm.
-
- at item neighbor
-Select nearest neighbor rescaling algorithm.
-
- at item area
-Select averaging area rescaling algorithm.
-
- at item bicubiclin
-Select bicubic scaling algorithm for the luma component, bilinear for
-chroma components.
-
- at item gauss
-Select Gaussian rescaling algorithm.
-
- at item sinc
-Select sinc rescaling algorithm.
-
- at item lanczos
-Select lanczos rescaling algorithm.
-
- at item spline
-Select natural bicubic spline rescaling algorithm.
-
- at item print_info
-Enable printing/debug logging.
-
- at item accurate_rnd
-Enable accurate rounding.
-
- at item full_chroma_int
-Enable full chroma interpolation.
-
- at item full_chroma_inp
-Select full chroma input.
-
- at item bitexact
-Enable bitexact output.
- at end table
-
- at item srcw
-Set source width.
-
- at item srch
-Set source height.
-
- at item dstw
-Set destination width.
-
- at item dsth
-Set destination height.
-
- at item src_format
-Set source pixel format (must be expressed as an integer).
-
- at item dst_format
-Set destination pixel format (must be expressed as an integer).
-
- at item src_range
-Select source range.
-
- at item dst_range
-Select destination range.
-
- at item param0, param1
-Set scaling algorithm parameters. The specified values are specific of
-some scaling algorithms and ignored by others. The specified values
-are floating point number values.
-
- at end table
-
- at c man end SCALER OPTIONS
+ at include scaler.texi
 
 @chapter See Also
 
diff --git a/doc/scaler.texi b/doc/scaler.texi
new file mode 100644
index 0000000..c33b6d9
--- /dev/null
+++ b/doc/scaler.texi
@@ -0,0 +1,99 @@
+ at chapter Scaler Options
+ at c man begin SCALER OPTIONS
+
+The video scaler supports the following named options.
+
+Options may be set by specifying - at var{option} @var{value} in the
+FFmpeg tools. For programmatic use, they can be set explicitly in the
+ at code{SwsContext} options or through the @file{libavutil/opt.h} API.
+
+ at table @option
+
+ at item sws_flags
+Set the scaler flags. This is also used to set the scaling
+algorithm. Only a single algorithm should be selected.
+
+It accepts the following values:
+ at table @samp
+ at item fast_bilinear
+Select fast bilinear scaling algorithm.
+
+ at item bilinear
+Select bilinear scaling algorithm.
+
+ at item bicubic
+Select bicubic scaling algorithm.
+
+ at item experimental
+Select experimental scaling algorithm.
+
+ at item neighbor
+Select nearest neighbor rescaling algorithm.
+
+ at item area
+Select averaging area rescaling algorithm.
+
+ at item bicubiclin
+Select bicubic scaling algorithm for the luma component, bilinear for
+chroma components.
+
+ at item gauss
+Select Gaussian rescaling algorithm.
+
+ at item sinc
+Select sinc rescaling algorithm.
+
+ at item lanczos
+Select lanczos rescaling algorithm.
+
+ at item spline
+Select natural bicubic spline rescaling algorithm.
+
+ at item print_info
+Enable printing/debug logging.
+
+ at item accurate_rnd
+Enable accurate rounding.
+
+ at item full_chroma_int
+Enable full chroma interpolation.
+
+ at item full_chroma_inp
+Select full chroma input.
+
+ at item bitexact
+Enable bitexact output.
+ at end table
+
+ at item srcw
+Set source width.
+
+ at item srch
+Set source height.
+
+ at item dstw
+Set destination width.
+
+ at item dsth
+Set destination height.
+
+ at item src_format
+Set source pixel format (must be expressed as an integer).
+
+ at item dst_format
+Set destination pixel format (must be expressed as an integer).
+
+ at item src_range
+Select source range.
+
+ at item dst_range
+Select destination range.
+
+ at item param0, param1
+Set scaling algorithm parameters. The specified values are specific of
+some scaling algorithms and ignored by others. The specified values
+are floating point number values.
+
+ at end table
+
+ at c man end SCALER OPTIONS



More information about the ffmpeg-cvslog mailing list