fixed API documentation issues

This commit is contained in:
darkeye 2005-04-14 11:53:17 +00:00
parent 85868cc504
commit e8fa2eebd9
10 changed files with 54 additions and 17 deletions

View File

@ -155,7 +155,7 @@ class AlsaDspSource : public AudioSource, public virtual Reporter
/** /**
* Copy Constructor. * Copy Constructor.
* *
* @param source the object to copy. * @param ds the object to copy.
* @exception Exception * @exception Exception
*/ */
inline inline
@ -301,6 +301,9 @@ class AlsaDspSource : public AudioSource, public virtual Reporter
$Source$ $Source$
$Log$ $Log$
Revision 1.2 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.1 2004/02/15 12:06:29 darkeye Revision 1.1 2004/02/15 12:06:29 darkeye
added ALSA support, thanks to Christian Forster added ALSA support, thanks to Christian Forster

View File

@ -162,7 +162,7 @@ class AudioSource : public Source, public virtual Reporter
/** /**
* Copy Constructor. * Copy Constructor.
* *
* @param source the object to copy. * @param as the object to copy.
* @exception Exception * @exception Exception
*/ */
inline inline
@ -258,7 +258,7 @@ class AudioSource : public Source, public virtual Reporter
* appropriate type, based on the compiled DSP support and * appropriate type, based on the compiled DSP support and
* the supplied DSP name parameter. * the supplied DSP name parameter.
* *
* @param name the audio device (/dev/dspX, hwplug:0,0, etc) * @param deviceName the audio device (/dev/dspX, hwplug:0,0, etc)
* @param sampleRate samples per second (e.g. 44100 for 44.1kHz). * @param sampleRate samples per second (e.g. 44100 for 44.1kHz).
* @param bitsPerSample bits per sample (e.g. 16 bits). * @param bitsPerSample bits per sample (e.g. 16 bits).
* @param channel number of channels of the audio source * @param channel number of channels of the audio source
@ -307,6 +307,9 @@ class AudioSource : public Source, public virtual Reporter
$Source$ $Source$
$Log$ $Log$
Revision 1.9 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.8 2005/04/04 08:36:16 darkeye Revision 1.8 2005/04/04 08:36:16 darkeye
commited changes to enable Jack support commited changes to enable Jack support
thanks to Nicholas J. Humfrey, njh@ecs.soton.ac.uk thanks to Nicholas J. Humfrey, njh@ecs.soton.ac.uk

View File

@ -179,7 +179,7 @@ class Config : public virtual Referable
/** /**
* Read a line of confiugration information. * Read a line of confiugration information.
* *
* @param line the line to read. * @param is the input stream to read from
* @return true if the line was correct, false otherwise. * @return true if the line was correct, false otherwise.
* @exception Exception * @exception Exception
*/ */
@ -213,6 +213,9 @@ class Config : public virtual Referable
$Source$ $Source$
$Log$ $Log$
Revision 1.2 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.1 2005/04/04 08:36:17 darkeye Revision 1.1 2005/04/04 08:36:17 darkeye
commited changes to enable Jack support commited changes to enable Jack support
thanks to Nicholas J. Humfrey, njh@ecs.soton.ac.uk thanks to Nicholas J. Humfrey, njh@ecs.soton.ac.uk

View File

@ -136,6 +136,8 @@ class IceCast : public CastSink
* @param genre genre of the stream. * @param genre genre of the stream.
* @param bitRate bitrate of the stream (e.g. mp3 bitrate). * @param bitRate bitrate of the stream (e.g. mp3 bitrate).
* @param isPublic is the stream public? * @param isPublic is the stream public?
* @param streamDump an optional sink to dump the binary stream
* data to.
* @param bufferDuration duration of the BufferedSink buffer * @param bufferDuration duration of the BufferedSink buffer
* in seconds. * in seconds.
* @exception Exception * @exception Exception
@ -263,6 +265,9 @@ class IceCast : public CastSink
$Source$ $Source$
$Log$ $Log$
Revision 1.8 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.7 2002/02/20 11:54:11 darkeye Revision 1.7 2002/02/20 11:54:11 darkeye
added local dump file possibility added local dump file possibility

View File

@ -137,12 +137,15 @@ class IceCast2 : public CastSink
* @param socket socket connection to the server. * @param socket socket connection to the server.
* @param password password to the server. * @param password password to the server.
* @param mountPoint mount point of the stream on the server. * @param mountPoint mount point of the stream on the server.
* @param format the format of the stream.
* @param name name of the stream. * @param name name of the stream.
* @param description description of the stream. * @param description description of the stream.
* @param url URL associated with the stream. * @param url URL associated with the stream.
* @param genre genre of the stream. * @param genre genre of the stream.
* @param bitRate bitrate of the stream (e.g. mp3 bitrate). * @param bitRate bitrate of the stream (e.g. mp3 bitrate).
* @param isPublic is the stream public? * @param isPublic is the stream public?
* @param streamDump an optional sink to dump the binary stream
* data to.
* @param bufferDuration duration of the BufferedSink buffer * @param bufferDuration duration of the BufferedSink buffer
* in seconds. * in seconds.
* @exception Exception * @exception Exception
@ -270,6 +273,9 @@ class IceCast2 : public CastSink
$Source$ $Source$
$Log$ $Log$
Revision 1.4 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.3 2002/02/20 11:54:11 darkeye Revision 1.3 2002/02/20 11:54:11 darkeye
added local dump file possibility added local dump file possibility

