Skip to content

Commit

Permalink
AudioServer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Jan 1, 2025
1 parent 61b3b36 commit 1a6f0e9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/AudioTools/CoreAudio/AudioHttp/AudioServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ template<class Client,class Server>
class AudioServerT {
public:
/**
* @brief Construct a new Audio W A V Server object
* @brief Construct a new Audio Server object
* We assume that the WiFi is already connected
*/
AudioServerT(int port = 80) {
Expand All @@ -46,7 +46,7 @@ class AudioServerT {
}

/**
* @brief Construct a new Audio W A V Server object
* @brief Construct a new Audio WAV Server object
*
* @param network
* @param password
Expand Down Expand Up @@ -299,15 +299,15 @@ using AudioServerEthernet = AudioServerT<EthernetClient, EthernetServer>;
class AudioEncoderServer : public AudioServer {
public:
/**
* @brief Construct a new Audio W A V Server object
* @brief Construct a new Audio Server object that supports an AudioEncoder
* We assume that the WiFi is already connected
*/
AudioEncoderServer(AudioEncoder *encoder, int port = 80) : AudioServer(port) {
this->encoder = encoder;
}

/**
* @brief Construct a new Audio W A V Server object
* @brief Construct a new Audio Server object
*
* @param network
* @param password
Expand Down Expand Up @@ -470,13 +470,13 @@ class AudioEncoderServer : public AudioServer {
class AudioWAVServer : public AudioEncoderServer {
public:
/**
* @brief Construct a new Audio W A V Server object
* @brief Construct a new Audio WAV Server object
* We assume that the WiFi is already connected
*/
AudioWAVServer(int port = 80) : AudioEncoderServer(new WAVEncoder(), port) {}

/**
* @brief Construct a new Audio W A V Server object
* @brief Construct a new Audio WAV Server object
*
* @param network
* @param password
Expand Down

0 comments on commit 1a6f0e9

Please sign in to comment.