TrueHD/MLP parser: is_normal() must test if m_type is normal, not sync

Part of the fix for #2326.
This commit is contained in:
Moritz Bunkus 2018-06-13 21:58:23 +02:00
parent b5340c61e2
commit 347c230448
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85

View File

@ -65,7 +65,7 @@ struct frame_t {
}
bool is_normal() const {
return sync == m_type;
return normal == m_type;
}
bool is_ac3() const {