diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-08-17 16:41:20 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-08-17 21:53:28 +0200 |
commit | 64a3124d928f337011cad137c2c059f1ef064377 (patch) | |
tree | cdcea46848e5b61872716d8deb6f5d5b8f57894a /avmedia | |
parent | fc443f3b50e33a1adab03bbf7fb9f9351eb07868 (diff) |
Fix typos
Change-Id: Iaa9c0aea3ea1a239e378bd714ba335f91bb1faf3
Reviewed-on: https://gerrit.libreoffice.org/41194
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/macavf/player.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/avmedia/source/macavf/player.mm b/avmedia/source/macavf/player.mm index a683b4790032..a950679c9b36 100644 --- a/avmedia/source/macavf/player.mm +++ b/avmedia/source/macavf/player.mm @@ -281,7 +281,7 @@ sal_Int16 SAL_CALL Player::getVolumeDB() // get the actual volume const float fVolume = [mpPlayer volume]; - // convert into Dezibel value + // convert into Decibel value // -40dB <-> AVPlayer volume 0.0 // 0dB <-> AVPlayer volume 1.0 const int nVolumeDB = (fVolume <= 0) ? -40 : lrint( 20.0*log10(fVolume)); |