123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <!-- Created by GNU Texinfo 6.8, https://www.gnu.org/software/texinfo/ -->
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Libswresample Documentation</title>
- <meta name="description" content="Libswresample Documentation">
- <meta name="keywords" content="Libswresample Documentation">
- <meta name="resource-type" content="document">
- <meta name="distribution" content="global">
- <meta name="Generator" content="makeinfo">
- <meta name="viewport" content="width=device-width,initial-scale=1">
- <link href="#SEC_Contents" rel="contents" title="Table of Contents">
- <style type="text/css">
- <!--
- a.copiable-anchor {visibility: hidden; text-decoration: none; line-height: 0em}
- a.summary-letter {text-decoration: none}
- blockquote.indentedblock {margin-right: 0em}
- div.display {margin-left: 3.2em}
- div.example {margin-left: 3.2em}
- kbd {font-style: oblique}
- pre.display {font-family: inherit}
- pre.format {font-family: inherit}
- pre.menu-comment {font-family: serif}
- pre.menu-preformatted {font-family: serif}
- span.nolinebreak {white-space: nowrap}
- span.roman {font-family: initial; font-weight: normal}
- span.sansserif {font-family: sans-serif; font-weight: normal}
- span:hover a.copiable-anchor {visibility: visible}
- ul.no-bullet {list-style: none}
- -->
- </style>
- </head>
- <body lang="en">
- <h1 class="settitle" align="center">Libswresample Documentation</h1>
- <a name="SEC_Top"></a>
- <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 libswresample library performs highly optimized audio resampling,
- rematrixing and sample format conversion operations.
- </p>
- <p>Specifically, this library performs the following conversions:
- </p>
- <ul>
- <li> <em>Resampling</em>: is the process of changing the audio rate, for
- example from a high sample rate of 44100Hz to 8000Hz. Audio
- conversion from high to low sample rate is a lossy process. Several
- resampling options and algorithms are available.
- </li><li> <em>Format conversion</em>: is the process of converting the type of
- samples, for example from 16-bit signed samples to unsigned 8-bit or
- float samples. It also handles packing conversion, when passing from
- packed layout (all samples belonging to distinct channels interleaved
- in the same buffer), to planar layout (all samples belonging to the
- same channel stored in a dedicated buffer or "plane").
- </li><li> <em>Rematrixing</em>: is the process of changing the channel layout, for
- example from stereo to mono. When the input channels cannot be mapped
- to the output streams, the process is lossy, since it involves
- different gain factors and mixing.
- </li></ul>
- <p>Various other audio conversions (e.g. stretching and padding) are
- enabled through dedicated options.
- </p>
- <a name="See-Also"></a>
- <h2 class="chapter">2 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="ffmpeg-resampler.html">ffmpeg-resampler</a>,
- <a href="libavutil.html">libavutil</a>
- </p>
- <a name="Authors"></a>
- <h2 class="chapter">3 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
- (https://git.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="https://git.ffmpeg.org/ffmpeg">https://git.ffmpeg.org/ffmpeg</a>.
- </p>
- <p>Maintainers for the specific components are listed in the file
- <samp>MAINTAINERS</samp> in the source code tree.
- </p>
- </body>
- </html>
|