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.

40 lines
1.4KB

  1. Never assume the API of libav* to be stable unless at least 1 week has passed since
  2. the last major version increase.
  3. The last version increases were:
  4. libavcodec: ?
  5. libavdevice: ?
  6. libavfilter: ?
  7. libavformat: ?
  8. libpostproc: ?
  9. libswscale: ?
  10. libavutil: 2009-03-08
  11. API changes, most recent first:
  12. 20090308 - r17869 - lavu 50.0.0 - AVFifoBuffer
  13. av_fifo_init, av_fifo_read, av_fifo_write and av_fifo_realloc were dropped and replaced
  14. by av_fifo_alloc, av_fifo_generic_read, av_fifo_generic_write and av_fifo_realloc2.
  15. In addition, the order of the function arguments of av_fifo_generic_read were changed
  16. to match av_fifo_generic_write.
  17. The AVFifoBuffer/struct AVFifoBuffer may only be used in an opaque way by applications,
  18. they may not use sizeof() or directly access members.
  19. 20090301 - r17682 - lavf 52.31.0 - Generic metadata API
  20. This version introduces a new metadata API (see av_metadata_get() and friends).
  21. The old API is now deprecated and shouldn't be used anymore. This especially
  22. includes the following structure fields:
  23. - AVFormatContext.title
  24. - AVFormatContext.author
  25. - AVFormatContext.copyright
  26. - AVFormatContext.comment
  27. - AVFormatContext.album
  28. - AVFormatContext.year
  29. - AVFormatContext.track
  30. - AVFormatContext.genre
  31. - AVStream.language
  32. - AVStream.filename
  33. - AVProgram.provider_name
  34. - AVProgram.name
  35. - AVChapter.title