View File

@ -167,12 +167,12 @@ class JackDspSource : public AudioSource, public virtual Reporter
/** /**
* Copy Constructor. * Copy Constructor.
* *
* @param source the object to copy. * @param jds the object to copy.
* @exception Exception * @exception Exception
*/ */
inline inline
JackDspSource ( const JackDspSource & ds ) throw ( Exception ) JackDspSource ( const JackDspSource & jds ) throw ( Exception )
: AudioSource( ds ) : AudioSource( jds )
{ {
throw Exception( __FILE__, __LINE__, "JackDspSource doesn't copy"); throw Exception( __FILE__, __LINE__, "JackDspSource doesn't copy");
} }
@ -280,6 +280,9 @@ class JackDspSource : public AudioSource, public virtual Reporter
$Source$ $Source$
$Log$ $Log$
Revision 1.2 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.1 2005/04/04 08:36:17 darkeye Revision 1.1 2005/04/04 08:36:17 darkeye
commited changes to enable Jack support commited changes to enable Jack support
thanks to Nicholas J. Humfrey, njh@ecs.soton.ac.uk thanks to Nicholas J. Humfrey, njh@ecs.soton.ac.uk

View File

@ -134,14 +134,14 @@ class OssDspSource : public AudioSource, public virtual Reporter
/** /**
* Copy Constructor. * Copy Constructor.
* *
* @param source the object to copy. * @param ods the object to copy.
* @exception Exception * @exception Exception
*/ */
inline inline
OssDspSource ( const OssDspSource & ds ) throw ( Exception ) OssDspSource ( const OssDspSource & ods ) throw ( Exception )
: AudioSource( ds ) : AudioSource( ods )
{ {
init( ds.fileName); init( ods.fileName);
} }
/** /**
@ -259,6 +259,9 @@ class OssDspSource : public AudioSource, public virtual Reporter
$Source$ $Source$
$Log$ $Log$
Revision 1.7 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.6 2002/12/20 10:40:40 darkeye Revision 1.6 2002/12/20 10:40:40 darkeye
added support for big endian OSS devices (like Linux PowerPC) added support for big endian OSS devices (like Linux PowerPC)

View File

@ -136,6 +136,8 @@ class ShoutCast : public CastSink
* @param irc IRC info string for the stream. * @param irc IRC info string for the stream.
* @param aim AIM info string for the stream. * @param aim AIM info string for the stream.
* @param icq ICQ info string for the stream. * @param icq ICQ info string for the stream.
* @param streamDump an optional sink to dump the binary stream
* data to.
* @param bufferDuration duration of the BufferedSink buffer * @param bufferDuration duration of the BufferedSink buffer
* in seconds. * in seconds.
* @exception Exception * @exception Exception
@ -259,6 +261,9 @@ class ShoutCast : public CastSink
$Source$ $Source$
$Log$ $Log$
Revision 1.3 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.2 2002/02/20 11:54:11 darkeye Revision 1.2 2002/02/20 11:54:11 darkeye
added local dump file possibility added local dump file possibility

View File

@ -128,15 +128,15 @@ class SolarisDspSource : public AudioSource, public virtual Reporter
/** /**
* Copy Constructor. * Copy Constructor.
* *
* @param source the object to copy. * @param sds the object to copy.
* @exception Exception * @exception Exception
*/ */
inline inline
SolarisDspSource ( const SolarisDspSource & ds ) SolarisDspSource ( const SolarisDspSource & sds )
throw ( Exception ) throw ( Exception )
: AudioSource( ds ) : AudioSource( sds )
{ {
init( ds.fileName); init( sds.fileName);
} }
/** /**
@ -261,6 +261,9 @@ class SolarisDspSource : public AudioSource, public virtual Reporter
$Source$ $Source$
$Log$ $Log$
Revision 1.5 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.4 2004/02/19 06:47:06 darkeye Revision 1.4 2004/02/19 06:47:06 darkeye
finalized OpenBSD port finalized OpenBSD port

View File

@ -138,7 +138,7 @@ class Util
* *
* @param dest place for the copy. Storage size must be at least * @param dest place for the copy. Storage size must be at least
* Util::strLen(src) + 1 long. * Util::strLen(src) + 1 long.
* @param str the string to copy. * @param src the string to copy.
* @exception Exception * @exception Exception
*/ */
static void static void
@ -151,7 +151,7 @@ class Util
* @param dest the string to concatenate to. * @param dest the string to concatenate to.
* Storage size of dest must be at least * Storage size of dest must be at least
* Util::strLen(dest) + Util::strLen(src) + 1 long. * Util::strLen(dest) + Util::strLen(src) + 1 long.
* @param str the string to concatenate. * @param src the string to concatenate.
* @exception Exception * @exception Exception
*/ */
static void static void
@ -322,6 +322,9 @@ class Util
$Source$ $Source$
$Log$ $Log$
Revision 1.11 2005/04/14 11:53:17 darkeye
fixed API documentation issues
Revision 1.10 2004/02/15 12:06:30 darkeye Revision 1.10 2004/02/15 12:06:30 darkeye
added ALSA support, thanks to Christian Forster added ALSA support, thanks to Christian Forster