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