Bug 147080

Summary: Media Session: add infrastructure for testing ducking
Product: WebKit Reporter: Matt Rajca <mrajca>
Component: MediaAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: conrad_shultz, eric.carlson, mrajca, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 145411    
Attachments:
Description Flags
Patch
none
Patch
none
Patch jer.noble: review+

Matt Rajca
Reported 2015-07-18 21:52:49 PDT
We need a way of getting a media element's underlying media player's volume (which will be lowered when audio is ducked).
Attachments
Patch (3.19 KB, patch)
2015-07-18 21:57 PDT, Matt Rajca
no flags
Patch (3.88 KB, patch)
2015-07-19 09:35 PDT, Matt Rajca
no flags
Patch (4.26 KB, patch)
2015-07-23 14:46 PDT, Matt Rajca
jer.noble: review+
Radar WebKit Bug Importer
Comment 1 2015-07-18 21:53:17 PDT
Matt Rajca
Comment 2 2015-07-18 21:57:31 PDT
Matt Rajca
Comment 3 2015-07-19 09:35:17 PDT
Matt Rajca
Comment 4 2015-07-23 14:46:33 PDT
Jer Noble
Comment 5 2015-07-23 14:58:13 PDT
Comment on attachment 257387 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=257387&action=review > Source/WebCore/html/HTMLMediaElement.cpp:6486 > + if (m_player) > + return m_player->volume(); > + return 0; This could be more concisely stated as: return m_player ? m_player->volume() : 0;
Matt Rajca
Comment 6 2015-07-23 15:03:35 PDT
(In reply to comment #5) > Comment on attachment 257387 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=257387&action=review > > > Source/WebCore/html/HTMLMediaElement.cpp:6486 > > + if (m_player) > > + return m_player->volume(); > > + return 0; > > This could be more concisely stated as: > > return m_player ? m_player->volume() : 0; Fixed.
Matt Rajca
Comment 7 2015-07-23 15:04:01 PDT
Note You need to log in before you can comment on or make changes to this bug.