diff options
Diffstat (limited to 'src/types.cc')
| -rw-r--r-- | src/types.cc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/types.cc b/src/types.cc index 9b1aca31..153a73af 100644 --- a/src/types.cc +++ b/src/types.cc @@ -477,12 +477,7 @@ MainSoundConfiguration::MainSoundConfiguration (string s) throw MainSoundConfigurationError (s); } - if (parts[0] == "20") { - /* I can't find any mention in the standard of 20 being OK here, but Deluxe fail - * QCs if the audio is stereo and 51 is used here. - */ - _field = MCASoundField::STEREO; - } else if (parts[0] == "51") { + if (parts[0] == "51") { _field = MCASoundField::FIVE_POINT_ONE; } else if (parts[0] == "71") { _field = MCASoundField::SEVEN_POINT_ONE; @@ -519,9 +514,6 @@ MainSoundConfiguration::to_string () const { string c; switch (_field) { - case MCASoundField::STEREO: - c = "20/"; - break; case MCASoundField::FIVE_POINT_ONE: c = "51/"; break; |
