Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit d4daa86 ("Check for bps% 8 != 0 if no streaminfo is present") breaks fallback to frame header bps as it tests decoder_session->bps at a point where it is guaranteed to be 0 as this is the else case of the if(decoder_session->bps) block. Some corrupted FLAC files that used to play before the above mentioned commit no longer can be played. Move decoder_session->bps = bps to before the decoder_session->bps validation to restore functionality more similar to before.
- Loading branch information