AAC: Remove unused code

This commit is contained in:
wheremyfoodat
2025-07-29 03:55:00 +03:00
committed by GitHub
parent a8ebc71f11
commit 21c25d2fb8

View File

@@ -45,8 +45,6 @@ void AAC::Decoder::decode(AAC::Message& response, const AAC::Message& request, A
std::array<s16, frameSize> frame; std::array<s16, frameSize> frame;
std::array<std::vector<s16>, 2> audioStreams; std::array<std::vector<s16>, 2> audioStreams;
bool queriedStreamInfo = false;
while (bytesValid != 0) { while (bytesValid != 0) {
if (aacDecoder_Fill(decoderHandle, &input, &bufferSize, &bytesValid) != AAC_DEC_OK) { if (aacDecoder_Fill(decoderHandle, &input, &bufferSize, &bytesValid) != AAC_DEC_OK) {
Helpers::warn("Failed to fill AAC decoder with samples"); Helpers::warn("Failed to fill AAC decoder with samples");