libswresample.texi 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. \input texinfo @c -*- texinfo -*-
  2. @settitle Libswresample Documentation
  3. @titlepage
  4. @center @titlefont{Libswresample Documentation}
  5. @end titlepage
  6. @top
  7. @contents
  8. @chapter Description
  9. @c man begin DESCRIPTION
  10. The libswresample library performs highly optimized audio resampling,
  11. rematrixing and sample format conversion operations.
  12. Specifically, this library performs the following conversions:
  13. @itemize
  14. @item
  15. @emph{Resampling}: is the process of changing the audio rate, for
  16. example from an high sample rate of 44100Hz to 8000Hz. Audio
  17. conversion from high to low sample rate is a lossy process. Several
  18. resampling options and algorithms are available.
  19. @item
  20. @emph{Format conversion}: is the process of converting the type of
  21. samples, for example from 16-bit signed samples to unsigned 8-bit or
  22. float samples. It also handles packing conversion, when passing from
  23. packed layout (all samples belonging to distinct channels interleaved
  24. in the same buffer), to planar layout (all samples belonging to the
  25. same channel stored in a dedicated buffer or "plane").
  26. @item
  27. @emph{Rematrixing}: is the process of changing the channel layout, for
  28. example from stereo to mono. When the input channels cannot be mapped
  29. to the output streams, the process is lossy, since it involves
  30. different gain factors and mixing.
  31. @end itemize
  32. Various other audio conversions (e.g. stretching and padding) are
  33. enabled through dedicated options.
  34. @c man end DESCRIPTION
  35. @chapter See Also
  36. @ifhtml
  37. @url{ffmpeg.html,ffmpeg}, @url{ffplay.html,ffplay}, @url{ffprobe.html,ffprobe}, @url{ffserver.html,ffserver},
  38. @url{ffmpeg-resampler.html,ffmpeg-resampler},
  39. @url{libavutil.html,libavutil}
  40. @end ifhtml
  41. @ifnothtml
  42. ffmpeg(1), ffplay(1), ffprobe(1), ffserver(1),
  43. ffmpeg-resampler(1),
  44. libavutil(3)
  45. @end ifnothtml
  46. @include authors.texi
  47. @ignore
  48. @setfilename libswresample
  49. @settitle audio resampling library
  50. @end ignore
  51. @bye