CHANGES 2.8 KB

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