Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. =encoding utf8
  2.  
  3. =head1 NAME
  4.  
  5. libswresample - audio resampling library
  6.  
  7. =head1 DESCRIPTION
  8.  
  9.  
  10. The libswresample library performs highly optimized audio resampling,
  11. rematrixing and sample format conversion operations.
  12.  
  13. Specifically, this library performs the following conversions:
  14.  
  15.  
  16. =over 4
  17.  
  18.  
  19. =item *
  20.  
  21. I<Resampling>: is the process of changing the audio rate, for
  22. example from a high sample rate of 44100Hz to 8000Hz. Audio
  23. conversion from high to low sample rate is a lossy process. Several
  24. resampling options and algorithms are available.
  25.  
  26.  
  27. =item *
  28.  
  29. I<Format conversion>: is the process of converting the type of
  30. samples, for example from 16-bit signed samples to unsigned 8-bit or
  31. float samples. It also handles packing conversion, when passing from
  32. packed layout (all samples belonging to distinct channels interleaved
  33. in the same buffer), to planar layout (all samples belonging to the
  34. same channel stored in a dedicated buffer or "plane").
  35.  
  36.  
  37. =item *
  38.  
  39. I<Rematrixing>: is the process of changing the channel layout, for
  40. example from stereo to mono. When the input channels cannot be mapped
  41. to the output streams, the process is lossy, since it involves
  42. different gain factors and mixing.
  43.  
  44. =back
  45.  
  46.  
  47. Various other audio conversions (e.g. stretching and padding) are
  48. enabled through dedicated options.
  49.  
  50.  
  51.  
  52. =head1 SEE ALSO
  53.  
  54.  
  55.  
  56. ffmpeg(1), ffplay(1), ffprobe(1), ffserver(1),
  57. ffmpeg-resampler(1),
  58. libavutil(3)
  59.  
  60.  
  61. =head1 AUTHORS
  62.  
  63.  
  64. The FFmpeg developers.
  65.  
  66. For details about the authorship, see the Git history of the project
  67. (git://source.ffmpeg.org/ffmpeg), e.g. by typing the command
  68. B<git log> in the FFmpeg source directory, or browsing the
  69. online repository at E<lt>B<http://source.ffmpeg.org>E<gt>.
  70.  
  71. Maintainers for the specific components are listed in the file
  72. F<MAINTAINERS> in the source code tree.
  73.  
  74.  
  75.  
  76.