Unverified Commit ead22a0a authored by Wolle's avatar Wolle Committed by GitHub

Update flac_decoder.cpp

parent ab959027
......@@ -152,6 +152,7 @@ boolean FLACFindMagicWord(unsigned char* buf, int nBytes){
uint32_t lomd = (buf[idx + 2] << 16) + (buf[idx + 3] << 8) + buf[idx + 4]; // Length of metadata to follow
// TODO - parse metadata block data
(void)lmdbf; (void)bt; (void)lomd;
// log_i("Last-metadata-block flag: %d", lmdbf);
// log_i("block type: %d", bt);
// log_i("Length (in bytes) of metadata to follow: %d", lomd);
......@@ -599,4 +600,4 @@ int specialIndexOf(uint8_t* base, const char* str, int baselen, bool exact){
if (result >= 0) break;
}
return result;
}
\ No newline at end of file
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment