Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. =encoding utf8
  2.  
  3. =head1 NAME
  4.  
  5. libavutil - multimedia-biased utility library
  6.  
  7. =head1 DESCRIPTION
  8.  
  9.  
  10. The libavutil library is a utility library to aid portable
  11. multimedia programming. It contains safe portable string functions,
  12. random number generators, data structures, additional mathematics
  13. functions, cryptography and multimedia related functionality (like
  14. enumerations for pixel and sample formats). It is not a library for
  15. code needed by both libavcodec and libavformat.
  16.  
  17. The goals for this library is to be:
  18.  
  19.  
  20. =over 4
  21.  
  22.  
  23. =item B<Modular>
  24.  
  25. It should have few interdependencies and the possibility of disabling individual
  26. parts during B<./configure>.
  27.  
  28.  
  29. =item B<Small>
  30.  
  31. Both sources and objects should be small.
  32.  
  33.  
  34. =item B<Efficient>
  35.  
  36. It should have low CPU and memory usage.
  37.  
  38.  
  39. =item B<Useful>
  40.  
  41. It should avoid useless features that almost no one needs.
  42.  
  43. =back
  44.  
  45.  
  46.  
  47.  
  48. =head1 SEE ALSO
  49.  
  50.  
  51.  
  52. ffmpeg(1), ffplay(1), ffprobe(1), ffserver(1),
  53. ffmpeg-utils(1)
  54.  
  55.  
  56. =head1 AUTHORS
  57.  
  58.  
  59. The FFmpeg developers.
  60.  
  61. For details about the authorship, see the Git history of the project
  62. (git://source.ffmpeg.org/ffmpeg), e.g. by typing the command
  63. B<git log> in the FFmpeg source directory, or browsing the
  64. online repository at E<lt>B<http://source.ffmpeg.org>E<gt>.
  65.  
  66. Maintainers for the specific components are listed in the file
  67. F<MAINTAINERS> in the source code tree.
  68.  
  69.  
  70.  
  71.