diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-04-08 12:37:29 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-04-08 12:37:29 +0000 |
commit | 2851d2253f9ecece3e620832a16c54888dea18a5 (patch) | |
tree | 934ed5b1867e86e0f90fd6e355010f9e091a8ea9 | |
parent | 08e696c0b28e58797b4b77310e07a93ab3267369 (diff) | |
download | ffmpeg-2851d2253f9ecece3e620832a16c54888dea18a5.tar.gz |
Document addition of new avcodec_decode_video2/audio3/subtitle2() API and
the deprecation of the old API calls.
Originally committed as revision 18376 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | doc/APIchanges | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 1178a0f58a..f51185aab9 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -12,6 +12,12 @@ libavutil: 2009-03-08 API changes, most recent first: +2009-04-07 - r18351 - lavc 52.23.0 - avcodec_decode_video/audio/subtitle + The old decoding functions are deprecated, all new code should use the + new functions avcodec_decode_video2(), avcodec_decode_audio3() and + avcodec_decode_subtitle2(). These new functions take an AVPacket *pkt + argument instead of a const uint8_t *buf / int buf_size pair. + 2009-04-03 - r18321 - lavu 50.3.0 - av_fifo_space Introduce the av_fifo_space() function. |