Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

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