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

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2011-03-21Removes the celt_mode_info() call.Jean-Marc Valin
Adds a CELT_GET_LOOKAHEAD() ctl() call instead. Other uses of celt_mode_info() should not be needed anymore.
2011-03-18Bump version numberJean-Marc Valin
2011-03-15version bumpv0.11.3Jean-Marc Valin
2011-03-14Renamed --noltp to --nopf in celtenc.cJean-Marc Valin
2011-03-13celtdec update for change in celt_decode() return valueJean-Marc Valin
2011-03-10Bump version to 0.11.2v0.11.2Jean-Marc Valin
2011-02-15Version bumpv0.11.1Jean-Marc Valin
2011-02-10Relicensing under the simplified (2-clause) BSD licenseJean-Marc Valin
Got authorization from all copyright holders
2011-02-08Update celtclient to the new API.Gregory Maxwell
2011-02-04Version number bumpJean-Marc Valin
2011-02-03Align the sample buffer for shortRon
2011-02-02Adds a generic CELT_SET_BITRATE() ctl() API for CBR and VBRJean-Marc Valin
2011-01-31No longer extracting the frame size from the mode to build the headerJean-Marc Valin
2011-01-29celt_encoder_create() now defaults to Opus standard modeJean-Marc Valin
The old constructor is renamed celt_encoder_create_custom(). Same for the decoder.
2011-01-27Minor opus_compare fixJean-Marc Valin
2011-01-27Comparison tool for decoder complianceJean-Marc Valin
2011-01-12Fixes constrained VBRJean-Marc Valin
Also removes the 8 byte/packet lower bound
2011-01-11MSVC build fixesDavid Schleef
2010-12-20Bump to 0.10Jean-Marc Valin
2010-12-06Add API support for unconstrained VBRJean-Marc Valin
celtenc now defaults to unconstrained VBR.
2010-11-080.9.1 releasev0.9.1Jean-Marc Valin
2010-10-28Switch example tools to use VBR and 960 sample frames by default on the ↵Gregory Maxwell
basis that if the user doesn't have any particular requirements that they probably want this. Minor change in the VBR behavior to hot-start with some internal state parameters which were observed to be quite consistent across bitrates, framesizes, and content. This also prevents it from completely burning the reserve capacity on the first frame if its a short. Also switch some maximum frame sizes to match the OPUS draft maximums.
2010-07-08Version string updatev0.8.1Jean-Marc Valin
2010-06-28Updating various version stringsJean-Marc Valin
2010-05-08API change: optional resynthesisJean-Marc Valin
The main encode call no longer takes a pointer for the optional resynthesis. It's now done with a call to celt_encode_resynthesis().
2010-05-08More work on variable frame size (getting rid of FRAMESIZE() )Jean-Marc Valin
2010-05-08Changing the encoder API to add the frame sizeJean-Marc Valin
2010-01-16Change name of libcelt to libcelt0Thorvald Natvig
2010-01-08Updates celtclient to the new API.Stefan de Konink
2009-10-18Updated copyright noticesJean-Marc Valin
2009-10-17Changed all the celt*int*_t types to remove the _t suffix, which is reservedJean-Marc Valin
by POSIX. The other _t types that are not part of the API are still there for now. Also, got rid of all that was left of the 64-bit types.
2009-10-16The number of channels is now set when creating the states rather than whenJean-Marc Valin
creating the mode. This means that the same mode can be shared for mono and stereo.
2009-08-02Allocating enough mem in celtenc/celtdec to handle 1024-sample framesJean-Marc Valin
2009-06-08Add support for interframe prediction control in celtenc.Gregory Maxwell
2009-05-22VBR support. VBR API and VBR support in celtenc.Gregory Maxwell
2009-02-27Add version info to celtenc/celtdec output as suggested on theGregory Maxwell
mailing list by Rob Til Freedmen. Also add a bitstream version check to these applications.
2009-02-04Some additional documentaion in the celtenc UI.Gregory Maxwell
2009-02-04Additional copyright notices.Gregory Maxwell
2009-02-04Minor enhancements to celtenc to avoid silently capping bitrate and allow anGregory Maxwell
adjustable frame size. Indentation fix in cwrs.c.
2009-01-20This fixes a couple of issues with celtclient.c and makes it easier toGregory Maxwell
change the channel count and deactivate the AEC.
2008-11-27Celtclient improvements: A usable usage message and correct usage of the ↵Gregory Maxwell
jitter buffer.
2008-10-29Fixed use of the jitter buffer in celtclient.Gregory Maxwell
2008-10-09Add support for a complexity argument to both testcelt and celtenc.Gregory Maxwell
2008-10-01API: Change celt_encode and celt_encode_float so that they take an optional ↵Gregory Maxwell
synthesis parameter after the PCM input. If optional_synthesis is null the encoder will be able to save some computation. If optional_synthesis is non-null if will be used to write the encoder's expectation of the decoder's output. Synthesis may alias the input pcm, so calling the encoder with the same buffer twice will achieve the old behavior. Remove 'restrict' from the CTL prototype.
2008-08-02Fixed two issues pointed out by GregJean-Marc Valin
2008-06-18Automatically choosing the overlap based on the frame size.Jean-Marc Valin
2008-06-09Suggesting .oga as extension for Ogg filesJean-Marc Valin
2008-03-16Removed useless functions that caused warnings in skeleton.cJean-Marc Valin
2008-03-13Adjusting/fixing warningsJean-Marc Valin
2008-03-04fixed-point: converted denormalise_bands()Jean-Marc Valin