CHANGES 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Version 1.3.0 (2011 August 4)
  2. * Add ogg_stream_flush_fill() call
  3. This produces longer packets on flush, similar to
  4. what ogg_stream_pageout_fill() does for single pages.
  5. * Windows build fixes
  6. Version 1.2.2 (2010 December 07)
  7. * Build fix (types correction) for Mac OS X
  8. * Update win32 project files to Visual Studio 2008
  9. * ogg_stream_pageout_fill documentation fix
  10. Version 1.2.1 (2010 November 01)
  11. * Various build updates (see SVN)
  12. * Add ogg_stream_pageout_fill() to API to allow applications
  13. greater explicit flexibility in page sizing.
  14. * Documentation updates including multiplexing description,
  15. terminology and API (incl. ogg_packet_clear(),
  16. ogg_stream_pageout_fill())
  17. * Correct possible buffer overwrite in stream encoding on 32 bit
  18. when a single packet exceed 250MB.
  19. * Correct read-buffer overrun [without side effects] under
  20. similar circumstances.
  21. * Update unit testing to work properly with new page spill
  22. heuristic.
  23. Version 1.2.0 (2010 March 25)
  24. * Alter default flushing behavior to span less often and use larger page
  25. sizes when packet sizes are large.
  26. * Build fixes for additional compilers
  27. * Documentation updates
  28. Version 1.1.4 (2009 June 24)
  29. * New async error reporting mechanism. Calls made after a fatal error are
  30. now safely handled in the event an error code is ignored
  31. * Added allocation checks useful to some embedded applications
  32. * fix possible read past end of buffer when reading 0 bits
  33. * Updates to API documentation
  34. * Build fixes
  35. Version 1.1.3 (2005 November 27)
  36. * Correct a bug in the granulepos field of pages where no packet ends
  37. * New VS2003 and XCode builds, minor fixes to other builds
  38. * documentation fixes and cleanup
  39. Version 1.1.2 (2004 September 23)
  40. * fix a bug with multipage packet assembly after seek
  41. Version 1.1.1 (2004 September 12)
  42. * various bugfixes
  43. * important bugfix for 64-bit platforms
  44. * various portability fixes
  45. * autotools cleanup from Thomas Vander Stichele
  46. * Symbian OS build support from Colin Ward at CSIRO
  47. * new multiplexed Ogg stream documentation
  48. Version 1.1 (2003 November 17)
  49. * big-endian bitpacker routines for Theora
  50. * various portability fixes
  51. * improved API documenation
  52. * RFC 3533 documentation of the format by Silvia Pfeiffer at CSIRO
  53. * RFC 3534 documentation of the application/ogg mime-type by Linus Walleij
  54. Version 1.0 (2002 July 19)
  55. * First stable release
  56. * little-endian bitpacker routines for Vorbis
  57. * basic Ogg bitstream sync and coding support