| Summary: | Bug - KMix / Phonon can only change volume in increments of ~3 % | ||
|---|---|---|---|
| Product: | [Frameworks and Libraries] Phonon | Reporter: | Andrei ILIE <andrei.ilie> |
| Component: | general | Assignee: | Harald Sitter <sitter> |
| Status: | RESOLVED NOT A BUG | ||
| Severity: | normal | CC: | andrei.ilie, martin.sandsmark, myriam, romain.perier |
| Priority: | NOR | ||
| Version First Reported In: | 4.6.0 | ||
| Target Milestone: | 4.6.1 | ||
| Platform: | Fedora RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Andrei ILIE
2012-09-09 16:28:35 UTC
/**
* This is the current volume of the output in decibel.
*
* 0 dB means no change in volume, -6dB means an attenuation of the
* voltage to 50% and an attenuation of the power to 25%, -inf dB means
* silence.
*
* \see volume
*/
Q_PROPERTY(qreal volumeDecibel READ volumeDecibel WRITE setVolumeDecibel)
@Harald: This issue is in fact valid - KMix / Phonon should offer a dB agnostic user experience. At least, please, mark this issue as a "feature request" because is __not__ invalid. Thx /**
* This is the current loudness of the output (it is using Stevens' law
* to calculate the change in voltage internally).
*
* \see volumeDecibel
*/
Q_PROPERTY(qreal volume READ volume WRITE setVolume NOTIFY volumeChanged)
Also note that kmix and phonon are not the same, they do not share one bit of code.
|