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
2012-08-23More email address updates for AUTHORS.Gregory Maxwell
2012-08-22Update testvector path and filename.Gregory Maxwell
2012-08-22Additional multistream tests and reject channels<1 in MS API.Gregory Maxwell
2012-08-21Revise README, update AUTHORS emails.Gregory Maxwell
2012-08-21Clarify a comment.Ralph Giles
Further cleanup of the confusion with the version string settings.
2012-08-21Propagate OPUS_VERSION to config.h.Ralph Giles
I'm not sure how this worked before, the the previous version string fiddling commit ended up not defining OPUS_VERSION in the autoconf build, so opus_get_version_string() returned 'unknown'.
2012-08-21Replace long long in celt/ with opus_int64.Gregory Maxwell
2012-08-20Remove C99ism in celt/tests/test_unit_mathops.c w/ fixed point build.Gregory Maxwell
2012-08-20Include tests/run_vectors.sh in EXTRA_DIST.Gregory Maxwell
2012-08-19Use 64-bits in fixed point debug for _P16, fixes spurious failures.Gregory Maxwell
2012-08-17Fix an MSVC warning.Ralph Giles
Microsoft Visual Studio 2010 warns about 'C4146: unary minus operator applied to unsigned type, result still unsigned' because of the '&-sizeof(void*)' in align(). This commit works around the warning by casting the size_t to int before negation. Patch by Hauke, who reported the issue on the opus mailing list. Reviewed by derf.
2012-08-17genversion now adds the header comment to version.mkChris Moeller
2012-08-17Add 'compile' to the git ignore list.Ralph Giles
This is another script generated by the autotools build.
2012-08-17Use the string from version.mk in Makefile.draft.Ralph Giles
This reduces the number of places the version string needs to be updated at release.
2012-08-16Move the release version string to version.mk.Ralph Giles
Previously we defined the release version string in configure.ac, and overrode that with 'git describe --tags' if possible. This made it difficult for non-autoconf builds to set their version string correctly. Instead we create, and check into version control, a file called version.mk which defines OPUS_VERSION. The configure script reads that file and uses it as a fallback if the git revision isn't available. The expectation is that version.mk will be manually updated for releases, just as the previous configure.ac version was. However, since this is a simpler format, it is easier for alternate build systems to use, reducing the number of places which must be updated. Also removes the OPUS_MINOR_VERSION, etc. defines from config.h.
2012-08-16Updated Win32 genversion.bat to generate version.mk if Git is found, use it ↵Chris Moeller
if it isn't, and produce unknown version and leave it untouched if it isn't already found
2012-08-16Bump version numberv1.0.1-rc2Jean-Marc Valin
2012-08-12More doc fixes.Gregory Maxwell
In particular we no longer document the default complexity because we're not guaranteeing to keep the default value constant. In the future the default may be lowered in order to keep the default speed constant.
2012-08-11Only install opus_*.3 manpages. Fixes 'make distcheck'.Ralph Giles
We were installing every readable file in man/man3, but only unstalling files matching opus_*.3. Some doxygen versions construct manpage versions of the marked up header files and directory index, which got left on the system after 'make uninstall'. I don't think the 'uninstall' target is widely used, it's often broken and can easily break other software. However, we rely on 'make distcheck' which does verify this issue. Instead, only install the opus_*.3 manpages, which are the core api documentation.
2012-08-11Use configure.ac provided soname versioning.Gregory Maxwell
2012-08-09Documentation updates for the CTLs.Timothy B. Terriberry
In addition to general reformatting and cleanup, this fixes a couple of important mistakes: - The arguments to OPUS_SET_FORCE_CHANNELS are now 1 and 2, not 0 and 1 (as they were when this was called OPUS_SET_FORCE_MONO). - The default encoder mode is now constrained VBR, not unconstrained VBR. It also documents defaults for all the other parameters.
2012-08-09Disable stack-protector for mingw32 and remove win32 restrict define.Gregory Maxwell
2012-08-09Add MSVC makefiles to the dist tarball.Gregory Maxwell
2012-08-09Avoid an inconsequential memory leak in tests/test_opus_decode.c.Gregory Maxwell
Match up the exit behavior when the no-fuzz enviroment variable is set.
2012-08-08Bump version number to 1.0.1 and set libtool versionv1.0.1-rcJean-Marc Valin
2012-08-08Add basic {GET,SET}_LSB_DEPTH API tests.Gregory Maxwell
2012-08-07OPUS_{GET,SET}_LSB_DEPTH for multichannel.Gregory Maxwell
2012-08-07Implements OPUS_{GET,SET}_LSB_DEPTHJean-Marc Valin
This implements an API used in future encoders to avoid dynalloc doing silly things on periodic LSB patterns and to reduce the bitrate on near-silence.
2012-08-06Fix fixed-point testilog2.Timothy B. Terriberry
Use exact integer operations to confirm the value returned is the correct one.
2012-08-06Disable silk_get_TOC in the code, as it's not used or exposed.Gregory Maxwell
2012-08-06Fixed sizeof param in silk_get_TOC. Size for memset was calculated wrong.Cyril Lashkevich
Signed-off-by: Gregory Maxwell <greg@xiph.org> silk_get_TOC is unused, unreachable, and not useful without some packet pre-processing, but until we remove it it should be correct. This was also reported by Mozilla.
2012-08-06Fix opus_encode allowed frame sizes docs, reported by Stefan Hacker.Gregory Maxwell
2012-07-30Added MSVC output directories to gitignore.Chris Moeller
2012-07-27Fix bkp/s -> kb/s in opus_demo.Gregory Maxwell
2012-07-26Guard _MSC_VER tests, remove FLOAT2INT16 when DISABLE_FLOAT_API.Rafaël Carré
2012-07-25log2_frac optimization from Simon Hosie back in Aug 2011.Gregory Maxwell
2012-07-22Add some more api docs.Gregory Maxwell
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-07-20Small cleanups to MSVC build setup.Gian-Carlo Pascutto
Add more MSVC files to .gitignore. Make all configurations use default floating point model.
2012-07-20Fixes MSVC projects and adds git version generator toolChris Moeller
2012-07-18Replace C99 restrict keyword with OPUS_RESTRICT.Gregory Maxwell
We had previously advised people to -Drestrict on non-C99 compilers, but this creates problems for some of the MSVC headers. Instead this just uses a macro and defines it sanely.
2012-07-18Don't try to create fullband silk frames when forced to low rate.Gregory Maxwell
When libopus is forced to sufficiently low rates it will start outputting 'PLC' (one byte) frames. The code that did this did not sanitize the mode well enough and would create corrupted TOC values in some cases.
2012-07-18Convert some double constants to float.Gregory Maxwell
2012-07-18Fix a typo.Ralph Giles
Thanks to Fatbag for pointing out the issue.
2012-07-17Remove rillian from the Acknowledgments.Timothy B. Terriberry
He's an author now.
2012-07-17Clarify difference between user bandwidth settings.Timothy B. Terriberry
2012-07-17Wrap a long line.Ralph Giles
2012-07-17Fix the agreement issue the other way.Ralph Giles
Plural works better with the previous sentence. The agreement problem was there in my original commit. I was just confused by the half that Tim promoted.
2012-07-17Fix an agreement typo in the previous commit.Ralph Giles