1
0

CHANGES 3.4 KB

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