diff options
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index f588af5e2..1492a02ff 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -2940,7 +2940,7 @@ the user is using "Custom" settings by determining the sender*/ } /* do we want to add a dolby pro logic 2 (DPL2) option? */ - if (!mp4AacAc3 && layout == HB_INPUT_CH_LAYOUT_3F2R) { + if ((!mp4AacAc3 || audio->codec == HB_ACODEC_DCA) && layout == HB_INPUT_CH_LAYOUT_3F2R) { NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle: [NSString stringWithCString: hb_audio_mixdowns[3].human_readable_name] action: NULL keyEquivalent: @""]; |