From 6ffb1e2b661464bc31e2cfffd1d77727f27e1561 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 27 Jun 2015 17:59:27 +0200 Subject: ao_wasapi: fix regression This probably fixes the regression introduced with commit 6147bcce. --- audio/out/ao_wasapi_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/out/ao_wasapi_utils.c b/audio/out/ao_wasapi_utils.c index d7dc3ad07f..fd65cc82eb 100755 --- a/audio/out/ao_wasapi_utils.c +++ b/audio/out/ao_wasapi_utils.c @@ -310,7 +310,7 @@ static int format_from_waveformat(WAVEFORMATEX *wf) // configured "special" formats, otherwise it will return 0. if (wf->wBitsPerSample % 8) return 0; - return af_fmt_change_bytes(format, wf->wBitsPerSample / 8) * 8; + return af_fmt_change_bytes(format, wf->wBitsPerSample / 8); } static bool chmap_from_waveformat(struct mp_chmap *channels, const WAVEFORMATEX *wf) -- cgit v1.2.3