Skip to content

Commit

Permalink
DELIA-65853: Atmos indication is not displayed with DDP
Browse files Browse the repository at this point in the history
Reason for change: Add DD and DDP options in the soundmode API

Test Procedure: build and verify
Risks: Medium
Priority: P1
Signed-off-by: Srigayathry [email protected]
  • Loading branch information
Srigayathry committed Nov 21, 2024
1 parent 9c1b463 commit e5105e9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PlayerInfo/DeviceSettings/PlatformImplementation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,8 @@ class PlayerInfoImplementation : public Exchange::IPlayerProperties, public Exch
else if(soundmode == device::AudioStereoMode::kStereo) mode = STEREO;
else if(soundmode == device::AudioStereoMode::kMono) mode = MONO;
else if(soundmode == device::AudioStereoMode::kPassThru) mode = PASSTHRU;
else if(soundmode == device::AudioStereoMode::kDD) mode = DOLBYDIGITAL;
else if(soundmode == device::AudioStereoMode::kDDPlus) mode = DOLBYDIGITALPLUS;
else mode = UNKNOWN;

/* Auto mode applicable for HDMI Arc and SPDIF */
Expand Down

0 comments on commit e5105e9

Please sign in to comment.