Skip to content

Commit

Permalink
AAC decoder: Audio should be enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat committed Nov 28, 2024
1 parent a110191 commit d299081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/audio/aac_decoder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Audio::AAC {
public:
// Decode function. Takes in a reference to the AAC response & request, and a callback for paddr -> pointer conversions
// We also allow for optionally muting the AAC output (setting all of it to 0) instead of properly decoding it, for debug/research purposes
void decode(AAC::Message& response, const AAC::Message& request, PaddrCallback paddrCallback, bool enableAudio = false);
void decode(AAC::Message& response, const AAC::Message& request, PaddrCallback paddrCallback, bool enableAudio = true);
~Decoder();
};
} // namespace Audio::AAC

0 comments on commit d299081

Please sign in to comment.