aboutsummaryrefslogtreecommitdiff
path: root/Music/ffmpeg/doc/ffmpeg-scaler.html
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-03 02:06:58 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-03 02:52:19 +0100
commit734eee1af2c21976e8f57c4ca498593a305fb22e (patch)
tree8d5593567ce80c37820ea0c5ae76ff6bdb9e529c /Music/ffmpeg/doc/ffmpeg-scaler.html
parentbe200a681bed14801bb564c79f70e773e44e6c73 (diff)
downloadairport-734eee1af2c21976e8f57c4ca498593a305fb22e.tar.gz
Remove ffmpeg binary from project
Diffstat (limited to 'Music/ffmpeg/doc/ffmpeg-scaler.html')
-rw-r--r--Music/ffmpeg/doc/ffmpeg-scaler.html252
1 files changed, 0 insertions, 252 deletions
diff --git a/Music/ffmpeg/doc/ffmpeg-scaler.html b/Music/ffmpeg/doc/ffmpeg-scaler.html
deleted file mode 100644
index f57c665..0000000
--- a/Music/ffmpeg/doc/ffmpeg-scaler.html
+++ /dev/null
@@ -1,252 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
- <head>
- <meta charset="utf-8">
- <title>
- FFmpeg Scaler Documentation
- </title>
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="stylesheet" type="text/css" href="bootstrap.min.css">
- <link rel="stylesheet" type="text/css" href="style.min.css">
- </head>
- <body>
- <div class="container">
- <h1>
- FFmpeg Scaler Documentation
- </h1>
-<div align="center">
-</div>
-
-
-<a name="SEC_Top"></a>
-
-<a name="SEC_Contents"></a>
-<h2 class="contents-heading">Table of Contents</h2>
-
-<div class="contents">
-
-<ul class="no-bullet">
- <li><a name="toc-Description" href="#Description">1 Description</a></li>
- <li><a name="toc-Scaler-Options" href="#Scaler-Options">2 Scaler Options</a></li>
- <li><a name="toc-See-Also" href="#See-Also">3 See Also</a></li>
- <li><a name="toc-Authors" href="#Authors">4 Authors</a></li>
-</ul>
-</div>
-
-
-<a name="Description"></a>
-<h2 class="chapter">1 Description<span class="pull-right"><a class="anchor hidden-xs" href="#Description" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Description" aria-hidden="true">TOC</a></span></h2>
-
-<p>The FFmpeg rescaler provides a high-level interface to the libswscale
-library image conversion utilities. In particular it allows one to perform
-image rescaling and pixel format conversion.
-</p>
-
-<a name="scaler_005foptions"></a><a name="Scaler-Options"></a>
-<h2 class="chapter">2 Scaler Options<span class="pull-right"><a class="anchor hidden-xs" href="#Scaler-Options" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Scaler-Options" aria-hidden="true">TOC</a></span></h2>
-
-<p>The video scaler supports the following named options.
-</p>
-<p>Options may be set by specifying -<var>option</var> <var>value</var> in the
-FFmpeg tools. For programmatic use, they can be set explicitly in the
-<code>SwsContext</code> options or through the <samp>libavutil/opt.h</samp> API.
-</p>
-<dl compact="compact">
-<dd>
-<a name="sws_005fflags"></a></dd>
-<dt><samp>sws_flags</samp></dt>
-<dd><p>Set the scaler flags. This is also used to set the scaling
-algorithm. Only a single algorithm should be selected.
-</p>
-<p>It accepts the following values:
-</p><dl compact="compact">
-<dt>&lsquo;<samp>fast_bilinear</samp>&rsquo;</dt>
-<dd><p>Select fast bilinear scaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>bilinear</samp>&rsquo;</dt>
-<dd><p>Select bilinear scaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>bicubic</samp>&rsquo;</dt>
-<dd><p>Select bicubic scaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>experimental</samp>&rsquo;</dt>
-<dd><p>Select experimental scaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>neighbor</samp>&rsquo;</dt>
-<dd><p>Select nearest neighbor rescaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>area</samp>&rsquo;</dt>
-<dd><p>Select averaging area rescaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>bicublin</samp>&rsquo;</dt>
-<dd><p>Select bicubic scaling algorithm for the luma component, bilinear for
-chroma components.
-</p>
-</dd>
-<dt>&lsquo;<samp>gauss</samp>&rsquo;</dt>
-<dd><p>Select Gaussian rescaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>sinc</samp>&rsquo;</dt>
-<dd><p>Select sinc rescaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>lanczos</samp>&rsquo;</dt>
-<dd><p>Select Lanczos rescaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>spline</samp>&rsquo;</dt>
-<dd><p>Select natural bicubic spline rescaling algorithm.
-</p>
-</dd>
-<dt>&lsquo;<samp>print_info</samp>&rsquo;</dt>
-<dd><p>Enable printing/debug logging.
-</p>
-</dd>
-<dt>&lsquo;<samp>accurate_rnd</samp>&rsquo;</dt>
-<dd><p>Enable accurate rounding.
-</p>
-</dd>
-<dt>&lsquo;<samp>full_chroma_int</samp>&rsquo;</dt>
-<dd><p>Enable full chroma interpolation.
-</p>
-</dd>
-<dt>&lsquo;<samp>full_chroma_inp</samp>&rsquo;</dt>
-<dd><p>Select full chroma input.
-</p>
-</dd>
-<dt>&lsquo;<samp>bitexact</samp>&rsquo;</dt>
-<dd><p>Enable bitexact output.
-</p></dd>
-</dl>
-
-</dd>
-<dt><samp>srcw</samp></dt>
-<dd><p>Set source width.
-</p>
-</dd>
-<dt><samp>srch</samp></dt>
-<dd><p>Set source height.
-</p>
-</dd>
-<dt><samp>dstw</samp></dt>
-<dd><p>Set destination width.
-</p>
-</dd>
-<dt><samp>dsth</samp></dt>
-<dd><p>Set destination height.
-</p>
-</dd>
-<dt><samp>src_format</samp></dt>
-<dd><p>Set source pixel format (must be expressed as an integer).
-</p>
-</dd>
-<dt><samp>dst_format</samp></dt>
-<dd><p>Set destination pixel format (must be expressed as an integer).
-</p>
-</dd>
-<dt><samp>src_range</samp></dt>
-<dd><p>Select source range.
-</p>
-</dd>
-<dt><samp>dst_range</samp></dt>
-<dd><p>Select destination range.
-</p>
-<a name="sws_005fparams"></a></dd>
-<dt><samp>param0, param1</samp></dt>
-<dd><p>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.
-</p>
-</dd>
-<dt><samp>sws_dither</samp></dt>
-<dd><p>Set the dithering algorithm. Accepts one of the following
-values. Default value is &lsquo;<samp>auto</samp>&rsquo;.
-</p>
-<dl compact="compact">
-<dt>&lsquo;<samp>auto</samp>&rsquo;</dt>
-<dd><p>automatic choice
-</p>
-</dd>
-<dt>&lsquo;<samp>none</samp>&rsquo;</dt>
-<dd><p>no dithering
-</p>
-</dd>
-<dt>&lsquo;<samp>bayer</samp>&rsquo;</dt>
-<dd><p>bayer dither
-</p>
-</dd>
-<dt>&lsquo;<samp>ed</samp>&rsquo;</dt>
-<dd><p>error diffusion dither
-</p>
-</dd>
-<dt>&lsquo;<samp>a_dither</samp>&rsquo;</dt>
-<dd><p>arithmetic dither, based using addition
-</p>
-</dd>
-<dt>&lsquo;<samp>x_dither</samp>&rsquo;</dt>
-<dd><p>arithmetic dither, based using xor (more random/less apparent patterning that
-a_dither).
-</p>
-</dd>
-</dl>
-
-</dd>
-<dt><samp>alphablend</samp></dt>
-<dd><p>Set the alpha blending to use when the input has alpha but the output does not.
-Default value is &lsquo;<samp>none</samp>&rsquo;.
-</p>
-<dl compact="compact">
-<dt>&lsquo;<samp>uniform_color</samp>&rsquo;</dt>
-<dd><p>Blend onto a uniform background color
-</p>
-</dd>
-<dt>&lsquo;<samp>checkerboard</samp>&rsquo;</dt>
-<dd><p>Blend onto a checkerboard
-</p>
-</dd>
-<dt>&lsquo;<samp>none</samp>&rsquo;</dt>
-<dd><p>No blending
-</p>
-</dd>
-</dl>
-
-</dd>
-</dl>
-
-
-<a name="See-Also"></a>
-<h2 class="chapter">3 See Also<span class="pull-right"><a class="anchor hidden-xs" href="#See-Also" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-See-Also" aria-hidden="true">TOC</a></span></h2>
-
-<p><a href="ffmpeg.html">ffmpeg</a>, <a href="ffplay.html">ffplay</a>, <a href="ffprobe.html">ffprobe</a>, <a href="ffserver.html">ffserver</a>,
-<a href="libswscale.html">libswscale</a>
-</p>
-
-<a name="Authors"></a>
-<h2 class="chapter">4 Authors<span class="pull-right"><a class="anchor hidden-xs" href="#Authors" aria-hidden="true">#</a> <a class="anchor hidden-xs"href="#toc-Authors" aria-hidden="true">TOC</a></span></h2>
-
-<p>The FFmpeg developers.
-</p>
-<p>For details about the authorship, see the Git history of the project
-(git://source.ffmpeg.org/ffmpeg), e.g. by typing the command
-<code>git log</code> in the FFmpeg source directory, or browsing the
-online repository at <a href="http://source.ffmpeg.org">http://source.ffmpeg.org</a>.
-</p>
-<p>Maintainers for the specific components are listed in the file
-<samp>MAINTAINERS</samp> in the source code tree.
-</p>
-
-
- <p style="font-size: small;">
- This document was generated using <a href="http://www.gnu.org/software/texinfo/"><em>makeinfo</em></a>.
- </p>
- </div>
- </body>
-</html>