APIchanges 1.0 KB

12345678910111213141516171819202122232425
  1. 20090601 - r19025 - lavc 52.30.0 - av_lockmgr_register()
  2. av_lockmgr_register() can be used to register a callback function
  3. that lavc (and in the future, libraries that depend on lavc) can use
  4. to implement mutexes. The application should provide a callback function
  5. the implements the AV_LOCK_* operations described in avcodec.h.
  6. When the lock manager is registered FFmpeg is guaranteed to behave
  7. correct also in a multi-threaded application.
  8. 20090301 - r17682 - lavf 52.31.0 - Generic metadata API
  9. This version introduce a new metadata API (see av_metadata_get() and friends).
  10. The old API is now deprecated and shouldn't be used anymore. This especially
  11. include the following structure fields:
  12. - AVFormatContext.title
  13. - AVFormatContext.author
  14. - AVFormatContext.copyright
  15. - AVFormatContext.comment
  16. - AVFormatContext.album
  17. - AVFormatContext.year
  18. - AVFormatContext.track
  19. - AVFormatContext.genre
  20. - AVStream.language
  21. - AVStream.filename
  22. - AVProgram.provider_name
  23. - AVProgram.name
  24. - AVChapter.title