forked from j0r1/EMIPLIB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
218 changed files
with
8,753 additions
and
4,585 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,26 @@ | |
EMIPLIB ChangeLog | ||
|
||
|
||
Version 0.17.0, August 2009 | ||
* Added a virtual function to the WAV file input components which gets | ||
called when the last block of the file has been read. This allows | ||
you to stop the chain at that point. | ||
* Added some methods to MIPAudioMixer to allow you to ignore the | ||
audio from particular sources. | ||
* Added methods to MIPAudioMixer to set the internal timer to a | ||
specific value. | ||
* Added support for echo cancellation using the Speex routines. | ||
* Modified MIPAudioMixer so that the setExtraDelay method also works | ||
if the timing information in the messages is not used. | ||
* Changed U-Law and A-Law decoding to a table-lookup method. This also | ||
fixes a bug in the A-Law decoding as was reported by Jo�o Pedro Motondon | ||
([email protected]). | ||
* Support for newer ffmpeg API. | ||
* Video4Linux2 based input component was added. | ||
* Added a libavcodec based video frame converter. | ||
* Added a component to decompress JPEG encoded video frames using the | ||
TinyJPEG library. | ||
|
||
Version 0.16.1, February 2008 | ||
* Fixed a bug in MIPInterChainTimer. Forgot to initialize a variable, | ||
causing the timing to fail. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
|
||
EMIPLIB README | ||
(0.16.1) | ||
(0.17.0) | ||
|
||
|
||
1. INTRODUCTION | ||
|
@@ -60,9 +60,8 @@ The library home page can be found at the following location: | |
http://research.edm.uhasselt.be/emiplib/ | ||
|
||
There is a mailing list available for EMIPLIB. To subscribe to it, just | ||
send an e-mail with the text subscribe emiplib as the message body (not | ||
the subject!) to [email protected] and you'll receive additional | ||
instructions. | ||
send an e-mail to [email protected] and you'll receive | ||
additional instructions. | ||
|
||
If you don't like to post your question to the mailing list, you can also | ||
send a more private mail to [email protected]. | ||
|
@@ -78,3 +77,10 @@ We would also like to thank Ron Frederick for making his LPC codec | |
available to the public and for allowing us to include a derived | ||
version in this library. | ||
|
||
The component which converts JPEG data into an uncompressed image | ||
used the Tiny Jpeg Decoder by Luc Saillard. Thanks for making this | ||
publically available. Please see the source code in | ||
src/thirdparty/tinyjpeg for more information about copyright and | ||
disclaimer. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.