We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c735d commit ce635a6Copy full SHA for ce635a6
src/AudioTools/AudioCodecs/CodecFloat.h
@@ -14,6 +14,8 @@ namespace audio_tools {
14
*/
15
class DecoderFloat : public AudioDecoder {
16
public:
17
+ /// Empty Constructor
18
+ DecoderFloat() = default;
19
/**
20
* @brief Construct a new DecoderFloat object
21
*
@@ -74,11 +76,10 @@ class DecoderFloat : public AudioDecoder {
74
76
75
77
class EncoderFloat : public AudioEncoder {
78
- // Empty Constructor - the output stream must be provided with begin()
- EncoderFloat(){
79
- }
80
+ EncoderFloat() = default;
81
- // Constructor providing the output stream
82
+ /// Constructor providing the output stream
83
EncoderFloat(Print &out){
84
p_print = &out;
85
}
0 commit comments