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.

50 lines
1.8KB

  1. Release Notes
  2. =============
  3. * 0.10 "Freedom" January, 2012
  4. General notes
  5. -------------
  6. This release is binary compatible with 0.8 and 0.9.
  7. See the Changelog file for a list of significant changes. Note, there
  8. are many more new features and bugfixes than whats listed there.
  9. Bugreports against FFmpeg git master or the most recent FFmpeg release are
  10. accepted. If you are experiencing issues with any formally released version of
  11. FFmpeg, please try git master to check if the issue still exists. If it does,
  12. make your report against the development code following the usual bug reporting
  13. guidelines.
  14. API changes
  15. -----------
  16. A number of additional APIs have been introduced and some existing
  17. functions have been deprecated and are scheduled for removal in the next
  18. release. Significant API changes include:
  19. * new audio decoding API which decodes from an AVPacket to an AVFrame and
  20. is able to use AVCodecContext.get_buffer() in the similar way as video decoding.
  21. * new audio encoding API which encodes from an AVFrame to an AVPacket, thus
  22. allowing it to properly output timing information and side data.
  23. Please see the git history and the file doc/APIchanges for details.
  24. Other notable changes
  25. ---------------------
  26. Libavcodec and libavformat built as shared libraries now hide non-public
  27. symbols. This will break applications using those symbols. Possible solutions
  28. are, in order of preference:
  29. 1) Try finding a way of accomplishing the same with public API.
  30. 2) If there is no corresponding public API, but you think there should be,
  31. post a request on the developer mailing list or IRC channel.
  32. 3) Finally if your program needs access to FFmpeg / libavcodec / libavformat
  33. internals for some special reason then the best solution is to link statically.
  34. Please see the Changelog file and git history for a more detailed list of changes.