Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-28Replace "inline" with OPUS_INLINE.Gregory Maxwell
Newer versions of MSVC are unhappy with the strategy of the build environment redefining "inline" (even though they don't support the actual keyword). Instead we define OPUS_INLINE to the right thing in opus_defines.h. This is the same approach we use for restrict.
2012-11-08Fixes issues with multiple files defining CELT_CJean-Marc Valin
2012-11-08Splits out the CELT encoder and decoderJean-Marc Valin
2012-07-21Replace the remaining instances of restrict with OPUS_RESTRICT.Gregory Maxwell
The usage of restrict in include/opus_custom.h was missed by the prior commit replacing this keyword with a macro. Also fixes some prototype/function agreement with respect to restrict.
2012-07-20Replace a remaining instance of restrict with OPUS_RESTRICT.Gregory Maxwell
The usage of restrict in include/opus_custom.h was missed by the prior commit replacing this keyword with a macro.
2012-06-11Correct documentation in opus_custom.h.Gregory Maxwell
2012-06-01Update headers to cause warnings on unused returns and null args.Gregory Maxwell
In places where an ignored return or a null-arg is a sure indication of a bug add the GCC warning attributes. The null arg annotation is not enable for Opus itself because it will cause the compiler to optimize out some null checks. I don't trust our callers quite that much.
2012-04-24Merge commit '390c89225d'Jean-Marc Valin
2012-04-21s/FOUNDATION/COPYRIGHT OWNER/ in CELT code and "glue code"Jean-Marc Valin
Also added 3rd clause to "master" COPYING file
2012-04-02Remove trailing whitespace.Ralph Giles
Also fixes a minor typo.
2011-10-27Moves the main headers from src/ to include/Jean-Marc Valin