CHANGES 3.1 KB

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