CHANGES 2.6 KB

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