summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Oops, revert accidental changes from the last commit.Ralph Giles2006-04-261-1/+1
| | | | svn path=/trunk/ogg/; revision=11292
* Propagate fixes for when AUTOMAKE_OPTIONS doesn't list a minimum version number.Ralph Giles2006-04-261-4/+8
| | | | | | This is not currently relevent, but it's best to use our latest version. svn path=/trunk/ogg/; revision=11286
* Merged and updated OS X build files (PPC + Intel).Arek Korbik2006-04-242-380/+72
| | | | svn path=/trunk/ogg/; revision=11269
* Reverted illi's changes.Arek Korbik2006-04-242-298/+0
| | | | svn path=/trunk/ogg/; revision=11268
* * Add VS 2005 files to liboggZentaro Kavanagh2006-04-201-0/+416
| | | | svn path=/trunk/ogg/; revision=11170
* Correct cut-and-paste errors and further clarify memory ownership in the Ralph Giles2006-03-111-9/+26
| | | | | | documentation for ogg_stream_pageout(). svn path=/trunk/ogg/; revision=10993
* Update the link and email for Ross Williams' CRC paper.Ralph Giles2006-02-231-3/+2
| | | | svn path=/trunk/ogg/; revision=10923
* * Merge strays (should be done)Zentaro Kavanagh2006-02-121-0/+298
| | | | svn path=/trunk/ogg/; revision=10813
* * Partial merge of changed files (Do not use this rev.)Zentaro Kavanagh2006-02-121-0/+0
| | | | svn path=/trunk/ogg/; revision=10808
* remove obsolete .cvsignore filesRalph Giles2006-01-288-56/+0
| | | | svn path=/trunk/ogg/; revision=10757
* Added OS X Universal Binary build configuration.Arek Korbik2006-01-232-4/+363
| | | | svn path=/trunk/ogg/; revision=10750
* Remove the debian subdir from distribution tarballs at the request of Ralph Giles2006-01-192-14/+14
| | | | | | the debian maintainer. svn path=/trunk/ogg/; revision=10740
* Sync with changes to the version distributed with libvorbis.Ralph Giles2005-12-211-40/+41
| | | | svn path=/trunk/ogg/; revision=10669
* Bump package version post-release.Ralph Giles2005-11-281-1/+1
| | | | svn path=/trunk/ogg/; revision=10485
* Remove win32/Makefile.am in favor of just including the whole dir, like Ralph Giles2005-11-283-8/+3
| | | | | | | | | | | we do for the MacOS build stuff. If there was a reason for doing it this way, I don't remember what it was. The reason we're switching is that 'make dist' doesn't pull in the new VS2003 project files, and this seems better than adding each specific file all the time. svn path=/trunk/ogg/; revision=10484
* Properly strip the .svn directories from the dist target.v1.1.3Ralph Giles2005-11-281-2/+2
| | | | svn path=/trunk/ogg/; revision=10479
* s/CVS/SVN/Ralph Giles2005-11-281-3/+3
| | | | svn path=/trunk/ogg/; revision=10478
* Set release date.Ralph Giles2005-11-281-1/+1
| | | | svn path=/trunk/ogg/; revision=10475
* Bump package and so revision number for release.Ralph Giles2005-11-281-2/+2
| | | | svn path=/trunk/ogg/; revision=10472
* update change news.Ralph Giles2005-11-281-1/+3
| | | | svn path=/trunk/ogg/; revision=10471
* Replaced MacOSX build files with Xcode2.2 project (and related files).Arek Korbik2005-11-235-298/+379
| | | | svn path=/trunk/ogg/; revision=10425
* Fix #740 - doubling LDFLAGSThomas Vander Stichele2005-11-151-2/+0
| | | | svn path=/trunk/ogg/; revision=10373
* Autoheader must run before automake, to generate config.h.in, which automakeMike Smith2005-10-101-2/+2
| | | | | | | | wants. Despite this commit, I am not an autotools hacker. I hates it. svn path=/trunk/ogg/; revision=10146
* * VS2003 filesZentaro Kavanagh2005-10-051-0/+291
| | | | svn path=/trunk/ogg/; revision=10119
* oops. fix linknehal2005-09-081-1/+1
| | | | svn path=/trunk/ogg/; revision=9999
* add a link to the libogg api; cleanupsnehal2005-09-081-0/+12
| | | | svn path=/trunk/ogg/; revision=9998
* removing debian/Makefile.amThomas Vander Stichele2005-09-071-4/+0
| | | | svn path=/trunk/ogg/; revision=9992
* get rid of the macosx hack by disting debian from toplevel Makefile.amThomas Vander Stichele2005-09-073-8/+8
| | | | svn path=/trunk/ogg/; revision=9990
* add style for h4nehal2005-09-051-1/+1
| | | | svn path=/trunk/ogg/; revision=9957
* cleanup docsnehal2005-09-055-401/+639
| | | | svn path=/trunk/ogg/; revision=9956
* Move our invocation of autoheader until after automake. There is aRalph Giles2005-08-021-2/+2
| | | | | | | | dependency there, at least in the Automake-generated makefile that was forcing a re-run after every autogen. We now invoke it right before autoconf. svn path=/trunk/ogg/; revision=9693
* autoconf does not trace automake subdirs.Ralph Giles2005-08-021-1/+1
| | | | svn path=/trunk/ogg/; revision=9692
* Rename the libogg api doc directory to doc/libogg for greater clarity.Ralph Giles2005-07-3066-1/+1
| | | | svn path=/trunk/ogg/; revision=9667
* Correct the test case data to expect a granulepos of -1 on pages whereRalph Giles2005-07-232-4/+8
| | | | | | | | | | | | no packet ends. The spec is clear about this but the unit tests assumed the old behaviour (carry over the previous granulepos) was correct. I did not verify the new CRC values by hand however, they are just copied from the library output. Also update changelog for the bug fix. svn path=/trunk/ogg/; revision=9601
* According to the Ogg specification, an ogg page that doesn't have any Mike Smith2005-07-221-2/+3
| | | | | | | | | packets ending on it (which commonly happens with video keyframes, for instance) must have a granulepos of -1. libogg never implemented this correctly; this patch ensures it does. svn path=/trunk/ogg/; revision=9598
* New version of the interleave example that shows the possibility of Ralph Giles2005-07-161-0/+0
| | | | | | non-contiguous eos pages. Ticket #503. svn path=/trunk/ogg/; revision=9574
* a dist fix for macosx because of filesystem case handlingThomas Vander Stichele2005-07-061-0/+5
| | | | svn path=/trunk/ogg/; revision=9550
* enable maintainer mode for autogen builds by defaultThomas Vander Stichele2005-06-181-1/+1
| | | | svn path=/trunk/ogg/; revision=9469
* more typosThomas Vander Stichele2005-06-181-38/+38
| | | | svn path=/trunk/ogg/; revision=9467
* doc typo fixes combined with a buildbot testThomas Vander Stichele2005-06-181-2/+2
| | | | svn path=/trunk/ogg/; revision=9466
* Add the multiplex doc to the distribution.Ralph Giles2005-06-171-1/+3
| | | | svn path=/trunk/ogg/; revision=9460
* Remove obsolete doc reference.Ralph Giles2005-06-061-13/+12
| | | | svn path=/trunk/ogg/; revision=9371
* Correct another documentation typo.Ralph Giles2005-05-151-2/+2
| | | | svn path=/trunk/ogg/; revision=9284
* Document ogg_sync_wrote() on the ogg_sync_wrote page instead of half of ↵Ralph Giles2005-05-151-3/+13
| | | | | | ogg_sync_destroy(). svn path=/trunk/ogg/; revision=9283
* debian/watch file for liboggj2005-03-031-0/+3
| | | | svn path=/trunk/ogg/; revision=9018
* additional verbosity on ogg_stream_packetout()Ralph Giles2004-09-281-6/+6
| | | | svn path=/trunk/ogg/; revision=7889
* Fix documentation for ogg_stream_packetout(). This routine would appear Ralph Giles2004-09-281-3/+6
| | | | | | | | | | to return '0' when no data or only an incomplete packet are available. This is distinct from the other two cases. Also clarify the function of the packet argument. 'decode' in this use was ambiguous. svn path=/trunk/ogg/; revision=7888
* Oops. forgot to set the release date on release.Ralph Giles2004-09-281-1/+1
| | | | svn path=/trunk/ogg/; revision=7887
* update release and soname versionv1.1.2Ralph Giles2004-09-231-2/+2
| | | | svn path=/trunk/ogg/; revision=7837
* add changelog entry for josh's bugRalph Giles2004-09-231-0/+4
| | | | svn path=/trunk/ogg/; revision=7836