[vlc-commits] fixed32: debug typo
Rémi Denis-Courmont
git at videolan.org
Wed Jun 8 21:57:50 CEST 2011
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Jun 8 22:57:31 2011 +0300| [1d3c4b4f5680f2253371fe197838be9e45dae947] | committer: Rémi Denis-Courmont
fixed32: debug typo
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1d3c4b4f5680f2253371fe197838be9e45dae947
---
modules/audio_mixer/fixed32.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/audio_mixer/fixed32.c b/modules/audio_mixer/fixed32.c
index 3c68b5b..65fd6ed 100644
--- a/modules/audio_mixer/fixed32.c
+++ b/modules/audio_mixer/fixed32.c
@@ -69,7 +69,7 @@ static void FilterFI32 (aout_mixer_t *mixer, block_t *block, float volume)
for (size_t n = block->i_buffer / sizeof (*p); n > 0; n--)
{
- *p = (*p * mult) >> 33; // FIXED32_FRACBITS;
+ *p = (*p * mult) >> FIXED32_FRACBITS;
p++;
}
}
More information about the vlc-commits
mailing list