CHANGES 2.6 KB

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