Skip to content

Commit

Permalink
Import of v0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
j0r1 committed Dec 14, 2016
1 parent 45b3a9a commit 07675c4
Show file tree
Hide file tree
Showing 218 changed files with 8,753 additions and 4,585 deletions.
20 changes: 20 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
286 changes: 212 additions & 74 deletions Doxyfile

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ MIPCONFIG_GPL = @MIPCONFIG_GPL@
MIPCONFIG_SUPPORT_ALSA = @MIPCONFIG_SUPPORT_ALSA@
MIPCONFIG_SUPPORT_AUDIOFILE = @MIPCONFIG_SUPPORT_AUDIOFILE@
MIPCONFIG_SUPPORT_AVCODEC = @MIPCONFIG_SUPPORT_AVCODEC@
MIPCONFIG_SUPPORT_AVCODEC_OLD = @MIPCONFIG_SUPPORT_AVCODEC_OLD@
MIPCONFIG_SUPPORT_ESD = @MIPCONFIG_SUPPORT_ESD@
MIPCONFIG_SUPPORT_GSM = @MIPCONFIG_SUPPORT_GSM@
MIPCONFIG_SUPPORT_INTELIPP = @MIPCONFIG_SUPPORT_INTELIPP@
Expand Down Expand Up @@ -169,6 +170,7 @@ QTE_NORTTI = @QTE_NORTTI@
QT_INCLUDES = @QT_INCLUDES@
QT_LDFLAGS = @QT_LDFLAGS@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
Expand Down
14 changes: 10 additions & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


EMIPLIB README
(0.16.1)
(0.17.0)


1. INTRODUCTION
Expand Down Expand Up @@ -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].
Expand All @@ -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.


2 changes: 2 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

EMIPLIB TODO list:

* Clean up debug info in mipdirectshowinput and add ifdefs for libavcodec
* Remove Video4Linux component
* Make the video RTP encoder and decoder compliant with standards. Currently,
a simple ad hoc encoding scheme is used. This should obviously change.
* Add codecs for video.
Expand Down
Loading

0 comments on commit 07675c4

Please sign in to comment.