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.

41 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. 2009-03-08 - r17869 - lavu 50.0.0 - AVFifoBuffer
  13. av_fifo_init, av_fifo_read, av_fifo_write and av_fifo_realloc were dropped
  14. and replaced by av_fifo_alloc, av_fifo_generic_read, av_fifo_generic_write
  15. and av_fifo_realloc2.
  16. In addition, the order of the function arguments of av_fifo_generic_read
  17. were changed to match av_fifo_generic_write.
  18. The AVFifoBuffer/struct AVFifoBuffer may only be used in an opaque way by
  19. applications, they may not use sizeof() or directly access members.
  20. 2009-03-01 - r17682 - lavf 52.31.0 - Generic metadata API
  21. Introduce a new metadata API (see av_metadata_get() and friends).
  22. The old API is now deprecated and should not be used anymore. This especially
  23. includes the following structure fields:
  24. - AVFormatContext.title
  25. - AVFormatContext.author
  26. - AVFormatContext.copyright
  27. - AVFormatContext.comment
  28. - AVFormatContext.album
  29. - AVFormatContext.year
  30. - AVFormatContext.track
  31. - AVFormatContext.genre
  32. - AVStream.language
  33. - AVStream.filename
  34. - AVProgram.provider_name
  35. - AVProgram.name
  36. - AVChapter.title