Skip to content

Commit

Permalink
DecoderFloat empty constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Nov 22, 2024
1 parent c0c735d commit ce635a6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/AudioTools/AudioCodecs/CodecFloat.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ namespace audio_tools {
*/
class DecoderFloat : public AudioDecoder {
public:
/// Empty Constructor
DecoderFloat() = default;
/**
* @brief Construct a new DecoderFloat object
*
Expand Down Expand Up @@ -74,11 +76,10 @@ class DecoderFloat : public AudioDecoder {
*/
class EncoderFloat : public AudioEncoder {
public:
// Empty Constructor - the output stream must be provided with begin()
EncoderFloat(){
}
/// Empty Constructor
EncoderFloat() = default;

// Constructor providing the output stream
/// Constructor providing the output stream
EncoderFloat(Print &out){
p_print = &out;
}
Expand Down

0 comments on commit ce635a6

Please sign in to comment.