changed remaining typos
This commit is contained in:
parent
9a23ebe086
commit
1f36ce8c9c
|
@ -33,7 +33,7 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// compile the whole file only if lame support configured in
|
// compile the whole file only if faac support configured in
|
||||||
#ifdef HAVE_FAAC_LIB
|
#ifdef HAVE_FAAC_LIB
|
||||||
|
|
||||||
|
|
||||||
|
@ -195,6 +195,9 @@ FaacEncoder :: close ( void ) throw ( Exception )
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.2 2005/04/16 22:19:20 darkeye
|
||||||
|
changed remaining typos
|
||||||
|
|
||||||
Revision 1.1 2005/04/16 21:57:34 darkeye
|
Revision 1.1 2005/04/16 21:57:34 darkeye
|
||||||
added AAC support through the faac codec, http://www.audiocoding.com/
|
added AAC support through the faac codec, http://www.audiocoding.com/
|
||||||
|
|
||||||
|
|
|
@ -109,7 +109,7 @@ class FaacEncoder : public AudioEncoder, public virtual Reporter
|
||||||
* @param sink the sink to send mp3 output to
|
* @param sink the sink to send mp3 output to
|
||||||
* @param lowpass frequency threshold for the lowpass filter.
|
* @param lowpass frequency threshold for the lowpass filter.
|
||||||
* Input above this frequency is cut.
|
* Input above this frequency is cut.
|
||||||
* If 0, lame's default values are used,
|
* If 0, faac's default values are used,
|
||||||
* which depends on the out sample rate.
|
* which depends on the out sample rate.
|
||||||
* @exception Exception
|
* @exception Exception
|
||||||
*/
|
*/
|
||||||
|
@ -117,6 +117,7 @@ class FaacEncoder : public AudioEncoder, public virtual Reporter
|
||||||
init ( Sink * sink,
|
init ( Sink * sink,
|
||||||
int lowpass) throw (Exception)
|
int lowpass) throw (Exception)
|
||||||
{
|
{
|
||||||
|
this->faacOpen = false;
|
||||||
this->sink = sink;
|
this->sink = sink;
|
||||||
this->lowpass = lowpass;
|
this->lowpass = lowpass;
|
||||||
|
|
||||||
|
@ -186,7 +187,7 @@ class FaacEncoder : public AudioEncoder, public virtual Reporter
|
||||||
* If 0, inChannel is used.
|
* If 0, inChannel is used.
|
||||||
* @param lowpass frequency threshold for the lowpass filter.
|
* @param lowpass frequency threshold for the lowpass filter.
|
||||||
* Input above this frequency is cut.
|
* Input above this frequency is cut.
|
||||||
* If 0, lame's default values are used,
|
* If 0, faac's default values are used,
|
||||||
* which depends on the out sample rate.
|
* which depends on the out sample rate.
|
||||||
* @exception Exception
|
* @exception Exception
|
||||||
*/
|
*/
|
||||||
|
@ -232,7 +233,7 @@ class FaacEncoder : public AudioEncoder, public virtual Reporter
|
||||||
* If 0, input channel is used.
|
* If 0, input channel is used.
|
||||||
* @param lowpass frequency threshold for the lowpass filter.
|
* @param lowpass frequency threshold for the lowpass filter.
|
||||||
* Input above this frequency is cut.
|
* Input above this frequency is cut.
|
||||||
* If 0, lame's default values are used,
|
* If 0, faac's default values are used,
|
||||||
* which depends on the out sample rate.
|
* which depends on the out sample rate.
|
||||||
* @exception Exception
|
* @exception Exception
|
||||||
*/
|
*/
|
||||||
|
@ -442,6 +443,9 @@ class FaacEncoder : public AudioEncoder, public virtual Reporter
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.2 2005/04/16 22:19:20 darkeye
|
||||||
|
changed remaining typos
|
||||||
|
|
||||||
Revision 1.1 2005/04/16 21:57:34 darkeye
|
Revision 1.1 2005/04/16 21:57:34 darkeye
|
||||||
added AAC support through the faac codec, http://www.audiocoding.com/
|
added AAC support through the faac codec, http://www.audiocoding.com/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue