You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.7KB

  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. @ignore
  36. @setfilename libswresample
  37. @settitle audio resampling library
  38. @c man begin SEEALSO
  39. ffmpeg(1), ffplay(1), ffprobe(1), ffserver(1), ffmpeg-resampler(1), libavutil(3)
  40. @c man end
  41. @c man begin AUTHORS
  42. See Git history (git://source.ffmpeg.org/ffmpeg)
  43. @c man end
  44. @end ignore
  45. @bye