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.

47 lines
1.6KB

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